  :root {
    --cream: #F5EDE0;
    --cream-light: #FAF5EE;
    --gold: #C9A84C;
    --gold-dark: #A8872E;
    --gold-light: #E8D08A;
    --brown: #4A2E1A;
    --brown-mid: #7A5230;
    --brown-light: #A87A55;
    --white: #FDFAF6;
    --text-dark: #2C1A0E;
    --text-mid: #6B4A2A;
    --border: rgba(201,168,76,0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream-light);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
  }

  /* ======== NAVBAR ======== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background:  #4A2E1A;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-weight: 700;
    color: var(--brown); letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-light); text-decoration: none;
  transition: color 0.25s;
}
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--white) !important;
    padding: 0.55rem 1.4rem; border-radius: 2px;
    font-size: 0.78rem !important; letter-spacing: 0.1em;
    transition: background 0.25s !important;
  }
  .nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
  .mobile-cart-link {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--brown);
    text-decoration: none;
    font-size: 1.25rem;
  }
  .mobile-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--cream-light);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  /* target only the line elements so the label isn't styled as a bar */
  .hamburger .hamburger-line { width: 24px; height: 2px; background: var(--cream-light); display: block; }

  /* ======== HERO ======== */
  .hero {
    min-height: 100vh; display: flex;
    flex-direction: row; align-items: stretch;
    padding-top: 72px;
    background: var(--cream-light);
  }
.hero-image-col {
  width: 52%;
  position: relative;
  overflow: hidden;
  min-height: 450px; /* Desktop height */
}

