/* ═══════════════════════════════════════════════
   Nario Llarias — Main Stylesheet v1.0
   ═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --black:      #0d0d0d;
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --cream:      #f5f0e8;
  --white:      #fafaf8;
  --gray:       #8a8a8a;
  --gray-light: #e8e8e5;
  --shopee-red: #ee4d2d;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Noto Sans Thai', sans-serif;

  --header-h: 68px;
  --max-w:    1200px;
  --radius:   0px;          /* brand uses sharp corners */
  --transition: 0.25s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ─── UTILITIES ─── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 80px 0; }
.two-col     { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.three-col   { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.text-center { text-align: center; }
.bg-black    { background: var(--black); color: var(--white); }
.bg-cream    { background: var(--cream); }
.bg-white    { background: var(--white); }
.label-tag   {
  font-family: var(--font-body); font-size: 10px; letter-spacing: 4px;
  color: var(--gold); font-weight: 300; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; font-style: italic; line-height: 1.2; margin-bottom: 20px;
}
.body-text { font-family: var(--font-body); font-size: 14px; line-height: 1.9; color: #555; font-weight: 300; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(13,13,13,0.95);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  backdrop-filter: blur(12px);
}
.site-header.transparent { background: transparent; }

.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  text-decoration: none;
}
.logo-img { height: 44px; width: 44px; object-fit: cover; border-radius: 2px; background: #fff; }
.logo-text { line-height: 1.1; }
.logo-name {
  display: block; font-family: var(--font-display); font-size: 15px;
  font-weight: 500; letter-spacing: 2px; color: var(--white);
}
.logo-sub {
  display: block; font-family: var(--font-body); font-size: 9px;
  letter-spacing: 4px; color: var(--gold); font-weight: 300;
}
.site-header.cream .logo-name { color: var(--black); }

/* Primary nav */
.nav-list { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-list li a {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.8); text-transform: uppercase; font-weight: 400;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-list li a:hover,
.nav-list li.current-menu-item > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Header controls */
.header-controls { display: flex; align-items: center; gap: 16px; }

/* Language switcher (Polylang) */
.lang-switcher { display: flex; gap: 8px; }
.lang-switcher a {
  font-family: var(--font-body); font-size: 10px; letter-spacing: 2px;
  color: var(--gold); border: 1px solid var(--gold); padding: 4px 10px;
  transition: all var(--transition);
}
.lang-switcher a:hover,
.lang-switcher a.current-lang { background: var(--gold); color: var(--black); }

/* Cart */
.cart-btn { position: relative; color: rgba(255,255,255,0.8); display: flex; align-items: center; }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--black);
  font-size: 9px; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px; background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  inset: 0; z-index: 999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute; top: 20px; right: 24px; color: var(--gold); font-size: 24px;
}
.mobile-nav-list { list-style: none; text-align: center; }
.mobile-nav-list li { margin-bottom: 8px; }
.mobile-nav-list li a {
  font-family: var(--font-display); font-size: 32px; color: var(--white);
  font-style: italic; letter-spacing: 2px;
  transition: color var(--transition);
}
.mobile-nav-list li a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 11px; letter-spacing: 3px; font-weight: 500;
  padding: 14px 36px; text-transform: uppercase; transition: all var(--transition);
}
.btn--gold {
  background: var(--gold); color: var(--black);
}
.btn--gold:hover { background: var(--gold-light); }
.btn--black {
  background: var(--black); color: var(--white);
}
.btn--black:hover { background: var(--gold); color: var(--black); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* Shopee button */
.btn-shopee {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--shopee-red); color: #fff;
  padding: 12px 24px; font-family: var(--font-body);
  font-size: 12px; letter-spacing: 1.5px; font-weight: 500;
  transition: opacity var(--transition);
}
.btn-shopee:hover { opacity: 0.85; }
.btn-shopee--small { padding: 8px 16px; font-size: 11px; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; background: #0d0d0d;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__bg-img {
  position: absolute; inset: 0;
  background: var(--hero-bg) center top / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.45);
}
.hero__content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding-top: var(--header-h);
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; color: var(--white);
  line-height: 1.05; margin-bottom: 12px; font-style: italic;
}
.hero__heading span { color: var(--gold); }
.hero__sub {
  font-family: var(--font-body); font-size: 14px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6); max-width: 400px;
  line-height: 1.8; margin-bottom: 40px; font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 9px; letter-spacing: 3px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
}

