:root {
  --black: #17130f;
  --dark: #282019;
  --gold: #c7953c;
  --gold-dark: #9f7428;
  --gold-soft: #f3ddb4;
  --cream: #fffaf1;
  --beige: #f6ead9;
  --nude: #e8c9a7;
  --white: #ffffff;
  --muted: #756b61;
  --border: rgba(199, 149, 60, 0.28);
  --shadow: 0 20px 60px rgba(36, 25, 12, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Poppins", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.announcement {
  background: var(--black);
  color: var(--gold-soft);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  background: #000;
  border-bottom: 1px solid rgba(212, 168, 74, 0.25);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c873, #a97920);
  color: #17130f;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  letter-spacing: 0.08em;
}
.brand-text small {
  margin-top: 5px;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; gap: 10px; }
.icon-btn {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  color: var(--black);
}
.icon-btn span { color: var(--gold-dark); font-weight: 700; }

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8% 6%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.92) 0%, rgba(255, 250, 241, 0.66) 36%, rgba(255, 250, 241, 0.05) 70%),
    url("assets/hero-ll-beauty.png") center right / cover no-repeat;
}
.hero-content { width: min(620px, 100%); position: relative; z-index: 2; }

.page-hero {
  padding: 86px 6%;
  background:
    radial-gradient(circle at top right, rgba(199,149,60,.28), transparent 34%),
    linear-gradient(135deg, #fffdf8, #f8e6cc);
  border-bottom: 1px solid var(--border);
}
.page-hero.night {
  background:
    radial-gradient(circle at top right, rgba(199,149,60,.3), transparent 34%),
    linear-gradient(135deg, #17130f, #3a2a1d);
  color: white;
}
.page-hero.night p { color: rgba(255,255,255,.72); }

.eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 14px;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  line-height: 1.04;
}
h1 { font-size: clamp(46px, 7vw, 82px); letter-spacing: -0.04em; }
h2 { font-size: clamp(34px, 4.5vw, 56px); letter-spacing: -0.03em; }
h3 { font-size: 24px; }
p { color: var(--muted); line-height: 1.75; }

.hero-copy, .page-copy {
  font-size: 17px;
  max-width: 660px;
  margin: 22px 0 32px;
  color: #40362d;
}
.page-hero.night .page-copy { color: rgba(255,255,255,.74); }

.hero-buttons, .inline-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.25s;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(159, 116, 40, 0.26);
}
.btn.primary:hover { transform: translateY(-2px); }
.btn.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  color: var(--black);
}
.btn.small { min-height: 42px; padding: 0 18px; }
.btn.full { width: 100%; }

.section { padding: 86px 6%; }
.section-label {
  color: var(--gold-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  background: linear-gradient(135deg, #fffdf8, #faead2);
  box-shadow: var(--shadow);
}
.story-grid p:first-child { margin-top: 0; }

.feature-row {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(36, 25, 12, 0.06);
}
.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-weight: 700;
}
.feature-card h3 { font-size: 22px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.view-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.soft-section {
  background: linear-gradient(135deg, rgba(243, 221, 180, 0.35), rgba(255, 250, 241, 0.8));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(36, 25, 12, 0.07);
  transition: 0.25s;
}
.product-card:hover { transform: translateY(-5px); }

.product-image {
  height: 330px;
  background: #fffaf1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
}
.product-bottle {
  width: 72px;
  height: 174px;
  border-radius: 22px 22px 12px 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.45), transparent 22%, rgba(0,0,0,.12) 48%, rgba(255,255,255,.4) 76%),
    var(--shade);
  position: relative;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.55), 0 18px 38px rgba(0,0,0,.16);
}
.product-bottle::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -58px;
  height: 72px;
  border-radius: 22px 22px 7px 7px;
  background: linear-gradient(90deg, #a86f18, #ffd789, #a46d18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.product-bottle::after {
  content: "L&L";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 223, 148, 0.95);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}