@media (max-width: 768px) {
  .hero-image-col {
    height: 55vh;
    min-height: 400px; /* Mobile height */
  }
}
  .hero-image-col img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero-content-col {
    width: 48%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 6% 5rem 5%;
    background: var(--cream-light);
  }
  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-eyebrow::before {
    content: ''; width: 36px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 600; line-height: 1.15;
    color: var(--brown); margin-bottom: 1.5rem;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1.5rem;
  }
  .hero p {
    font-size: 0.97rem; font-weight: 300; line-height: 1.85;
    color: var(--text-mid); margin-bottom: 2.4rem; max-width: 480px;
  }
  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--brown);
    padding: 0.82rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-secondary:hover { background: var(--gold); color: var(--white); }
  .hero-badge {
    margin-top: 3rem;
    padding: 1rem 1.4rem;
    background: rgba(201,168,76,0.08);
    border-left: 3px solid var(--gold);
    font-size: 0.82rem; color: var(--text-mid); line-height: 1.6;
    max-width: 420px;
  }
  .hero-badge strong { color: var(--brown); }

  @media (min-width: 901px) {
    .hero {
      min-height: auto;
    }

    .hero-image-col {
      align-self: center;
      height: 100vh;
      min-height: 315px;
      max-height: 560px;
    }
  }

  /* ======== SECTION SHARED ======== */
  section { padding: 6rem 5%; overflow-x: hidden; }
  .section-eyebrow {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.9rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 600; color: var(--brown); line-height: 1.2;
  }
  .section-title em { color: var(--gold); font-style: italic; }

  /* ======== TREATMENTS ======== */
  .treatments { background: var(--cream-light); }
  .treatments-header {
    text-align: center; margin-bottom: 3.5rem;
  }
  .treatments-header .section-eyebrow { justify-content: center; }
  .treatments-header .section-eyebrow::before { display: none; }
  .treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
  }
  .treatment-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden; text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  .treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74,46,26,0.12);
  }
  .treatment-img {
    width: 100%; aspect-ratio: 3/4;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }
  .treatment-img img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .treatment-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, #EDE0CE 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.6rem;
  }
  .treatment-placeholder-icon {
    width: 44px; height: 44px;
    background: var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .treatment-placeholder-icon svg { width: 22px; height: 22px; fill: var(--gold); }
  .treatment-placeholder-text {
    font-size: 0.65rem; color: var(--brown-light);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .treatment-info { padding: 1rem 0.9rem 1.2rem; }
  .treatment-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--brown); margin-bottom: 0.3rem;
  }
  .treatment-sub {
    font-size: 0.72rem; color: var(--brown-light);
    letter-spacing: 0.06em;
  }
  .treatments-cta { text-align: center; margin-top: 3rem; }

  /* ======== ABOUT ======== */
  .about { background: var(--white); }
  .about-inner {
    display: flex; gap: 6%; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .about-image-wrap {
    width: 44%; position: relative; flex-shrink: 0;
  }
  .about-img-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream) 0%, #E8D8C4 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border: 1px solid var(--border);
    gap: 1rem;
  }
  .about-img-placeholder svg { width: 56px; height: 56px; fill: var(--gold-light); }
  .about-img-placeholder p {
    font-size: 0.72rem; color: var(--brown-light);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .about-gold-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    background: var(--gold);
    opacity: 0.15;
  }
  .about-content { flex: 1; }
  .about-content .section-eyebrow { margin-bottom: 0.7rem; }
  .about-content .section-title { margin-bottom: 1.5rem; }
  .about-body {
    font-size: 0.95rem; font-weight: 300; line-height: 1.9;
    color: var(--text-mid); margin-bottom: 1.2rem;
  }
  .about-pillars {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem; margin: 2rem 0 2.5rem;
  }
  .pillar {
    display: flex; align-items: flex-start; gap: 0.8rem;
  }
  .pillar-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
  }
  .pillar-icon svg { width: 16px; height: 16px; fill: var(--gold); }
  .pillar-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600;
    color: var(--brown); margin-bottom: 0.2rem;
  }
  .pillar-text p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; }

  /* ======== REVIEWS ======== */
  .reviews { background: var(--cream-light); }
  .reviews-header { text-align: center; margin-bottom: 3.5rem; }
  .reviews-header .section-eyebrow { justify-content: center; }
  .reviews-header .section-eyebrow::before { display: none; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
  }
  .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.8rem 1.6rem;
    position: relative;
  }
  .review-quote {
    font-size: 3rem; line-height: 1;
    color: var(--gold); opacity: 0.4;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
  }
  .review-text {
    font-size: 0.875rem; line-height: 1.8;
    color: var(--text-mid); font-style: italic;
    margin-bottom: 1.2rem;
  }
  .review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.6rem; }
  .review-name {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--brown-light);
  }

  /* ======== TRUST STRIP ======== */
  .trust-strip {
    background: var(--brown);
    padding: 2rem 5%;
    display: flex; align-items: center;
    justify-content: center; flex-wrap: wrap;
    gap: 2.5rem;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.7rem;
    color: var(--cream-light);
  }
  .trust-item svg { width: 20px; height: 20px; fill: var(--gold-light); flex-shrink: 0; }
  .trust-item span {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .trust-sep {
    width: 1px; height: 24px;
    background: rgba(201,168,76,0.3);
  }

  /* ======== FOOTER ======== */
  footer {
    background: var(--text-dark);
    color: var(--cream-light);
    padding: 4rem 5% 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cream-light); margin-bottom: 0.8rem;
  }
  .footer-brand-name span { color: var(--gold); }
  .footer-tagline {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(250,245,238,0.55); margin-bottom: 1.5rem;
  }
  .footer-heading {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a {
    font-size: 0.82rem; color: rgba(250,245,238,0.55);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-contact p {
    font-size: 0.82rem; color: rgba(250,245,238,0.55);
    line-height: 1.7; margin-bottom: 0.4rem;
  }
  .footer-contact a { color: var(--gold-light); text-decoration: none; }
  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy {
    font-size: 0.76rem; color: rgba(250,245,238,0.35);
  }

  /* ======== TELEGRAM BUTTON ======== */
  /* ======== WHATSAPP FLOAT BUTTON ======== */
  .telegram-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 1000;
    display: flex; align-items: center; gap: 0.7rem;
    background: #25D366; color: #fff;
    padding: 0.75rem 1.3rem;
    text-decoration: none;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.06em;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .telegram-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  }
  .telegram-float svg { width: 20px; height: 20px; fill: #fff; }

  /* ======== MOBILE ======== */
  @media (max-width: 900px) {
    .hero { flex-direction: column; }
    .hero-image-col { width: 100%; min-height: 350px; }
    .hero-content-col { width: 100%; padding: 3rem 6%; }
    .about-inner { flex-direction: column; }
    .about-image-wrap { width: 100%; margin-bottom: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; flex-direction: column; }
    .mobile-cart-link { display: flex; margin-left: auto; margin-right: 1rem; }
    .hamburger { display: flex; }
  }
  
  @media (max-width: 768px) {
    body { overflow-x: hidden; }
    .treatments-grid { 
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
      padding: 0 0.5rem;
    }
    .treatment-card { width: 100%; }
    .treatment-name { font-size: 0.9rem; }
    .treatment-sub { font-size: 0.65rem; }
    .about-pillars { grid-template-columns: 1fr; }
    .trust-sep { display: none; }
    .trust-strip { gap: 1rem; padding: 1rem 5%; }
    .trust-item span { font-size: 0.7rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { text-align: center; width: 100%; }
    section { padding: 3rem 4%; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-image-col { height: 55vh; min-height: 400px; }
    .hero-image-col img { object-position: center 45%; }
    .telegram-float { bottom: 16px; right: 16px; padding: 0.5rem 1rem; font-size: 0.7rem; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.9rem; }
    .section-title { font-size: 1.8rem; }
    .reviews-grid { grid-template-columns: 1fr; padding: 0 0.5rem; }
    .review-card { padding: 1.2rem; }
    .about-body { font-size: 0.9rem; }
  }
  
  @media (max-width: 480px) {
    .treatments-grid { gap: 0.5rem; }
    .treatment-info { padding: 0.5rem; }
    .treatment-name { font-size: 0.8rem; }
    .hero-content-col { padding: 2rem 5%; }
    .hero-badge { font-size: 0.75rem; padding: 0.8rem; }
  }
 .treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Add this to your existing CSS */

@media (max-width: 768px) {
  .span-2-mobile {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .span-2-mobile .treatment-img {
    aspect-ratio: 3/2;
    height: auto;
  }
  
  .span-2-mobile .treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* TIKTOK FLOAT BUTTON */
.tiktok-float {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #000000;
  color: #fff;
  padding: 0.75rem 1.3rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tiktok-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}
.tiktok-float svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Adjust WhatsApp button position */
.telegram-float {
  bottom: 32px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .tiktok-float {
    bottom: 85px;
    right: 16px;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
  .telegram-float {
    bottom: 16px;
    right: 16px;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
/* INSTAGRAM FLOAT BUTTON */
.instagram-float {
  position: fixed;
  bottom: 168px;
  right: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #E4405F;
  color: #fff;
  padding: 0.75rem 1.3rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(228, 64, 95, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.instagram-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(228, 64, 95, 0.5);
}
.instagram-float svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Adjust TikTok button position */
.tiktok-float {
  bottom: 100px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .instagram-float {
    bottom: 145px;
    right: 16px;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
  .tiktok-float {
    bottom: 85px;
    right: 16px;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
  .telegram-float {
    bottom: 16px;
    right: 16px;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

/* ======== PRODUCT DETAIL PAGE ======== */
.product-detail {
  padding: 132px 5% 60px;
  background: var(--cream-light);
}

.product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 2rem;
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.68rem 1.05rem;
  background: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(74, 46, 26, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.back-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.22);
}

.back-link:focus-visible {
  outline: 3px solid rgba(201, 168, 76, 0.35);
  outline-offset: 3px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-image-col {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream-light);
}

.product-image-col img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 500px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.product-info-col {
  padding-top: 0.5rem;
}

.product-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* Quantity Selector */
.product-quantity {
  margin-bottom: 1.5rem;
}

.product-image-col {
  position: relative;
}

.product-image-col.is-out-of-stock img {
  filter: grayscale(0.45);
  opacity: 0.72;
}

.product-image-col .sold-out-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  transform: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.product-quantity label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 140px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  background: var(--cream);
}

#quantity {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  -moz-appearance: textfield;
}
#quantity::-webkit-inner-spin-button,
#quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn {
  width: 100%;
  max-width: 300px;
  padding: 1rem;
  font-size: 0.9rem;
}

.add-to-cart-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.add-to-cart-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Product Meta */
.product-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.product-meta p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.3rem;
}
.product-meta p strong {
  color: var(--brown);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .product-detail {
    padding: 116px 4% 40px;
  }
  .product-detail-actions {
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 0 1.2rem;
  }

  .back-link {
    min-height: 42px;
    padding: 0.62rem 0.9rem;
    font-size: 0.7rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .product-name {
    font-size: 1.8rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  .add-to-cart-btn {
    max-width: 100%;
  }
}

/* Clickable Product Cards */
.treatment-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.treatment-card-link:hover .treatment-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,46,26,0.12);
}

/* Span 2 mobile link */
.span-2-mobile-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

@media (max-width: 768px) {
  .span-2-mobile-link {
    grid-column: span 2;
  }
}

/* ======== SHOP PAGE ======== */

/* Shop Hero */
.shop-hero {
  padding: 120px 5% 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}

.shop-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.shop-hero-content p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.shop-search-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: min(280px, 100%);
}

.shop-search-input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.9rem;
  border-radius: 2px;
}

.shop-search-input:focus {
  outline: none;
  border-color: var(--gold);
}

.shop-search-btn {
  padding: 0.7rem 1rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

.shop-search-btn:hover {
  background: var(--gold-dark);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
}

.filter-btn:hover {
  background: var(--cream);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-sort label {
  font-size: 0.8rem;
  color: var(--text-mid);
}

.shop-sort select {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.8rem;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 2px;
}

/* Shop Grid */
.shop-section {
  padding: 2rem 5% 4rem;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Product Price in Shop */
.product-price-shop {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 0.3rem;
}

.shop-card {
  min-width: 0;
}

.shop-card .treatment-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-card .treatment-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.shop-card .product-price-shop {
  order: 1;
}

.shop-card-actions {
  order: 2;
}

.shop-card-image-link,
.shop-card-title-link {
  color: inherit;
  text-decoration: none;
}

.shop-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.shop-quantity-selector {
  display: grid;
  grid-template-columns: 34px minmax(42px, 1fr) 34px;
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
}

.shop-qty-btn,
.shop-qty-input {
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--brown);
  font: inherit;
  text-align: center;
}

.shop-qty-btn {
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.shop-qty-btn:hover {
  background: var(--cream);
}

.shop-qty-input {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  -moz-appearance: textfield;
}

.shop-qty-input::-webkit-inner-spin-button,
.shop-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-add-to-cart {
  width: 100%;
  padding: 0.75rem 0.8rem;
  font-size: 0.72rem;
}

/* Loading / Empty State */
.loading-message,
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
  color: var(--text-mid);
  font-size: 1rem;
}

.empty-state {
  display: none;
}

/* Shop Hero Mobile */
@media (max-width: 768px) {
  .shop-hero {
    padding: 100px 4% 30px;
  }

  .shop-hero-content h1 {
    font-size: 2rem;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-search-group {
    width: 100%;
    min-width: 0;
  }

  .shop-filters {
    justify-content: center;
  }

  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }

  .shop-sort {
    justify-content: center;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .shop-card-actions {
    gap: 0.55rem;
  }

  .shop-quantity-selector {
    grid-template-columns: 30px minmax(34px, 1fr) 30px;
  }

  .shop-qty-btn,
  .shop-qty-input {
    height: 32px;
  }

  .shop-add-to-cart {
    padding: 0.65rem 0.45rem;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    gap: 0.5rem;
  }

  .shop-filters {
    gap: 0.3rem;
  }

  .filter-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.6rem;
  }
}

/* Active nav link */
.nav-links a.active {
  color: var(--gold);
}

/* ======== CART PAGE ======== */

.cart-section {
  padding: 100px 5% 60px;
  background: var(--cream-light);
  min-height: 70vh;
}

.cart-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2rem;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cart-empty h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.cart-empty p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* Cart Items */
.cart-items-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  background: var(--white);
  padding: 1rem;
  border: 1px solid var(--border);
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-qty-input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-decrease,
.cart-qty-increase {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-decrease:hover,
.cart-qty-increase:hover {
  background: var(--cream);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-item-total {
  font-weight: 600;
  color: var(--brown);
  font-size: 1rem;
  white-space: nowrap;
}

/* Cart Summary */
.cart-summary {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.cart-summary-row:last-of-type {
  border-bottom: none;
}

.cart-summary-row.cart-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--gold);
}

.checkout-btn {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 0.9rem;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .cart-section {
    padding: 80px 4% 40px;
  }

  .cart-title {
    font-size: 1.8rem;
  }

  .cart-items-wrapper {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .cart-item-total {
    grid-column: 1 / -1;
    text-align: right;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

  .cart-item-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-summary {
    position: static;
  }

  .cart-empty h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: 50px 1fr;
    gap: 0.5rem;
    padding: 0.6rem;
  }

  .cart-item-image {
    width: 50px;
    height: 50px;
  }

  .cart-item-name {
    font-size: 0.85rem;
  }

  .cart-qty-input {
    width: 32px;
    height: 28px;
    font-size: 0.75rem;
  }

  .cart-qty-decrease,
  .cart-qty-increase {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cart-header .cart-title {
  margin-bottom: 0;
}
.continue-shopping-btn {
  font-size: 0.85rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
}
.continue-shopping-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ======== FLOATING CART BUTTON ======== */
.floating-cart-link {
  position: fixed;
  left: 32px;
  bottom: 32px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  background: var(--brown);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(44, 26, 14, 0.26);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.floating-cart-link:hover {
  color: var(--white);
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(44, 26, 14, 0.32);
}

.floating-cart-icon {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--gold);
  border: 2px solid var(--cream-light);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(74, 46, 26, 0.22);
}

.floating-cart-link.has-items .floating-cart-count {
  background: var(--gold-dark);
}

.floating-cart-link.cart-bump {
  animation: floatingCartBump 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

@keyframes floatingCartBump {
  0% { transform: scale(1); }
  32% { transform: scale(1.16) rotate(-5deg); }
  62% { transform: scale(0.96) rotate(3deg); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .floating-cart-link {
    left: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .floating-cart-icon {
    width: 27px;
    height: 27px;
  }

  .floating-cart-count {
    min-width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }
}
/* ======== TOAST NOTIFICATION ======== */
.toast {
  position: fixed;
  top: 90px;
  right: 32px;
  background: #1a1a2e;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 32px));
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 9999;
  max-width: 400px;
  min-width: 280px;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.toast-message strong {
  color: var(--gold-light);
}

/* Toast position on mobile - at top */
@media (max-width: 768px) {
  .toast {
    top: 80px;
    right: 16px;
    left: 16px;
    max-width: none;
    min-width: auto;
    padding: 0.8rem 1rem;
    transform: translateY(calc(-100% - 80px));
    border-radius: 6px;
  }
  
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .toast-icon {
    font-size: 1.2rem;
  }
  
  .toast-message {
    font-size: 0.8rem;
  }
}

/* ======== CHECKOUT PAGE ======== */

.checkout-section {
  padding: 100px 5% 60px;
  background: var(--cream-light);
  min-height: 70vh;
}

.checkout-container {
  max-width: 1100px;
  margin: 0 auto;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0;
}

.back-to-cart-btn {
  font-size: 0.85rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
}

.back-to-cart-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Checkout Grid */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Checkout Form */
.checkout-form {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
}

.checkout-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  background: var(--cream-light);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Checkout Summary */
.checkout-summary {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.checkout-summary h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.2rem;
}

.checkout-items {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.checkout-item-name {
  color: var(--text-dark);
}

.checkout-item-name span {
  color: var(--text-mid);
  font-size: 0.75rem;
}

.checkout-item-price {
  color: var(--gold-dark);
  font-weight: 500;
}

.checkout-totals {
  border-top: 2px solid var(--gold);
  padding-top: 1rem;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.checkout-row.checkout-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.place-order-btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.checkout-secure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 0.8rem;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 80px 4% 40px;
  }

  .checkout-title {
    font-size: 1.8rem;
  }

  .checkout-form {
    padding: 1.2rem;
  }

  .checkout-summary {
    padding: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  background: var(--cream-light);
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B4A2A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select option {
  padding: 0.5rem;
}

/* ======== SUCCESS PAGE ======== */
.success-section {
  padding: 140px 5% 80px;
  text-align: center;
  background: var(--cream-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-container {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

/* ===== SUCCESS ICON ===== */
.success-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.success-icon {
  width: 88px;
  height: 88px;
  position: relative;
  animation: iconPop 0.45s ease 0.9s both;
}

/* Glowing pulse behind the icon */
.success-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.18);
  transform: scale(0);
  animation: pulse 0.8s ease 0.4s forwards;
  z-index: -1;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.success-circle {
  fill: transparent;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 157;
  stroke-dashoffset: 157;

  transform-origin: center;
  transform: scale(0.75);

  animation:
    circleScale 0.35s ease forwards,
    circleDraw 0.55s ease forwards,
    circleFill 0.25s ease 0.55s forwards;
}

.success-check {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 40;
  stroke-dashoffset: 40;

  animation: checkDraw 0.35s ease 0.75s forwards;
}

/* ===== KEYFRAMES ===== */
@keyframes circleScale {
  to {
    transform: scale(1);
  }
}

@keyframes circleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes circleFill {
  to {
    fill: var(--gold);
  }
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes iconPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ===== SUCCESS CONTENT ===== */
.success-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.success-message {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ===== ORDER DETAILS ===== */
.order-details {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  background: var(--cream-light);
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

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

.order-value {
  font-weight: 600;
  color: var(--text-dark);
}

.order-status {
  font-weight: 600;
  color: var(--gold-dark);
}

/* ===== BUTTONS ===== */
.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-btn {
  min-width: 200px;
  transition: all 0.3s ease;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .success-section {
    padding: 100px 4% 60px;
  }

  .success-container {
    padding: 2rem 1.5rem;
  }

  .success-icon {
    width: 64px;
    height: 64px;
  }

  .success-icon::before {
    inset: -6px;
  }

  .success-section h1 {
    font-size: 1.8rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .success-btn,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .success-container {
    padding: 1.5rem 1rem;
  }

  .order-details {
    padding: 1rem;
  }

  .order-row {
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
}
/* ======== CANCEL PAGE ======== */
.cancel-section {
  padding: 140px 5% 80px;
  text-align: center;
  background: var(--cream-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancel-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

/* ===== CANCEL ICON ===== */
.cancel-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cancel-icon {
  width: 80px;
  height: 80px;
  position: relative;
}

.cancel-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cancel-circle {
  fill: transparent;
  stroke: #e74c3c;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transform-origin: center;
  animation: cancelCircleDraw 0.5s ease forwards;
}

.cancel-line {
  fill: none;
  stroke: #e74c3c;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: cancelLineDraw 0.3s ease 0.4s forwards;
}

@keyframes cancelCircleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes cancelLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ===== CANCEL CONTENT ===== */
.cancel-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.cancel-message {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ===== CANCEL ACTIONS ===== */
.cancel-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cancel-actions .btn-primary,
.cancel-actions .btn-secondary {
  min-width: 160px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cancel-section {
    padding: 100px 4% 60px;
  }

  .cancel-container {
    padding: 2rem 1.5rem;
  }

  .cancel-icon {
    width: 64px;
    height: 64px;
  }

  .cancel-section h1 {
    font-size: 1.8rem;
  }

  .cancel-actions {
    flex-direction: column;
    align-items: center;
  }

  .cancel-actions .btn-primary,
  .cancel-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cancel-container {
    padding: 1.5rem 1rem;
  }
}

/* ===== CURRENCY SELECTOR ===== */
.currency-selector {
  position: relative;
  display: inline-block;
}

.currency-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  transition: border-color 0.2s;
}

.currency-btn:hover {
  border-color: var(--gold);
}

.currency-btn svg {
  transition: transform 0.2s;
}

.currency-btn.active svg {
  transform: rotate(180deg);
}

.currency-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  margin-top: 4px;
  overflow: hidden;
}

.currency-dropdown.show {
  display: block;
}

.currency-option {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  font-family: 'Jost', sans-serif;
  transition: background 0.15s;
}

.currency-option:hover {
  background: var(--cream-light);
}

.currency-option.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .currency-selector {
    margin-left: auto;
    margin-right: 0.5rem;
  }
  
  .currency-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
}

/* ===== DELIVERY OPTIONS ===== */
.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.delivery-option {
  position: relative;
  display: block;
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s ease;
  background: var(--white);
  overflow: hidden;
}

.delivery-option:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.2rem;
}

.delivery-option-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-light);
  border-radius: 50%;
  transition: background 0.25s;
}

.delivery-option-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
}

.delivery-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.delivery-option-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.25s;
}

.delivery-option-sub {
  font-size: 0.75rem;
  color: var(--text-mid);
  transition: color 0.25s;
}

.delivery-option-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.5);
}

.delivery-option-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 3;
}

/* Selected state */
.delivery-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.12);
}

.delivery-option:has(input:checked) .delivery-option-icon {
  background: var(--gold);
}

.delivery-option:has(input:checked) .delivery-option-icon svg {
  stroke: var(--white);
}

.delivery-option:has(input:checked) .delivery-option-title {
  color: var(--gold-dark);
}

.delivery-option:has(input:checked) .delivery-option-check {
  opacity: 1;
  transform: scale(1);
  background: var(--gold);
  border-color: var(--gold);
}

/* Pickup specific */
.pickup-option .delivery-option-icon {
  background: rgba(74, 46, 26, 0.06);
}

.pickup-option:has(input:checked) .delivery-option-icon {
  background: var(--brown);
}

/* Shipping specific */
.shipping-option .delivery-option-icon {
  background: rgba(201, 168, 76, 0.1);
}

.shipping-option:has(input:checked) .delivery-option-icon {
  background: var(--gold);
}

/* Delivery Partner Info */
#delivery-partner-group {
  margin-top: 0rem;
}

#delivery-partner-info {
  padding: 1rem 1.2rem;
  background: var(--cream-light);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#delivery-partner-info strong {
  color: var(--text-dark);
}

#delivery-partner-info .partner-icon {
  font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .delivery-options {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .delivery-option-content {
    padding: 0.9rem 1rem;
  }
  
  .delivery-option-icon {
    width: 38px;
    height: 38px;
  }
  
  .delivery-option-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .delivery-option-title {
    font-size: 0.85rem;
  }
  
  .delivery-option-sub {
    font-size: 0.7rem;
  }
}

/* ======== CONTACT PAGE ======== */
.contact-section {
  padding: 120px 5% 60px;
  background: var(--cream-light);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.contact-header p {
  font-size: 1rem;
  color: var(--text-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
}

.contact-form-wrapper h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

#contact-form .form-group {
  margin-bottom: 1.2rem;
}

#contact-form .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 0.3rem;
}

#contact-form .form-group input,
#contact-form .form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  background: var(--cream-light);
  transition: border-color 0.2s;
}

#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

#contact-form .form-group textarea {
  resize: vertical;
}

/* Contact Info */
.contact-info-wrapper {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
}

.contact-info-wrapper h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  color: var(--gold);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 0.1rem;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-item p {
  color: var(--text-dark);
  font-size: 0.9rem;
}

/* Social Icons */
.contact-social h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: all 0.25s;
  text-decoration: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-icon.instagram:hover {
  border-color: #E4405F;
  color: #E4405F;
}

.social-icon.tiktok:hover {
  border-color: #000000;
  color: #000000;
}

.social-icon.whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-section {
    padding: 100px 4% 40px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 1.2rem;
  }

  .social-icons {
    justify-content: center;
  }
}

#zip-group {
  display: block;
}

#zip-group small {
  display: block;
  margin-top: 0.2rem;
}

/* ===== SHOP CONTROLS LAYOUT ===== */
.shop-controls-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.shop-currency-selector {
  position: relative;
}

.shop-currency-selector .currency-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Jost', sans-serif;
  color: var(--text-mid);
  transition: border-color 0.2s;
}

.shop-currency-selector .currency-btn:hover {
  border-color: var(--gold);
}

.shop-currency-selector .currency-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  margin-top: 4px;
  overflow: hidden;
}

.shop-currency-selector .currency-dropdown.show {
  display: block;
}

.shop-currency-selector .currency-option {
  display: block;
  width: 100%;
  padding: 0.4rem 0.8rem;
  border: none;
  background: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  font-family: 'Jost', sans-serif;
  transition: background 0.15s;
}

.shop-currency-selector .currency-option:hover {
  background: var(--cream-light);
}

.shop-currency-selector .currency-option.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .shop-filters {
    justify-content: center;
    flex-wrap: wrap;
  }

  .shop-controls-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .shop-currency-selector .currency-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .shop-sort select {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}
/* ===== PRODUCT PAGE CURRENCY SELECTOR ===== */
.product-currency-selector {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.currency-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
}

.product-currency-selector .currency-selector {
  position: relative;
  display: inline-block;
}

.product-currency-selector .currency-btn {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  transition: border-color 0.2s;
}

.product-currency-selector .currency-btn:hover {
  border-color: var(--gold);
}

.product-currency-selector .currency-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  margin-top: 4px;
  overflow: hidden;
}

.product-currency-selector .currency-dropdown.show {
  display: block;
}

.product-currency-selector .currency-option {
  display: block;
  width: 100%;
  padding: 0.4rem 0.8rem;
  border: none;
  background: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  font-family: 'Jost', sans-serif;
  transition: background 0.15s;
}

.product-currency-selector .currency-option:hover {
  background: var(--cream-light);
}

.product-currency-selector .currency-option.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

@media (max-width: 768px) {
  .product-currency-selector {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: auto;
    padding: 0.4rem 0.6rem;
  }
  
  .product-currency-selector .currency-btn {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ===== DELIVERY NOTE ===== */
.delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding: 0.7rem 1rem;
  background: rgba(201, 168, 76, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.delivery-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  stroke: var(--gold);
}

.delivery-note strong {
  color: var(--text-dark);
}

@media (max-width: 480px) {
  .delivery-note {
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.3rem 0.5rem;
  position: relative;
  z-index: 1001;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--cream-light);
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-label {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-light);
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Hamburger open state (X) */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hamburger.open .hamburger-label {
  color: var(--gold-light);
}

/* Mobile */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

.cart-item-unavailable {
  opacity: 0.6;
  border-left: 3px solid #e74c3c;
}

.cart-item-unavailable-message {
  color: #e74c3c;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.3rem 0;
}

/* ===== ABOUT SOCIAL ===== */
.about-social {
  margin-top: 2rem;
  text-align: center;
}

.about-social-icons {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* make the socials block visually match other sections */
.about-social-icons {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 6px;
  background: rgba(201,168,76,0.02);
}

.about-social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: transform 0.25s;
}

.about-social-icon svg {
  width: 40px;
  height: 40px;
}

.social-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.about-social-icon:hover {
  transform: translateY(-4px);
}

/* Brand Colors */
.about-social-icon.instagram {
  color: #E4405F;
}
.about-social-icon.instagram .social-label {
  color: #E4405F;
}

.about-social-icon.tiktok {
  color: #000000;
}
.about-social-icon.tiktok .social-label {
  color: #000000;
}

.about-social-icon.whatsapp {
  color: #25D366;
}
.about-social-icon.whatsapp .social-label {
  color: #25D366;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .about-social-icons {
    gap: 1.5rem;
  }
  
  .about-social-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .social-label {
    font-size: 0.65rem;
  }
}
@media (max-width: 768px) {
  .nav-logo img {
    height: 100px !important;
  }
}

/* ===== CART LOADING STATE ===== */
.cart-loading {
  text-align: center;
  padding: 4rem 0;
}

.cart-loading-cart {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.cart-loading-cart svg {
  width: 60px;
  height: 60px;
  stroke: var(--gold);
  animation: cartFloat 1.5s ease-in-out infinite;
}

.cart-loading-cart .cart-item-fly {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: flyToCart 1.2s ease-in-out infinite;
}

.cart-loading-cart .cart-item-fly:nth-child(2) {
  top: 10px;
  left: -20px;
  animation-delay: 0.3s;
}
.cart-loading-cart .cart-item-fly:nth-child(3) {
  bottom: 10px;
  left: -30px;
  animation-delay: 0.6s;
}

.cart-loading p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

@keyframes cartFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes flyToCart {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(60px) scale(0.3);
    opacity: 0;
  }
}

/* ===== SALE & SOLD OUT STYLES ===== */

/* Sale Ribbon */
.sale-ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.32rem 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotate(-3deg);
}

/* Sold Out Badge */
.sold-out-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Out of Stock Card */
.treatment-card.out-of-stock .treatment-img img {
  filter: grayscale(0.6);
  opacity: 0.5;
}

/* Price Styles */
.product-price-shop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.original-price {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-decoration: line-through;
  opacity: 0.6;
}

.sale-price {
  font-size: 1rem;
  font-weight: 700;
  color: #e74c3c;
}

/* Sales toggle in admin form */
.sale-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.7rem 0.95rem;
  border: 1px solid #d8cfb2;
  border-radius: 999px;
  background: linear-gradient(145deg, #fffdf8, #f3ebdb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 10px rgba(0, 0, 0, 0.06);
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sale-toggle-label:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 14px rgba(0, 0, 0, 0.08);
}

.sale-toggle-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sale-toggle-track {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #bfb8a7;
  border: 2px solid #a79f8a;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.16);
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.sale-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ebe2ce);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.sale-toggle-label input[type="checkbox"]:checked + .sale-toggle-track {
  background: linear-gradient(135deg, var(--gold), #b88b1b);
  border-color: #a37d12;
}

.sale-toggle-label input[type="checkbox"]:checked + .sale-toggle-track .sale-toggle-thumb {
  transform: translateX(22px);
}

.sale-toggle-text {
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-group .sale-toggle-label {
  display: inline-flex;
  position: relative;
  min-height: 44px;
  margin-bottom: 0;
  line-height: 1.2;
}

.sale-toggle-label .sale-toggle-text {
  display: block;
}

/* Disabled button styles */
.shop-add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.shop-add-to-cart:disabled:hover {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

.shop-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shop-qty-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--cream-light);
}

/* ===== CHECKOUT SALE STYLES ===== */
.checkout-item-sale-tag {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  text-transform: uppercase;
}

.checkout-original-price {
  text-decoration: line-through;
  color: var(--text-mid);
  opacity: 0.6;
  font-size: 0.8rem;
  margin-right: 0.4rem;
}

.checkout-sale-price {
  color: #e74c3c;
  font-weight: 700;
}

/* ===== CART SALE STYLES ===== */
.cart-original-price {
  text-decoration: line-through;
  color: var(--text-mid);
  opacity: 0.6;
  font-size: 0.8rem;
  margin-right: 0.4rem;
}

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

.cart-original-total {
  text-decoration: line-through;
  color: var(--text-mid);
  opacity: 0.6;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.cart-sale-total {
  color: #e74c3c;
  font-weight: 700;
}

/* ===== CART OUT OF STOCK ===== */
.cart-item-out-of-stock {
  opacity: 0.6;
  border-left: 3px solid #e67e22;
}

.cart-item-out-of-stock-message {
  color: #e67e22;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.3rem 0;
}
/* ===== CART STOCK WARNING ===== */
.cart-item-exceeds-stock {
  border-left: 3px solid #e67e22;
}

.cart-item-stock-warning {
  color: #e67e22;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.3rem 0;
  padding: 0.3rem 0.5rem;
  background: rgba(230, 126, 34, 0.08);
  border-radius: 4px;
}
/* ===== OUT OF STOCK TAG (shop/product pages) ===== */
.out-of-stock-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #999;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  z-index: 5;
}

/* Remove grey overlay from product cards */
.treatment-card.out-of-stock {
  /* Keep this empty or remove the filter/opacity properties */
}

/* Disabled Add to Cart button */
.shop-add-to-cart:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.shop-add-to-cart:disabled:hover {
  background: #ccc;
  transform: none;
  box-shadow: none;
}
/* Checkout country picker */
.country-search-wrapper {
  position: relative;
}

.country-search-input {
  width: 100%;
}

.country-select {
  display: none;
  width: 100%;
  margin-top: 0.4rem;
  max-height: 13rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
}

.country-search-wrapper.is-open .country-select {
  display: block;
}

.country-select option {
  padding: 0.45rem 0.7rem;
}

.country-select option[hidden] {
  display: none;
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.payment-method-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
  flex: 1;
  min-width: 160px;
}

.payment-method-option:hover {
  border-color: var(--gold-light);
}

.payment-method-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.payment-method-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.payment-method-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.payment-method-badge {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--white);
  letter-spacing: 0.04em;
}

.payment-method-badge.paystack-badge {
  background: #999;
  color: #fff;
}