/* ════════════════════════════════════════
   BRAND BAR
   ════════════════════════════════════════ */
.brand-bar {
  background: var(--black); padding: 18px 40px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.brand-bar__tag {
  font-family: var(--font-body); font-size: 9px; letter-spacing: 3px;
  color: rgba(201,169,110,0.7); font-weight: 300;
}

/* ════════════════════════════════════════
   FEATURE PRODUCT (homepage)
   ════════════════════════════════════════ */
.feature-product { padding: 100px 0; }
.feature-product__name {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; font-style: italic; line-height: 1.15; margin-bottom: 20px;
}
.feature-product__name span { color: var(--gold); }
.feature-product__desc {
  font-family: var(--font-body); font-size: 14px; line-height: 1.9;
  color: #555; font-weight: 300; margin-bottom: 24px;
}
.feature-product__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.feature-product__img {
  aspect-ratio: 4/5; background: linear-gradient(135deg, #ede8f5, #ddd0ee);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-product-img { width: 85%; height: 85%; object-fit: contain; }
.product-price { font-family: var(--font-display); font-size: 28px; color: var(--gold); font-weight: 300; }

/* ════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  text-align: left; margin-bottom: 48px;
}
.section-footer-link { text-align: center; margin-top: 48px; }
.view-all-link {
  font-family: var(--font-body); font-size: 10px; letter-spacing: 3px;
  color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 4px;
}

/* ════════════════════════════════════════
   PRODUCTS GRID
   ════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

/* Product card */
.product-card {
  background: var(--white); overflow: hidden;
  transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.product-card__img-wrap {
  display: block; aspect-ratio: 4/3; overflow: hidden;
  position: relative; background: #f8f5f0;
}
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card__img-wrap:hover .product-card__img { transform: scale(1.03); }
.product-card__img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f0ebe0, #e5ddd0);
  font-size: 9px; letter-spacing: 3px; color: #bbb; font-family: var(--font-body);
}
.product-card__hover-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background var(--transition);
}
.product-card:hover .product-card__hover-bar { background: var(--gold); }
.product-card__body { padding: 20px; }
.product-card__cat { margin-bottom: 6px; }
.product-card__name {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  font-style: italic; line-height: 1.3; margin-bottom: 6px;
}
.product-card__name a { color: var(--black); }
.product-card__name a:hover { color: var(--gold); }
.product-card__tagline { font-size: 11px; color: #888; margin-bottom: 14px; }
.product-card__footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.product-card__price { font-family: var(--font-display); font-size: 20px; color: var(--gold); font-weight: 300; }

/* ════════════════════════════════════════
   BRAND STORY (homepage)
   ════════════════════════════════════════ */
.brand-story { padding: 100px 0; }
.brand-story__heading {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; font-style: italic; margin-bottom: 20px; line-height: 1.2;
}
.brand-story__desc {
  font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.55);
  font-weight: 300; margin-bottom: 32px;
}
.brand-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.brand-stat__num { display: block; font-family: var(--font-display); font-size: 32px; color: var(--gold); font-weight: 300; }
.brand-stat__label { font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.4); }
.brand-story__quote {
  border: 1px solid rgba(201,169,110,0.2); padding: 32px;
}
.brand-story__quote blockquote {
  font-family: var(--font-display); font-size: 20px; font-style: italic;
  color: rgba(255,255,255,0.7); line-height: 1.7;
}
.brand-story__quote cite {
  display: block; margin-top: 20px; font-family: var(--font-body);
  font-size: 10px; letter-spacing: 3px; color: var(--gold); font-style: normal;
}

/* ════════════════════════════════════════
   BENEFIT LIST
   ════════════════════════════════════════ */
.benefit-list { list-style: none; margin-bottom: 28px; }
.benefit-list__item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 13px; color: #333;
  font-weight: 300; margin-bottom: 10px;
}
.benefit-line { width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════
   BEAUTY TIPS (homepage preview)
   ════════════════════════════════════════ */
.tips-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 32px;
}
.tip-card { border-top: 1px solid var(--gray-light); padding-top: 24px; }
.tip-card__meta { font-size: 9px; letter-spacing: 3px; color: var(--gold); margin-bottom: 12px; }
.tip-card__title {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  font-style: italic; margin-bottom: 12px; line-height: 1.3;
}
.tip-card__title a { color: var(--black); }
.tip-card__title a:hover { color: var(--gold); }
.tip-card__excerpt { font-size: 13px; color: #666; line-height: 1.8; font-weight: 300; }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 100px 40px 60px;
  margin-top: var(--header-h);
}
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; font-style: italic; margin-top: 8px;
}
.page-hero__sub {
  margin-top: 16px; font-size: 15px; line-height: 2;
  color: rgba(255,255,255,0.6); font-weight: 300; max-width: 680px; margin-left: auto; margin-right: auto;
}

