*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* ========== ROOT DESIGN SYSTEM ========== */

:root {
  /* COLORS */
  --primary: #c08497;
  --primary-dark: #a76a80;
  --soft-pink: #f7f2f4;
  --light-gray: #f9f9f9;
  --text-dark: #2e2e2e;
  --text-light: #777;
  --border-light: #eee;

  /* FONTS */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;

   /* DESKTOP SIZES */
  --h1-size: 48px;
  --h2-size: 36px;
  --h3-size: 22px;
  --h4-size: 18px;
  --h5-size: 16px;
  --h6-size: 14px;

  /* MOBILE SIZES */
  --h1-size-mobile: 32px;
  --h2-size-mobile: 26px;
  --h3-size-mobile: 20px;
  --h4-size-mobile: 18px;
  --h5-size-mobile: 16px;
  --h6-size-mobile: 14px;
}

body {
  font-family: var(--body-font);
  color: var(--text-dark);
  margin: 0;
}

/* FONTS */

h1, h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
  letter-spacing: 1px;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }

h3, h4, h5, h6 {
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

@media (max-width: 768px) {
  h1 { font-size: var(--h1-size-mobile); }
  h2 { font-size: var(--h2-size-mobile); }
  h3 { font-size: var(--h3-size-mobile); }
  h4 { font-size: var(--h4-size-mobile); }
  h5 { font-size: var(--h5-size-mobile); }
  h6 { font-size: var(--h6-size-mobile); }
}

/* ===============================
   PAGE TITLES
================================= */

.page-title {
  text-align: center;
  font-weight: 700;
  margin: 20px 0 40px;
}

@media (max-width: 768px) {
  .page-title {
      margin: 10px 0 30px;
  }
}

/* ========== LAYOUT ========== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.page-section {
  padding: 30px 0 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

/* ========== ANNOUNCEMENT BAR ========== */

.announcement-bar {
  background: #a76a80;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.announcement-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
/* ========== HEADER ========== */

header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.cart-wrapper img {
  width: 24px;
  height: 26px;
  object-fit: contain;
}

/* ========== BUTTON ========== */

.btn {
  background: var(--primary);
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: var(--primary-dark);
}

/* ===============================
   SHOP BY COLLECTIONS
================================= */

.shop-collections {
  padding: 40px 0;
}

.shop-collections-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.shop-collections-title {
  text-align: center;
  margin-bottom: 60px;
}

/* Scroll Area */

.shop-collections-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.shop-collections-scroll::-webkit-scrollbar {
  display: none;
}
.shop-collections-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Arched Card */

.collection-card {
  position: relative;
  min-width: 220px;
  height: 360px;
  border-radius: 160px 160px 24px 24px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */

.collection-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: #f8c8d8;
  color: #3a3a3a;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

.collection-arrow {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #d46a92;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

/* Navigation Buttons */

.shop-collections-nav {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.scroll-btn {
  pointer-events: all;
  background: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: #f8c8d8;
}

/* Responsive */

@media (max-width: 768px) {
  .shop-collections-wrapper {
    padding: 0 20px;
  }

  .collection-card {
  min-width: 120px;
  height: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 160px 160px 24px 24px;
}

  .shop-collections-title {
    margin-bottom: 40px;
   }

  .shop-collections-nav {
    display: none;
  }
}



/* ========== TRUST SECTION ========== */

.trust-section {
  background: var(--soft-pink);
  padding: 40px 0;
}

.trust {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 500;
}

/* ===============================
   FOOTER
================================= */

.site-footer {
  margin-top: 50px;
}

/* This creates page-width pink block */

.footer-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  background: #f8dce6;
  padding: 60px 60px 30px;
  border-radius: 30px;
}

/* Layout */

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Logo */

.footer-logo {
  width: 200px;
}

/* Right Side Layout */

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 280px;
}

/* Links stacked */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

/* Follow text */

.follow-text {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Social Icons */

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social img {
  width: 34px;
  height: 34px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: translateY(-4px);
}

/* Bottom */

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
}

.footer-bottom p {
  margin: 5px 0;
}

.made-with {
  font-size: 12px;
  opacity: 0.8;
}

.made-with a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.made-with a:hover {
  opacity: 0.6;
}

/* Mobile */

@media (max-width: 768px) {

  .footer-wrapper {
    padding: 0;  /* remove wrapper padding on mobile */
  }

  .footer-top {
    padding: 40px 24px 20px;  /* consistent left spacing */
  }

  .footer-main {
    align-items: flex-start;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }


  .footer-logo {
    width: 150px;
  }

  .footer-right {
    max-width: 100%;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-social {
    gap: 16px;
  }

  .footer-social img {
    width: 26px;
    height: 26px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-bottom p {
    white-space: normal; /* allow natural wrapping */
  }

}


/* ========== CART ICON ========== */

.cart-wrapper {
  position: relative;
  font-size: 22px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 50%;
}

/* ================================
   CART DRAWER — CLEAN REDESIGN
================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 390px;
  height: 100dvh;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.active {
  right: 0;
}

/* --- Header --- */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0e8ec;
  flex-shrink: 0;
}

.cart-header h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
  color: var(--text-dark);
}

.cart-header span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  color: #999;
  background: #f5f5f5;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-header span:hover {
  background: #ffe8ef;
  color: var(--primary);
}

/* --- Scrollable items --- */
#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: #f0c8d8 transparent;
}

#cart-items::-webkit-scrollbar { width: 3px; }
#cart-items::-webkit-scrollbar-track { background: transparent; }
#cart-items::-webkit-scrollbar-thumb { background: #f0c8d8; border-radius: 4px; }

/* --- Cart Items --- */
.cart-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f8f0f3;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 58px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f9f9f9;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 3px;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-size {
  font-size: 11px;
  color: #aaa;
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cart-price-wrapper {
  display: flex;
  gap: 6px;
  align-items: center;
}

.cart-sale-price {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.cart-original-price {
  text-decoration: line-through;
  color: #ccc;
  font-size: 12px;
}

.cart-savings {
  font-size: 11px;
  color: #2e7d32;
  margin: 2px 0 0;
  font-weight: 500;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  color: #ddd;
  padding: 2px;
  flex-shrink: 0;
  transition: color 0.2s ease;
  line-height: 1;
  margin-top: 2px;
}

.remove-btn:hover {
  color: #e57373;
}

/* --- Footer panel --- */
.cart-footer {
  flex-shrink: 0;
  padding: 12px 20px 18px;
  padding-bottom: max(18px, env(safe-area-inset-bottom, 18px));
  background: #fdfafc;
  border-top: 1px solid #f0e8ec;
}

/* Coupon row */
.coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.coupon input {
  flex: 1;
  padding: 8px 11px;
  border-radius: 9px;
  border: 1px solid #e8dce2;
  font-size: 12px;
  background: #fff;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.coupon input:focus {
  border-color: var(--primary);
}

.coupon button {
  background: var(--primary);
  border: none;
  padding: 8px 14px;
  color: white;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.coupon button:hover {
  background: var(--primary-dark);
}

/* Coupon applied tag */
.coupon-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fef4f7;
  border: 1px solid #f5d0dc;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 600;
}

.coupon-applied button {
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  color: #ccc;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}

.coupon-applied button:hover {
  color: var(--primary);
}

/* Summary rows */
.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #888;
}

.cart-summary-row span:last-child {
  font-weight: 500;
  color: var(--text-dark);
}

/* Gift message */
.gift-text {
  font-size: 11.5px;
  color: #2e7d32;
  background: #f0fbf3;
  border: 1px solid #c8ecd1;
  padding: 6px 10px;
  border-radius: 8px;
  margin: 4px 0 8px;
  text-align: center;
  font-weight: 500;
}

/* Total + button */
.cart-total {
  margin-top: 6px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1px;
}

.cart-mrp {
  text-decoration: line-through;
  color: #ccc;
  font-size: 13px;
}

.cart-final {
  color: var(--primary-dark);
  font-size: 21px;
  font-weight: 700;
}

.cart-total-savings {
  font-size: 11.5px;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-total .btn {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 13px;
  background: linear-gradient(135deg, #c08497, #a05864);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
  letter-spacing: 0.3px;
  margin-top: 0;
}

.cart-total .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(160,88,100,0.35);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {

  .page-section {
    padding: 20px 0;
  }

  .footer {
    flex-direction: column;
    gap: 15px;
  }
}

/* ========================= */
/* PRODUCTS GRID */
/* ========================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* PRODUCT CARD */
/* ========================= */

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ========================= */
/* IMAGE */
/* ========================= */

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;  /* premium fashion ratio */
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================= */
/* BADGES */
/* ========================= */

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new { background: #00bcd4; }
.badge-best-seller { background: #ffb703; }
.badge-limited { background: #9c27b0; }
.badge-plus-size { background: #386641; }
.badge-selling-fast { background: #ef476f; }
.badge-sale { background: #ff006e; }

/* ========================= */
/* PRODUCT INFO */
/* ========================= */

.product-info {
  padding: 14px 14px 18px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ========================= */
/* PRICE */
/* ========================= */

.price {
  margin-bottom: 12px;
  font-size: 15px;
}

.sale-price {
  font-weight: 600;
  color: #d32f2f;
  margin-right: 6px;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 13px;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.size-options {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;     /* one line only */
}

.size-btn:hover:not(.disabled) {
  border-color: #000;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 14px;
  margin: 0 0 4px;
}

.cart-size {
  font-size: 13px;
  color: #666;
  margin: 2px 0;
}

.cart-price {
  font-weight: 600;
  margin-top: 4px;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
}

.remove-btn:hover {
  color: #000;
}

.cart-price-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.cart-sale-price {
  font-weight: 600;
  color: #000;
}

.cart-original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}

.cart-savings {
  font-size: 12px;
  color: #2e7d32;
  margin-top: 4px;
}

.sold-out-badge {
  background: black;
  color: white;
}

.add-to-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


/* =========================
   PRODUCT PAGE
========================= */

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
  padding: 0 40px;
}

@media (max-width: 768px) {

  .product-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 0 16px;
  }

}
.product-layout > * {
  min-width: 0;
}

.gallery-wrapper {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.thumbnail-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #eee;
}

.main-product-image {
  width: 100%;
  max-width: 500px;
  margin: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.thumbnail:hover {
  border: 1px solid #000;
}

.product-details {
  text-align: left;
}

.product-title {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-page-price {
  font-size: 20px;
  margin-bottom: 18px;
}

.product-short-desc {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.6;
}

.product-page-sizes {
  justify-content: flex-start;
}

/* =========================
   OFFER SECTION REDESIGN
========================= */
.product-offers {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
  padding: 20px 14px;
  border: 1.5px dashed #e3a6b8;
  border-radius: 18px;
  background: #fff6f9;
  text-align: center;
}

.offers-heading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.offers-grid {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}

.offer-card {
  flex: 1 1 0;
  min-width: 0;   /* VERY important */
}

.offer-card {
  flex: 1;
  padding: 12px 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-main {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.offer-sub {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #555;
}

.offers-note {
  font-size: 13px;
  color: #777;
}

.offer-main {
  white-space: nowrap;
}

.offers-heading,
.offers-note {
  text-align: center;
}

/* =========================
   TRUST BADGES REDESIGN
========================= */

.trust-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.trust-item {
  flex: 1;
  text-align: center;
}

.trust-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  min-height: 15px;   /* forces equal height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-description-box {
  margin-top: 60px;
  padding: 30px;
  background: #fafafa;
  border-radius: 16px;
}

.product-description-box h3 {
  margin-bottom: 15px;
}

.related-products {
  margin-top: 70px;
}

.related-heading {
  text-align: center;
  margin-bottom: 30px;
}

/* MOBILE */

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .main-product-image {
    max-width: 100%;
  }
}

.product-description-box {
  margin-top: 30px;
  padding: 20px;
  background: #fafafa;
  border-radius: 14px;
}

/* old reviews-section block removed */

.product-spec-box {
  margin-top: 30px;
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
}

.product-spec-box h3 {
  margin-bottom: 15px;
}

.spec-row {
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: #d46a92;
}

.spec-value {
  color: #444;
}

/* old reviews-slider block removed */

/* =========================
   NEW HERO SECTION
========================= */

.hero {
  padding: 40px 20px;
}

.hero-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: 0;
  }

  .hero-wrapper {
    border-radius: 0;
  }
}
/* Hide both initially */
.hero-img {
  width: 100%;
  display: none;
  object-fit: cover;
}

/* Mobile default */
.hero-mobile {
  display: block;
  aspect-ratio: 4 / 5;
}

/* Desktop version */
@media (min-width: 768px) {
  .hero-mobile {
    display: none;
  }

  .hero-desktop {
    display: block;
    aspect-ratio: 16 / 9;
  }
}

/* Content positioning */
.hero-content {
  position: absolute;
  bottom: 12%;
  left: 8%;
  color: white;
}

.hero-content h1 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .product-info h3 {
    font-size: 14px;
  }

  .price {
    font-size: 14px;
  }
}

@media screen and (max-width: 749px) {

    .price {
    font-size: 14px !important;
  }

}

@media screen and (max-width: 749px) {

  .variant-picker,
  .product-form__input {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px;
  }

  .product-form__input input + label {
    padding: 6px 8px !important;
    font-size: 12px !important;
    min-width: auto !important;
  }

}

@media screen and (max-width: 749px) {

  .product-form__buttons {
    margin-top: 8px !important;
  }

  .product-form__submit {
    width: 100% !important;
    padding: 10px !important;
    font-size: 14px !important;
  }

}

@media screen and (max-width: 749px) {

  .grid {
    row-gap: 16px !important;
    column-gap: 12px !important;
  }

}

@media (max-width: 768px) {

  .product-info {
    padding: 10px 10px 14px;
  }

  .product-info h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .price {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .product-info button {
    width: 100%;
    padding: 8px;
    font-size: 13px;
  }

}

.product-card {
  display: flex;
  flex-direction: column;
}

/* ================= MOBILE CARD FIX ================= */

@media (max-width: 768px) {

  .product-card {
    border-radius: 10px;
  }

  .product-image {
    aspect-ratio: 4 / 5;
  }

  .product-info {
    padding: 10px;
  }

  .product-info h3 {
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .price {
    font-size: 14px;
    margin-bottom: 6px;
  }

}

@media (max-width: 768px) {

  .size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 🔥 forces 4 sizes per row */
    gap: 4px;
  }

  .size-btn {
    width: 100%;
    height: 24px;
    font-size: 10px;
    padding: 0;
  }

}

/* CLEAN COMPACT CARD FIX */

.product-card {
  display: flex;
  flex-direction: column;
}

.product-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px; /* tight spacing */
}

.product-info h3 {
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}

.price {
  font-size: 14px;
  margin: 0;
}

.size-btn {
  flex: 1;               /* divide space equally */
  min-width: 0;          /* IMPORTANT: allows shrinking */
  height: 24px;
  padding: 0;
  font-size: 9px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.size-btn.selected,
.size-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-info button {
  width: 100%;
  padding: 7px;
  font-size: 12px;
}

/* =========================
   MOBILE SPACING FIX
========================= */

@media (max-width: 768px) {

  .container {
    width: 94%;
  }

  .product-grid {
    gap: 12px;   /* was 25px */
    margin-top: 20px;
  }

}

/* =========================
   PRODUCT PAGE SIZE FIX
========================= */

.product-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tight, card-like spacing for all product page elements */
.product-title { margin: 0 0 6px; }
.product-page-price { margin: 0 0 10px; font-size: 22px !important; }
.product-short-desc { margin: 0 0 12px; font-size: 14px; color: #666; line-height: 1.6; }

.product-details .size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.product-page-add-btn {
  margin: 0 0 18px;
}

/* FORCE PRODUCT PAGE PRICE */
.product-details .price {
  font-size: 22px !important;
  font-weight: 600;
  color: #111;
}

@media (max-width: 768px) {
  .product-details .price {
    font-size: 19px !important;
  }
}

/* =========================
   PRODUCT GALLERY FIX (CLEAN)
========================= */

/* Desktop layout */
.gallery-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Desktop: thumbnails stacked vertically, scrollable */
.thumbnail-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}

.thumbnail-column::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.thumbnail.active {
  border-color: var(--primary);
}

/* Main image — swipeable wrapper */
.main-image-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  max-width: 480px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

/* Swipe animation classes */
.main-product-image.slide-left-out {
  animation: imgSlideLeftOut 0.3s ease forwards;
}
.main-product-image.slide-left-in {
  animation: imgSlideLeftIn 0.3s ease forwards;
}
.main-product-image.slide-right-out {
  animation: imgSlideRightOut 0.3s ease forwards;
}
.main-product-image.slide-right-in {
  animation: imgSlideRightIn 0.3s ease forwards;
}

@keyframes imgSlideLeftOut {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-60px); opacity: 0; }
}
@keyframes imgSlideLeftIn {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes imgSlideRightOut {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(60px); opacity: 0; }
}
@keyframes imgSlideRightIn {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* =========================
   MOBILE GALLERY
========================= */

@media (max-width: 768px) {

  .gallery-wrapper {
    flex-direction: column;
  }

  .main-image-wrapper {
    order: 1;
    width: 100%;
    border-radius: 16px;
  }

  .main-product-image {
    max-width: 100%;
    aspect-ratio: 3 / 3.5;
  }

  .thumbnail-column {
    order: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 4px;
  }

  .thumbnail {
    width: 60px;
    height: 75px;
  }

}

@media (max-width: 768px) {

  .offers-grid {
    gap: 12px;
  }

  .offer-card {
    flex: 1 1 0;
    min-width: 0;   /* allow shrink */
    padding: 10px 6px;
  }

  .trust-badges {
    gap: 10px;
  }

  .trust-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
  }

  .trust-item p {
    font-size: 12px;
    font-weight: 500;
  }

}

/* ===============================
   HOME REVIEWS SECTION
================================= */

/* ===============================
   REVIEWS SECTION — PREMIUM
================================ */

/* ================================
   REVIEWS — JISORA STYLE CAROUSEL
================================ */

.reviews-section {
  background: #fdf6f9;
  padding: 60px 0 70px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.reviews-wrapper {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Eyebrow label */
.reviews-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reviews-title {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.2;
}

.reviews-title span {
  color: var(--primary);
}

.reviews-subtitle {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 48px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Stage: 3-card layout */
.reviews-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  min-height: 420px;
}

/* Each card */
.review-card {
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

/* Side cards */
.review-card.side {
  width: 200px;
  height: 300px;
  opacity: 0.5;
  transform: scale(0.88);
  filter: brightness(0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Center card — elevated and prominent */
.review-card.center {
  width: 260px;
  height: 390px;
  opacity: 1;
  transform: scale(1);
  filter: none;
  box-shadow: 0 24px 60px rgba(192,132,151,0.25), 0 8px 20px rgba(0,0,0,0.1);
  z-index: 2;
  cursor: default;
}

/* =========================
   REVIEW CARD ANIMATIONS
   Smooth slide + fade, direction-aware
========================= */

@keyframes reviewCenterFromRight {
  0%   { opacity: 0; transform: translateX(80px) scale(0.85); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes reviewCenterFromLeft {
  0%   { opacity: 0; transform: translateX(-80px) scale(0.85); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes reviewSideIn {
  0%   { opacity: 0; transform: translateX(30px) scale(0.82); }
  100% { opacity: 0.5; transform: translateX(0) scale(0.88); }
}

@keyframes reviewSideInLeft {
  0%   { opacity: 0; transform: translateX(-30px) scale(0.82); }
  100% { opacity: 0.5; transform: translateX(0) scale(0.88); }
}

.review-card.animate-center-from-right {
  animation: reviewCenterFromRight 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.review-card.animate-center-from-left {
  animation: reviewCenterFromLeft 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.review-card.animate-side-from-right {
  animation: reviewSideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.review-card.animate-side-from-left {
  animation: reviewSideInLeft 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Decorative quote mark on center card */
.review-card.center::before {
  content: '“';
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 60px;
  line-height: 1;
  color: rgba(255,255,255,0.55);
  font-family: Georgia, serif;
  z-index: 3;
  pointer-events: none;
}

/* Arrow buttons — floating on sides of stage */
.reviews-prev,
.reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e8dce4;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 10;
}

.reviews-prev { left: 0; }
.reviews-next { right: 0; }

.reviews-prev:hover,
.reviews-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(192,132,151,0.35);
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 24px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0d0d8;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Trust line */
.reviews-trust {
  text-align: center;
  font-size: 13px;
  color: #bbb;
  letter-spacing: 0.5px;
  margin: 0;
}

.reviews-trust strong {
  color: var(--primary-dark);
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-section {
    padding: 50px 0 60px;
  }

  .reviews-wrapper {
    padding: 0 50px;
  }

  .reviews-title {
    font-size: 28px;
  }

  .reviews-stage {
    gap: 12px;
    min-height: 320px;
  }

  .review-card.side {
    width: 120px;
    height: 190px;
  }

  .review-card.center {
    width: 185px;
    height: 285px;
  }

  .reviews-prev { left: -4px; }
  .reviews-next { right: -4px; }
}

/* ===============================
   ABOUT KASHMIKA SECTION
================================= */

.about-kashmika {
  padding: 60px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Box */

.about-box {
  background: #f8dce6;
  border-radius: 40px;
  padding: 60px;
}

/* Grid Layout */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Image */

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;

  /* Arch Shape */
  border-top-left-radius: 400px;
  border-top-right-radius: 400px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Content */

.about-content h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #2e2e2e;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
}

/* Button */

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #d46a92;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #c3567e;
  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-box {
    padding: 50px;
  }

  .about-image img {
    height: 500px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 0 20px;
  }

  .about-box {
    padding: 30px;
    border-radius: 28px;
  }

  .about-image img {
    height: 350px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
  }
}

/* ===============================
   TRUST BADGES SECTION HOME PAGE
================================= */

.trust-section {
  padding: 40px 0;
  background: #ffffff;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.trust-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2e2e2e;
}

.trust-item p {
  font-size: 14px;
  margin: 0;  
  color: #6a6a6a;
}

.trust-item h4 {
  line-height: 1.3;
}

.trust-item p {
  line-height: 1.4;
}


/* Hover subtle luxury effect */

.trust-item {
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

/* Tablet */

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .trust-container {
    padding: 0 20px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .trust-item img {
    width: 60px;
    height: 80px;
    margin: 4px 0 2px; 
  }

  .trust-item h4 {
    font-size: 14px;
    margin: 0px 0 4px;   /* top right/left bottom */
    line-height: 1.2;
  }

  .trust-item p {
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
  }
}

/* =========================
   GLOBAL SIZE BUTTON STYLE
========================= */

.size-btn {
  min-width: 55px;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.size-btn.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.size-btn.disabled {
  background: #f3f3f3;
  color: #aaa;
  border-color: #eee;
  cursor: not-allowed;
}

/* =========================
   GLOBAL ADD TO BAG BUTTON
========================= */

.product-card .add-to-cart-btn {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-card .add-to-cart-btn:hover {
  opacity: 0.9;
}

/* =========================
   PRODUCT PAGE BUTTON
========================= */

.product-page-add-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

/* =========================
   MOBILE PRODUCT CARD SIZE FIX
========================= */

@media (max-width: 768px) {

  .product-card .size-options {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .product-card .size-btn {
    flex: 1;
    min-width: 0;        /* 🔥 override 55px */
    height: 30px;
    padding: 0;
    font-size: 12px;
  }

}

button {
  color: inherit;
}

/* =========================
   NAVIGATION LINKS
========================= */

.nav {
  position: relative;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

/* Desktop: logo is naturally centered via flex space-between when nav-left & nav-right are equal width */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.logo {
  /* centered between nav-left and nav-right */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE NAV DRAWER
========================= */

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  max-height: 400px;
  padding: 10px 0 18px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background: var(--soft-pink);
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* On mobile, logo stays absolutely centered */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-content {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 15px;
  color: #444;
}

.contact-content p {
  margin-bottom: 12px;
}

.contact-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-content a:hover {
  text-decoration: underline;
}

/* =========================
   POLICIES PAGE
========================= */

.policies-page {
  max-width: 760px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0e8ec;
}

.policy-block:last-child {
  border-bottom: none;
}

.policy-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.policy-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

/* =========================
   OVERLAY FOR CART DRAWER
========================= */

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1999;
  cursor: pointer;
}

.cart-overlay.active {
  display: block;
}

/* =========================
   PRODUCT PAGE TITLE FIX
========================= */

.product-title {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 20px;
  }
}

/* =========================
   EMPTY CART STATE
========================= */

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #aaa;
  flex: 1;
}

.cart-empty p {
  font-size: 15px;
  margin-top: 12px;
}