.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  color: var(--black);
  cursor: pointer;
  font-size: 20px;
}
.wishlist-btn.active { background: var(--black); color: var(--gold-soft); }
.product-body { padding: 18px; }
.product-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}
.product-category {
  color: var(--gold-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.price { font-weight: 700; }
.add-btn {
  border: none;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  border: 1px solid var(--border);
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
}
.filter-btn.active { background: var(--black); color: var(--gold-soft); }

.shade-section, .shade-page-content {
  background: var(--black);
  color: var(--white);
}
.shade-section p, .shade-page-content p { color: rgba(255,255,255,.72); }
.centered { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.section-intro { margin-left: auto; margin-right: auto; }
.shade-finder {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 22px;
}
.shade-panel, .shade-result {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(243, 221, 180, 0.22);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(12px);
}
.shade-panel h3, .shade-result h3 { color: var(--white); font-size: 24px; margin-bottom: 18px; }
.tone-options, .skin-options { display: flex; flex-wrap: wrap; gap: 10px; }
.tone-options button, .skin-options button {
  border: 1px solid rgba(243,221,180,.28);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 16px;
  padding: 10px 13px;
  cursor: pointer;
}
.tone-options button span {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto 7px;
  border: 2px solid rgba(255,255,255,.4);
}
.tone-options button.selected, .skin-options button.selected {
  background: var(--gold);
  color: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(36,25,12,.07);
}
.blog-img { height: 210px; }
.gradient-one { background: radial-gradient(circle at 30% 20%, #f3ddb4, #d69d61, #8f5635); }
.gradient-two { background: linear-gradient(135deg, #fff6e8, #c7953c, #1d1712); }
.gradient-three { background: radial-gradient(circle, #f8dbc0, #bd7d52, #5a3420); }
.blog-body { padding: 22px; }
.blog-body span {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1em;
}
.blog-body h3 { font-size: 24px; margin-top: 8px; }

.article-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}
.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.faq-section { background: var(--beige); }
.faq-list { max-width: 900px; margin: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
}
.faq-item p { display: none; margin: 0; padding: 0 20px 20px; }
.faq-item.open p { display: block; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf8, #faead2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-info { display: grid; gap: 10px; color: var(--dark); margin-top: 22px; font-weight: 500; }
.contact-form, .checkout-form { display: grid; gap: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255,255,255,.78);
  color: var(--black);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 30px;
  align-items: start;
}
.checkout-box, .order-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr 1.1fr;
  gap: 36px;
  padding: 58px 6% 30px;
  background: var(--black);
  color: var(--white);
}
.footer p, .footer a { color: rgba(255,255,255,.68); }
.footer a { display: block; margin: 9px 0; }
.footer h4 { color: var(--gold-soft); margin: 0 0 14px; }
.footer .brand-mark { width: 40px; height: 40px; }
.footer .brand-text strong { color: var(--white); }
.subscribe { display: flex; gap: 8px; }
.subscribe button {
  border: none;
  border-radius: 14px;
  background: var(--gold);
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
}

.drawer {
  position: fixed;
  top: 0;
  right: -430px;
  z-index: 100;
  width: min(420px, 92vw);
  height: 100vh;
  background: var(--cream);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  padding: 24px;
  transition: 0.32s;
  display: flex;
  flex-direction: column;
}
.drawer.open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; }
.close-drawer { border: none; background: transparent; font-size: 30px; cursor: pointer; }
.drawer-items { flex: 1; overflow-y: auto; display: grid; gap: 12px; padding: 20px 0; }
.drawer-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
}
.mini-product {
  width: 34px;
  height: 52px;
  border-radius: 12px;
  background: var(--shade);
  position: relative;
  margin: auto;
}
.mini-product::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -18px;
  height: 22px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(90deg, #a86f18, #ffd789, #a46d18);
}
.drawer-item h4 { margin: 0; font-size: 14px; }
.drawer-item p { margin: 3px 0 0; font-size: 13px; }
.remove-btn { border: none; background: transparent; color: var(--gold-dark); cursor: pointer; font-size: 18px; }
.drawer-footer { border-top: 1px solid var(--border); padding-top: 18px; }
.subtotal { display: flex; justify-content: space-between; margin-bottom: 15px; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 90;
  display: none;
}
.drawer-backdrop.open { display: block; }

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .32);
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 106px;
    display: none;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shade-finder, .story-grid, .contact-card, .checkout-layout, .article-layout { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 4%; }
  .brand-text { display: none; }
  .hero {
    min-height: 760px;
    align-items: end;
    padding: 110px 5% 54px;
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.1) 0%, rgba(255, 250, 241, 0.88) 58%, rgba(255, 250, 241, 1) 100%),
      url("assets/hero-ll-beauty.png") center / cover no-repeat;
  }
  .section, .page-hero { padding: 62px 5%; }
  .story-grid, .contact-card { padding: 30px; }
  .feature-row, .products-grid, .blog-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .header-actions { gap: 5px; }
  .icon-btn { padding: 8px 9px; }
  .footer { grid-template-columns: 1fr; }
  h1 { font-size: 44px; }
}


/* ===========================
   EXTRA MOBILE-FRIENDLY UPDATES
   =========================== */

img, video {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

.site-header {
  min-height: 76px;
}

.nav a {
  padding: 4px 0;
}

.product-card,
.blog-card,
.feature-card,
.article-card,
.checkout-box,
.order-summary,
.contact-card,
.story-grid,
.shade-panel,
.shade-result {
  min-width: 0;
}

/* Better tablet layout */
@media (max-width: 1200px) {
  .nav {
    gap: 15px;
    font-size: 13px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Large mobile and tablet */
@media (max-width: 900px) {
  .announcement {
    font-size: 11px;
    line-height: 1.5;
    padding: 9px 12px;
  }

  .site-header {
    padding: 12px 5%;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 29px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .menu-btn {
    display: block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 250, 241, 0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .nav a:hover,
  .nav a.active {
    background: var(--beige);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
    padding: 120px 5% 48px;
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.05) 0%, rgba(255, 250, 241, 0.45) 42%, rgba(255, 250, 241, 0.98) 78%, #fffaf1 100%),
      url("assets/hero-ll-beauty.png") center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 250, 241, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(199,149,60,.18);
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-copy,
  .page-copy {
    font-size: 15px;
    margin: 18px 0 24px;
  }

  .section,
  .page-hero {
    padding: 58px 5%;
  }

  .story-grid,
  .contact-card,
  .checkout-layout,
  .article-layout,
  .shade-finder {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-grid,
  .contact-card,
  .checkout-box,
  .order-summary,
  .article-card {
    padding: 26px;
  }

  .feature-row,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-image {
    height: 220px;
  }

  .product-body {
    padding: 15px;
  }

  .product-body h3 {
    font-size: 15px;
  }

  .product-body p {
    font-size: 13px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .tone-options,
  .skin-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tone-options button,
  .skin-options button {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding: 46px 5% 28px;
  }

  .drawer {
    width: min(390px, 94vw);
  }
}

/* Small mobile */
@media (max-width: 560px) {
  .site-header {
    gap: 8px;
  }

  .brand-text {
    display: flex;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-btn {
    font-size: 13px;
    padding: 8px 9px;
  }

  .menu-btn {
    font-size: 24px;
    padding: 4px;
  }

  .nav {
    top: 86px;
    left: 10px;
    right: 10px;
  }

  .hero {
    min-height: 660px;
    padding: 100px 4% 34px;
    background-position: center;
  }

  .hero-content {
    padding: 20px;
    border-radius: 22px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

  .hero-buttons,
  .inline-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .section,
  .page-hero {
    padding: 46px 4%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .product-image {
    height: 240px;
  }

  .feature-card,
  .shade-panel,
  .shade-result,
  .story-grid,
  .contact-card,
  .checkout-box,
  .order-summary,
  .article-card {
    border-radius: 20px;
    padding: 22px;
  }

  .tone-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skin-options {
    grid-template-columns: 1fr;
  }

  .blog-img {
    height: 180px;
  }

  .contact-form,
  .checkout-form {
    gap: 11px;
  }

  input,
  textarea,
  select {
    font-size: 16px; /* prevents zoom on iPhone */
    border-radius: 14px;
  }

  .subscribe {
    flex-direction: column;
  }

  .subscribe button {
    min-height: 45px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .drawer {
    right: -100vw;
    width: 100vw;
    padding: 20px;
  }

  .drawer-item {
    grid-template-columns: 48px 1fr auto;
  }

  .whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
    font-size: 27px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .brand-text {
    display: none;
  }

  .icon-btn {
    padding: 7px 8px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-content {
    padding: 18px;
  }

  .tone-options {
    grid-template-columns: 1fr;
  }
}

.logo-img {
  display: block;
  height: auto;
}
.horizontal-logo {
  width: 170px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 560px) {
  .logo-img {
    width: 115px;
  }
}
.logo-img {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}
.logo-img {
  width: 65px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 560px) {
  .logo-img {
    width: 55px;
  }
}
.product-card {
  overflow: hidden;
}
@media (max-width: 560px) {
  .product-image {
    height: 300px;
  }

  .product-photo {
    padding: 18px;
  }
}
.page-hero {
  padding: 40px 6% 30px;
}

.page-hero + .section {
  padding-top: 20px;
}

@media (max-width: 560px) {
  .page-hero {
    padding: 30px 4% 24px;
  }

  .page-hero + .section {
    padding-top: 18px;
  }
}

.product-photo {
  transition: opacity 0.25s ease;
}

.product-card:hover .product-photo {
  opacity: 0.95;
}

.product-photo {
  transition: opacity 0.25s ease;
}

.product-image {
  cursor: pointer;
}

.mobile-image-hint {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-photo {
    opacity: 0.95;
  }
}

@media (max-width: 768px) {
  .mobile-image-hint {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: inline-block;
    background: rgba(255, 250, 241, 0.85);
    color: var(--gold-dark);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(8px);
  }
}
.ai-shade-box {
  align-items: start;
}

.ai-shade-result {
  overflow: hidden;
}

.ai-shade-cards {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.enhanced-shade-card {
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.28);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.shade-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blush-color-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-block;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.shade-card-top strong {
  display: block;
  color: var(--black);
  font-size: 17px;
  margin-bottom: 2px;
}

.shade-card-top small {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.enhanced-shade-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.shade-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn.tiny {
  padding: 9px 16px;
  font-size: 12px;
  border-radius: 999px;
}

.shade-card-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  min-width: 120px;
}

@media (max-width: 560px) {
  .enhanced-shade-card {
    padding: 15px;
  }

  .blush-color-dot {
    width: 40px;
    height: 40px;
  }

  .shade-card-actions {
    flex-direction: column;
  }

  .shade-card-actions .btn {
    width: 100%;
  }
}

.ai-shade-section .centered {
  margin-bottom: 60px;
}

.ai-shade-box {
  margin-top: 20px;
}

.ai-shade-form h3 {
  margin-bottom: 22px;
}

.ai-shade-form label {
  margin-top: 10px;
  margin-bottom: 22px;
}

.ai-shade-form select {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .ai-shade-section .centered {
    margin-bottom: 40px;
  }

  .ai-shade-box {
    margin-top: 10px;
  }
}
.ai-shade-form label {
  margin-bottom: 45px;
}

.ai-shade-form .btn.full {
  margin-top: 12px;
}

/* Mobile friendly shade finder */
@media (max-width: 768px) {
  .page-hero {
    padding: 45px 5% 35px;
  }

  .page-hero h1,
  .ai-shade-section h2 {
    font-size: 38px;
    line-height: 1.05;
    text-align: center;
  }

  .page-copy,
  .section-intro {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    text-align: center;
  }

  .ai-shade-section {
    padding: 45px 5%;
  }

  .ai-shade-section .centered {
    margin-bottom: 35px;
  }

  .ai-shade-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
  }

  .ai-shade-form,
  .ai-shade-result {
    width: 100%;
    padding: 22px;
    border-radius: 22px;
  }

  .ai-shade-form h3,
  .ai-shade-result h3 {
    font-size: 25px;
    line-height: 1.2;
  }

  .ai-shade-form label {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .ai-shade-form select {
    width: 100%;
    height: 56px;
    font-size: 15px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .ai-shade-form .btn.full {
    width: 100%;
    height: 56px;
    font-size: 15px;
    margin-top: 8px;
  }

  .ai-shade-cards {
    gap: 14px;
  }

  .ai-shade-card,
  .enhanced-shade-card {
    padding: 16px;
    border-radius: 18px;
  }

  .shade-card-top {
    align-items: flex-start;
  }

  .blush-color-dot {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .shade-card-actions {
    flex-direction: column;
    gap: 9px;
  }

  .shade-card-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-hero h1,
  .ai-shade-section h2 {
    font-size: 32px;
  }

  .ai-shade-form h3,
  .ai-shade-result h3 {
    font-size: 22px;
  }

  .ai-shade-form,
  .ai-shade-result {
    padding: 18px;
  }

  .ai-shade-section {
    padding: 38px 4%;
  }

  .page-copy,
  .section-intro,
  .ai-shade-card p,
  .enhanced-shade-card p {
    font-size: 14px;
  }

  .whatsapp {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }
}

.social-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-buttons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.35);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.25s ease;
}

.social-buttons a:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(199, 149, 60, 0.25);
}

@media (max-width: 560px) {
  .social-buttons {
    justify-content: flex-start;
    gap: 10px;
  }

  .social-buttons a {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(243, 221, 180, 0.18);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* Smooth website feeling */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Animated announcement bar */
.announcement {
  background: linear-gradient(90deg, #050505, #b88425, #050505);
  background-size: 250% 250%;
  animation: announcementGlow 6s ease infinite;
}

@keyframes announcementGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Premium button hover */
.btn,
.add-btn,
.subscribe button {
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.btn:hover,
.add-btn:hover,
.subscribe button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(199, 149, 60, 0.25);
}

/* Product cards more attractive */
.product-card {
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-card:hover .product-photo {
  transform: scale(1.04);
}

.product-photo {
  transition: 0.35s ease;
}

/* Soft reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.7s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Toast message */
.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(30px);
  background: #050505;
  color: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.45);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.site-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Premium section spacing */
.section {
  position: relative;
}

.section-heading h2,
.centered h2,
.page-hero h1 {
  letter-spacing: -0.5px;
}

/* More dynamic shade cards */
.enhanced-shade-card,
.ai-shade-card {
  transition: 0.25s ease;
}

.enhanced-shade-card:hover,
.ai-shade-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* Mobile improvements */
@media (max-width: 768px) {
  .product-card:hover {
    transform: none;
  }

  .btn:hover,
  .add-btn:hover,
  .subscribe button:hover {
    transform: none;
  }

  .site-toast {
    width: calc(100% - 40px);
    text-align: center;
    bottom: 20px;
  }
}

.policy-note {
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.35);
  border-radius: 18px;
  padding: 18px;
  margin-top: 20px;
}

.policy-note strong {
  display: block;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.policy-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Extra mobile dynamic improvements */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* Header better on mobile */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 250, 241, 0.92);
  }

  .announcement {
    font-size: 12px;
    padding: 9px 10px;
    text-align: center;
  }

  /* Mobile menu smoother */
  .nav {
    transition: 0.3s ease;
  }

  .nav.open {
    animation: mobileMenuDrop 0.3s ease;
  }

  @keyframes mobileMenuDrop {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Product cards mobile */
  .product-card {
    border-radius: 24px;
    overflow: hidden;
    transition: 0.25s ease;
  }

  .product-card:active {
    transform: scale(0.98);
  }

  .product-image {
    height: 310px;
  }

  .product-photo {
    transition: 0.35s ease;
  }

  .product-card:active .product-photo {
    transform: scale(1.03);
  }

  .product-body {
    padding: 18px;
  }

  .product-body h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .product-body p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Buttons tap effect */
  .btn,
  .add-btn,
  .icon-btn,
  .wishlist-btn,
  .subscribe button {
    transition: 0.2s ease;
  }

  .btn:active,
  .add-btn:active,
  .icon-btn:active,
  .wishlist-btn:active,
  .subscribe button:active {
    transform: scale(0.96);
  }

  /* Shade assistant mobile */
  .ai-shade-box {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ai-shade-form,
  .ai-shade-result {
    padding: 22px;
    border-radius: 24px;
  }

  .ai-shade-form select {
    height: 56px;
    border-radius: 18px;
    font-size: 15px;
  }

  .ai-shade-form .btn.full {
    height: 56px;
    border-radius: 999px;
  }

  .enhanced-shade-card,
  .ai-shade-card {
    border-radius: 20px;
    padding: 16px;
    transition: 0.25s ease;
  }

  .enhanced-shade-card:active,
  .ai-shade-card:active {
    transform: scale(0.98);
  }

  .shade-card-actions {
    flex-direction: column;
  }

  .shade-card-actions .btn {
    width: 100%;
  }

  /* Footer social icons mobile */
  .social-buttons {
    gap: 10px;
    margin-top: 16px;
  }

  .social-buttons a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .social-buttons a:active {
    transform: scale(0.92);
  }

  /* Cart / wishlist drawer mobile */
  .drawer {
    width: 92%;
    max-width: 420px;
  }

  .drawer-item {
    border-radius: 18px;
  }

  .cart-product-img {
    width: 62px;
    height: 82px;
  }

  /* Toast mobile */
  .site-toast {
    width: calc(100% - 36px);
    max-width: 360px;
    bottom: 18px;
    text-align: center;
    font-size: 13px;
    padding: 13px 18px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 38px 5% 30px;
  }

  .page-hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .page-copy,
  .section-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .section {
    padding: 45px 5%;
  }

  .section-heading h2,
  .centered h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .product-grid {
    gap: 20px;
  }

  .product-image {
    height: 285px;
  }

  .ai-shade-form,
  .ai-shade-result {
    padding: 18px;
  }

  .ai-shade-form h3,
  .ai-shade-result h3 {
    font-size: 23px;
  }

  .blush-color-dot {
    width: 40px;
    height: 40px;
  }

  .footer {
    gap: 28px;
  }

  .footer-bottom {
    text-align: left;
  }
}
.discount-subscribe {
  margin-top: 16px;
}

.subscribe-discount-message {
  margin: 10px 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-discount-message.success {
  color: #f3ddb4;
  font-weight: 600;
}

.subscribe-discount-message.error {
  color: #ffb6b6;
  font-weight: 600;
}

.subscribe-text {
  margin: 22px 0 10px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.discount-subscribe {
  margin-top: 10px;
}

.subscribe-discount-message {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-discount-message.success {
  color: #f3ddb4;
  font-weight: 600;
}

.subscribe-discount-message.error {
  color: #ffb6b6;
  font-weight: 600;
}

.old-total {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 13px;
  margin-right: 8px;
  font-weight: 400;
}

.discount-note {
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.35);
  color: var(--gold-dark);
  border-radius: 14px;
  padding: 12px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-discount-note {
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.35);
  color: var(--gold-dark);
  border-radius: 16px;
  padding: 14px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}

.subscribe-discount-message.success {
  color: #f3ddb4;
  font-weight: 600;
}

.subscribe-discount-message.error {
  color: #ffb6b6;
  font-weight: 600;
}

.subscribe-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 3000;
}

.subscribe-popup.show {
  display: flex;
}

.subscribe-popup-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(135deg, #fffaf1, #f6ead9);
  border: 1px solid rgba(199, 149, 60, 0.45);
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  animation: popupEnter 0.35s ease;
}

@keyframes popupEnter {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.subscribe-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #050505;
  color: #fffaf1;
  font-size: 22px;
  cursor: pointer;
}

.subscribe-popup-box h2 {
  margin: 8px 0 12px;
  font-size: 42px;
}

.subscribe-popup-box p {
  color: var(--muted);
  line-height: 1.6;
}

.popup-subscribe {
  margin-top: 20px;
}

.popup-subscribe input {
  background: white;
}

.popup-no-thanks {
  margin-top: 16px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.popup-no-thanks:hover {
  color: var(--gold-dark);
}

@media (max-width: 560px) {
  .subscribe-popup {
    align-items: flex-end;
    padding: 14px;
  }

  .subscribe-popup-box {
    max-width: 100%;
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .subscribe-popup-box h2 {
    font-size: 34px;
  }

  .popup-subscribe {
    display: grid;
    gap: 10px;
  }

  .popup-subscribe input,
  .popup-subscribe button {
    width: 100%;
  }
}

.payment-methods {
  margin-top: 24px;
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.35);
  border-radius: 20px;
  padding: 20px;
}

.payment-methods h3 {
  margin-bottom: 16px;
  color: var(--black);
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.payment-option:hover {
  border-color: rgba(199, 149, 60, 0.6);
  transform: translateY(-2px);
}

.payment-option input {
  margin-top: 5px;
  accent-color: var(--gold-dark);
}

.payment-option strong {
  display: block;
  color: var(--black);
  margin-bottom: 4px;
}

.payment-option small {
  color: var(--muted);
  line-height: 1.5;
}

.whish-note {
  display: none;
  background: #111;
  color: #fffaf1;
  border-radius: 16px;
  padding: 16px;
  margin-top: 14px;
}

.whish-note strong {
  display: block;
  color: #f3ddb4;
  margin-bottom: 8px;
}

.whish-note p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.whish-note b {
  color: #fff;
}

@media (max-width: 560px) {
  .payment-methods {
    padding: 16px;
    border-radius: 18px;
  }

  .payment-option {
    padding: 13px;
    border-radius: 14px;
  }

  .payment-option:hover {
    transform: none;
  }

  .whish-note {
    padding: 14px;
    border-radius: 14px;
  }
}

.checkout-message {
  display: none;
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.checkout-message.success {
  display: block;
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.45);
  color: #8a641d;
  font-weight: 600;
}

.checkout-message.error {
  display: block;
  background: #ffecec;
  border: 1px solid #ffb6b6;
  color: #b00020;
  font-weight: 600;
}

.nav a {
  color: #d4a84a;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #f3d27a;
}

.nav a.active::after {
  background: #d4a84a;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: transparent;
  border: 1px solid rgba(212, 168, 74, 0.45);
  color: #d4a84a;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.icon-btn:hover {
  background: rgba(212, 168, 74, 0.08);
  color: #f3d27a;
}

.menu-btn {
  background: transparent;
  border: none;
  color: #d4a84a;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px 18px;
  }

  .horizontal-logo {
    width: 120px;
  }

  .nav {
    background: #000;
  }

  .nav a {
    color: #d4a84a;
  }

  .icon-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .menu-btn {
    font-size: 26px;
  }
}

/* Bigger logo on desktop and mobile */
.logo-img,
.horizontal-logo,
.brand img {
  width: 210px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

/* Header logo spacing */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Desktop header height */
.site-header {
  min-height: 110px;
}

/* Mobile version */
@media (max-width: 768px) {
  .site-header {
    background: #000 !important;
    min-height: 95px;
    padding: 16px 18px;
  }

  .logo-img,
  .horizontal-logo,
  .brand img {
    width: 185px !important;
    height: auto !important;
  }
}

/* Very small phones */
@media (max-width: 430px) {
  .logo-img,
  .horizontal-logo,
  .brand img {
    width: 165px !important;
  }
}

.product-details {
  margin: 18px 0 4px;
  display: grid;
  gap: 10px;
}

.product-details details {
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 14px;
  background: #fffaf1;
  padding: 12px 14px;
}

.product-details summary {
  cursor: pointer;
  font-weight: 700;
  color: #9b741f;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.product-details ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #6d6256;
  font-size: 13px;
  line-height: 1.7;
}

.product-details p {
  margin: 10px 0 0;
  color: #6d6256;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .product-details {
    margin-top: 14px;
  }

  .product-details details {
    padding: 11px 12px;
  }

  .product-details summary {
    font-size: 13px;
  }

  .product-details ul,
  .product-details p {
    font-size: 12.5px;
  }
}

.product-image-link {
  text-decoration: none;
  color: inherit;
}

.product-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 70px 8%;
  background: linear-gradient(135deg, #fffaf1, #f7efe3);
}

.product-detail-gallery {
  background: white;
  border: 1px solid rgba(199, 149, 60, 0.22);
  border-radius: 28px;
  padding: 30px;
}

.product-detail-main-img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.product-detail-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.product-detail-thumbs button {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(199, 149, 60, 0.3);
  border-radius: 14px;
  background: #fffaf1;
  padding: 6px;
  cursor: pointer;
}

.product-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-info {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(199, 149, 60, 0.22);
  border-radius: 28px;
  padding: 34px;
}

.product-detail-info h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 62px);
  margin: 10px 0;
}

.product-detail-price {
  font-size: 26px;
  font-weight: 700;
  color: #b88425;
  margin-bottom: 18px;
}

.product-detail-copy {
  color: #6d6256;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-info-grid {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.product-info-grid div {
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 16px;
  padding: 14px;
}

.product-info-grid strong {
  display: block;
  color: #9b741f;
  margin-bottom: 5px;
}

.product-info-grid span {
  color: #6d6256;
  line-height: 1.6;
}

.product-detail-accordion {
  display: grid;
  gap: 12px;
}

.product-detail-accordion details {
  background: #fff;
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 16px;
  padding: 16px;
}

.product-detail-accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: #111;
}

.product-detail-accordion ul,
.product-detail-accordion p {
  margin-top: 12px;
  color: #6d6256;
  line-height: 1.8;
}

.product-reviews-section {
  padding: 60px 8%;
  background: #fffaf1;
}

.product-reviews-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 24px;
}

.review-card,
.no-reviews {
  background: white;
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 16px;
}

.review-stars {
  color: #b88425;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.review-card h4 {
  margin-bottom: 8px;
}

.review-card p,
.no-reviews {
  color: #6d6256;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .product-detail-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 25px;
  }

  .product-detail-main-img {
    height: 380px;
  }

  .product-detail-info {
    padding: 24px;
  }

  .product-reviews-section {
    padding: 40px 20px;
  }
}

.checkout-fees-box {
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.28);
  border-radius: 16px;
  padding: 14px;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.checkout-fees-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6d6256;
  font-size: 14px;
}

.checkout-fees-box strong {
  color: #111;
  font-weight: 700;
}

.checkout-form textarea#customerAddress {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

.product-detail-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-wishlist-btn {
  width: 100%;
  border: 1px solid rgba(199, 149, 60, 0.45);
  background: #fffaf1;
  color: #9b741f;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.detail-wishlist-btn:hover {
  background: #f3ddb4;
  transform: translateY(-2px);
}

.detail-wishlist-btn.active {
  background: #111;
  color: #fffaf1;
  border-color: #111;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.reviews-header span {
  background: #111;
  color: #fffaf1;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.review-form-box {
  background: white;
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
}

.review-form-box h3 {
  margin-bottom: 16px;
  color: #111;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(199, 149, 60, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  background: #fffaf1;
  color: #111;
}

.review-form textarea {
  resize: vertical;
  line-height: 1.7;
}

.review-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.review-message.success {
  display: block;
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.45);
  color: #8a641d;
  font-weight: 600;
}

.review-message.error {
  display: block;
  background: #ffecec;
  border: 1px solid #ffb6b6;
  color: #b00020;
  font-weight: 600;
}

.reviews-list {
  display: grid;
  gap: 16px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-card-top small {
  color: #8d8274;
  font-size: 12px;
}

@media (max-width: 768px) {
  .reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-form-box {
    padding: 18px;
  }
}
.product-detail-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-wishlist-btn {
  width: 100%;
  border: 1px solid rgba(199, 149, 60, 0.45);
  background: #fffaf1;
  color: #9b741f;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.detail-wishlist-btn:hover {
  background: #f3ddb4;
  transform: translateY(-2px);
}

.detail-wishlist-btn.active {
  background: #111;
  color: #fffaf1;
  border-color: #111;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.reviews-header span {
  background: #111;
  color: #fffaf1;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.review-form-box {
  background: white;
  border: 1px solid rgba(199, 149, 60, 0.25);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
}

.review-form-box h3 {
  margin-bottom: 16px;
  color: #111;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(199, 149, 60, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  background: #fffaf1;
  color: #111;
}

.review-form textarea {
  resize: vertical;
  line-height: 1.7;
}

.review-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.review-message.success {
  display: block;
  background: #fffaf1;
  border: 1px solid rgba(199, 149, 60, 0.45);
  color: #8a641d;
  font-weight: 600;
}

.review-message.error {
  display: block;
  background: #ffecec;
  border: 1px solid #ffb6b6;
  color: #b00020;
  font-weight: 600;
}

.reviews-list {
  display: grid;
  gap: 16px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-card-top small {
  color: #8d8274;
  font-size: 12px;
}

@media (max-width: 768px) {
  .reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-form-box {
    padding: 18px;
  }
}