/* ════════════════════════════════════════
   PRODUCT DETAIL
   ════════════════════════════════════════ */
.product-detail { padding-top: 40px; }
.back-link {
  display: inline-block; font-family: var(--font-body); font-size: 10px;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 40px;
}
.back-link:hover { text-decoration: underline; }
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.product-detail__gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.product-detail__main-img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #f8f5f0; }
.product-detail__img-placeholder {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f0ebe0, #e5ddd0);
  font-size: 11px; letter-spacing: 2px; color: #bbb;
}
.product-detail__thumbs { display: flex; gap: 8px; margin-top: 12px; }
.product-detail__thumb { width: 64px; height: 64px; object-fit: cover; cursor: pointer; border: 1px solid transparent; }
.product-detail__thumb:hover { border-color: var(--gold); }
.product-detail__name {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 300; font-style: italic; line-height: 1.2; margin: 8px 0;
}
.product-detail__tagline { font-size: 13px; color: #888; margin-bottom: 24px; }
.product-detail__desc { font-size: 14px; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 28px; }
.product-detail__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.product-detail__price { font-family: var(--font-display); font-size: 36px; color: var(--gold); font-weight: 300; }
.benefits-label { font-size: 10px; letter-spacing: 3px; color: #888; margin-bottom: 14px; }
.product-detail__meta { font-size: 12px; color: #999; margin-top: 20px; border-top: 1px solid var(--gray-light); padding-top: 16px; }

/* Filter bar */
.filter-bar {
  display: flex; justify-content: center; gap: 8px; padding: 28px 40px; flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-light);
}
.filter-btn {
  font-family: var(--font-body); font-size: 10px; letter-spacing: 2.5px;
  padding: 8px 20px; border: 1px solid var(--gray-light); background: transparent;
  color: var(--gray); cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold); background: var(--gold); color: var(--black);
}

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.info-table tr { border-bottom: 1px solid var(--gray-light); }
.info-table th, .info-table td { padding: 12px 0; font-size: 13px; font-weight: 300; text-align: left; }
.info-table th { color: #aaa; min-width: 120px; letter-spacing: 1px; font-weight: 400; }
.info-table td { color: #333; }
.cert-box {
  border: 1px solid var(--gold); padding: 20px 24px;
  font-size: 11px; line-height: 2; color: #666; margin-top: 20px;
}
.commitment-strip { margin-top: 0; }

/* ════════════════════════════════════════
   BEAUTY TIPS (archive page)
   ════════════════════════════════════════ */
.tip-article {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: center;
  border-top: 1px solid var(--gray-light); padding: 48px 0;
}
.tip-article--rtl { grid-template-columns: 2fr 1fr; }
.tip-article--rtl .tip-article__img { order: 2; }
.tip-article--rtl .tip-article__body { order: 1; }
.tip-article__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tip-article__img-placeholder {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f0e8d8, #e0d0c0);
  font-size: 9px; letter-spacing: 2px; color: #bbb;
}
.tip-article__meta { font-size: 9px; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; }
.tip-article__title {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 34px);
  font-weight: 400; font-style: italic; line-height: 1.3; margin-bottom: 16px;
}
.tip-article__title a { color: var(--black); }
.tip-article__title a:hover { color: var(--gold); }
.tip-article__excerpt { font-size: 14px; color: #666; line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.read-more-link {
  font-size: 10px; letter-spacing: 3px; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
}

/* ════════════════════════════════════════
   WHERE TO BUY
   ════════════════════════════════════════ */
.channel-list { display: flex; flex-direction: column; gap: 12px; }
.channel-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 1px solid var(--gray-light);
  transition: border-color var(--transition); color: var(--black);
}
.channel-item:hover { border-color: var(--gold); }
.channel-item__icon { font-size: 24px; }
.channel-item__name { font-size: 13px; font-weight: 500; color: #333; }
.channel-item__handle { font-size: 11px; color: #999; }

.office-card {
  padding: 32px; color: var(--white);
  font-size: 13px; line-height: 2; font-weight: 300; margin-bottom: 2px;
}
.office-card__name { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--gold); margin-bottom: 16px; }
.office-email { color: var(--gold); display: block; }
.office-web { color: #aaa; margin-top: 4px; }

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.nl-form { display: flex; flex-direction: column; gap: 20px; }
.nl-form__input {
  width: 100%; border: none; border-bottom: 1px solid var(--gray-light);
  padding: 12px 0; font-family: var(--font-body); font-size: 13px;
  background: transparent; color: var(--black); outline: none; transition: border-color var(--transition);
}
.nl-form__input:focus { border-bottom-color: var(--gold); }
.nl-form__textarea { resize: vertical; }
.contact-address { font-size: 13px; line-height: 2; color: #555; font-weight: 300; margin-bottom: 24px; }
.contact-email { color: var(--gold); }
.contact-web { color: #999; }
.map-wrap { margin-top: 16px; }

/* CF7 overrides */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--gray-light);
  padding: 12px 0; font-family: var(--font-body); font-size: 13px;
  background: transparent; outline: none; margin-bottom: 16px;
  transition: border-color var(--transition);
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus { border-bottom-color: var(--gold); }
.wpcf7-form .wpcf7-submit {
  background: var(--black); color: var(--white);
  padding: 14px 36px; font-family: var(--font-body);
  font-size: 11px; letter-spacing: 3px; cursor: pointer; border: none;
  transition: background var(--transition);
}
.wpcf7-form .wpcf7-submit:hover { background: var(--gold); color: var(--black); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.45); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 60px 40px 48px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
}
.footer-tagline { font-size: 11px; line-height: 2; margin-top: 16px; max-width: 260px; font-weight: 300; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col__title { font-size: 9px; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; }
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list li a { font-size: 12px; transition: color var(--transition); }
.footer-nav-list li a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 10px; letter-spacing: 1px; }
.footer-gmp { display: flex; align-items: center; gap: 10px; }
.footer-gmp__img { height: 36px; object-fit: contain; }
.footer-gmp span { font-size: 9px; letter-spacing: 2px; color: var(--gold); }
.gmp-badge { height: 40px; object-fit: contain; }

/* WooCommerce pagination */
.woo-pagination, .pagination { text-align: center; margin-top: 48px; }
.woo-pagination .page-numbers, .pagination .page-numbers {
  display: inline-block; padding: 8px 14px; border: 1px solid var(--gray-light);
  margin: 0 4px; font-size: 12px; transition: all var(--transition); color: var(--black);
}
.woo-pagination .page-numbers:hover,
.woo-pagination .page-numbers.current,
.pagination .page-numbers.current {
  border-color: var(--gold); background: var(--gold); color: var(--black);
}

/* Related products */
.related-products { margin-top: 0; }
.no-products { text-align: center; padding: 60px; color: var(--gray); font-style: italic; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .two-col { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 56px 0; }

  /* Nav */
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }

  /* Layouts */
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; gap: 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* Hero */
  .hero__content { padding-left: 24px; padding-right: 24px; }
  .hero__heading { font-size: clamp(36px, 8vw, 56px); }
  .hero__actions { flex-direction: column; gap: 12px; }

  /* Brand bar */
  .brand-bar { gap: 16px; padding: 14px 20px; }

  /* Feature product */
  .feature-product { padding: 60px 0; }
  .feature-product__img { aspect-ratio: 3/2; }

  /* Brand story */
  .brand-stats { gap: 24px; }

  /* Beauty tips */
  .tip-article,
  .tip-article--rtl { grid-template-columns: 1fr; gap: 24px; }
  .tip-article--rtl .tip-article__img { order: 0; }
  .tip-article--rtl .tip-article__body { order: 1; }

  /* Page hero */
  .page-hero { padding: 80px 20px 40px; }

  /* Product detail */
  .product-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail__gallery { position: static; }

  /* Section header */
  .section-header--split { flex-direction: column; gap: 12px; }

  /* Where to buy */
  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; padding: 48px 20px 32px; }
  .footer-links { flex-direction: column; gap: 28px; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; padding: 20px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .brand-bar { justify-content: flex-start; }
  .filter-bar { padding: 20px; }
}


/* ════════════════════════════════════════
   PRODUCT GALLERY (Video-first)
   ════════════════════════════════════════ */
.product-detail__gallery { position: sticky; top: 100px; }
.product-detail__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
}
.pd-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.pd-slide.is-active { opacity: 1; pointer-events: auto; }
.pd-slide video,
.pd-slide iframe,
.pd-slide__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pd-slide__badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(13,13,13,0.85);
  color: var(--gold);
  font-size: 10px; letter-spacing: 2px;
  padding: 6px 10px;
  font-weight: 500;
}

.product-detail__thumbs {
  display: flex; gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pd-thumb {
  flex: 0 0 72px;
  width: 72px; height: 72px;
  background: var(--cream);
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition);
  overflow: hidden;
}
.pd-thumb.is-active { border-color: var(--gold); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  color: var(--gold);
  font-size: 20px;
}

/* ════════════════════════════════════════
   COLOR SWATCHES
   ════════════════════════════════════════ */
.product-detail__swatches { margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.swatches-label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
  font-weight: 500;
}
.swatches-selected { color: var(--black); margin-left: 8px; font-weight: 500; }
.swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 44px; height: 44px;
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { border-color: var(--black); }
.swatch__dot {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--swatch-hex, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

/* ════════════════════════════════════════
   MULTI-CHANNEL SHOP BUTTONS
   ════════════════════════════════════════ */
.shop-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: filter var(--transition), transform var(--transition);
}
.shop-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.shop-btn__label { opacity: 0.7; font-size: 10px; letter-spacing: 3px; }
.shop-btn__name { font-weight: 600; letter-spacing: 1px; }

.shop-btn--shopee  { background: #ee4d2d; }
.shop-btn--lazada  { background: linear-gradient(135deg, #0f136d 0%, #ff0082 100%); }
.shop-btn--tiktok  { background: #000; border: 1px solid #fe2c55; color: #fe2c55; }
.shop-btn--tiktok .shop-btn__label { color: #25f4ee; opacity: 1; }
.shop-btn--line    { background: #06c755; }
.shop-btn--web     { background: var(--black); }

/* Stack horizontally on wider info columns */
@media (min-width: 768px) {
  .shop-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .shop-btn--web { grid-column: 1 / -1; }
}
