:root{
  --bg: #fbf6ee;
  --surface: #fffdf9;
  --text: #1b1b1b;
  --muted: #6b6b6b;
  --gold: #b9852a;
  --gold-2: #d6b36a;
  --line: rgba(27,27,27,.10);
  --shadow: 0 12px 35px rgba(0,0,0,.08);
  --radius: 16px;
  --radius-sm: 12px;
  --space-gutter: clamp(14px, 2.4vw, 40px);
  --container: 1120px;
  --container-wide: 1280px;
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-title: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-display: "Great Vibes", cursive;
  --text-base: 16px;
  --leading-body: 1.65;
  --leading-title: 1.22;
  --tracking-title: 0.015em;
}

*{ box-sizing:border-box }
html{
  scroll-behavior:smooth;
}
html,body{ height:100% }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:var(--text-base);
  line-height:var(--leading-body);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background: radial-gradient(1200px 800px at 15% 0%, rgba(214,179,106,.18), transparent 55%),
              radial-gradient(1200px 800px at 90% 10%, rgba(185,133,42,.14), transparent 55%),
              var(--bg);
}

a{ color:inherit; text-decoration:none }
img{
  max-width:100%;
  height:auto;
  display:block;
}
img[loading="lazy"]{
  content-visibility:auto;
}

/* Lazy-loaded decorative backgrounds (see site.js) */
[data-lazy-bg]{
  background-color:rgba(185,133,42,.10);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Below-the-fold sections: faster initial paint */
.products-grid,
.products-grid--catalog,
.products-grid--home-matrix,
.products-grid--badge-matrix,
.grid-4,
.collection-groups-grid,
.lookbook-grid--matrix{
  content-visibility:auto;
  contain-intrinsic-size:auto 380px;
}

.container{
  width:min(var(--container), calc(100% - (var(--space-gutter) * 2)));
  margin-inline:auto;
}
.container--wide{
  width:min(var(--container-wide), calc(100% - (var(--space-gutter) * 2)));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(251,246,238,.85);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px }
.header-inner--hero{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:clamp(16px, 3vw, 36px);
  padding:clamp(10px, 1.4vw, 16px) 0 clamp(8px, 1.2vw, 12px);
}
.header-inner--hero .brand{
  flex:0 0 auto;
}
.header-inner--hero .brand--hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0;
  min-width:clamp(200px, 20vw, 240px);
  text-decoration:none;
  line-height:1;
}
.header-inner--hero .nav{
  flex:0 1 auto;
  justify-content:flex-start;
  gap:clamp(14px, 2.2vw, 24px);
  margin-right:auto;
  align-self:center;
}
.header-inner--hero .header-actions{
  flex:0 0 auto;
  margin-left:auto;
  align-self:center;
}
.brand{ display:flex; align-items:center; gap:12px }
.brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(185,133,42,.18);
  box-shadow:0 10px 25px rgba(185,133,42,.18);
}
.site-header .brand-logo,
.admin-header .brand-logo{
  width:100px;
  height:100px;
}
.hero-nav .brand-logo{
  width:clamp(200px, 22vw, 240px);
  height:auto;
  max-width:100%;
  object-fit:contain;
  object-position:center top;
  border-radius:0;
  background:transparent;
  border:none;
  box-shadow:none;
  filter:drop-shadow(0 8px 20px rgba(61,36,24,.12));
  display:block;
}
.hero-nav .nav-link{
  font-size:12px;
  letter-spacing:1.4px;
  font-weight:600;
  padding:6px 8px;
  border-radius:0;
}
.hero-nav .nav-link.is-active{
  background:transparent;
  color:var(--gold);
}
.hero-nav .nav-link:hover{
  background:transparent;
  color:var(--gold);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.05 }
.brand-name{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:.04em;
}
.brand-sub{ font-size:12px; color:var(--muted); letter-spacing:2.2px; text-transform:uppercase }

.nav{ display:flex; gap:18px; align-items:center }
.nav-link{ font-size:13px; letter-spacing:.8px; text-transform:uppercase; color:rgba(27,27,27,.75); padding:8px 10px; border-radius: 999px }
.nav-link:hover{ background: rgba(185,133,42,.08); color:rgba(27,27,27,.95) }
.nav-link.is-active{ background:rgba(185,133,42,.14); color:rgba(27,27,27,.95) }

.header-actions{ display:flex; align-items:center; gap:8px }
.icon-btn{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(45,32,24,.72);
  transition:color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-nav .icon-btn,
.hero-nav .menu-btn{
  border-color:transparent;
  background:transparent;
  box-shadow:none;
}
.hero-nav .icon-btn:hover,
.hero-nav .menu-btn:hover{
  color:var(--gold);
  background:rgba(185,133,42,.08);
  border-color:rgba(185,133,42,.22);
  box-shadow:none;
}
.site-header .icon-btn{
  border-color:rgba(185,133,42,.14);
  background:rgba(255,255,255,.45);
}
.site-header .icon-btn:hover{
  color:var(--gold);
  border-color:rgba(185,133,42,.28);
  background:rgba(255,255,255,.85);
  box-shadow:0 8px 20px rgba(185,133,42,.12);
}
.header-actions .icon-btn svg,
.header-actions .menu-btn svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon-btn svg{ width:18px; height:18px; fill: rgba(27,27,27,.75) }
.icon-btn--cart{
  position:relative;
}
.icon-btn--cart.has-cart-items{
  color:var(--gold);
  border-color:rgba(185,133,42,.28);
  background:rgba(185,133,42,.1);
  box-shadow:0 0 0 1px rgba(185,133,42,.12);
}
.cart-count{
  position:absolute;
  top:-2px;
  right:-2px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--gold);
  color:#fff;
  font-size:10px;
  font-weight:700;
  line-height:18px;
  text-align:center;
  box-shadow:0 2px 10px rgba(185,133,42,.45);
  pointer-events:none;
}
.cart-count[hidden]{
  display:none;
}
.icon-btn--cart.is-cart-bump .cart-count{
  animation:cart-count-bump .45s ease;
}
@keyframes cart-count-bump{
  0%{ transform:scale(1) }
  40%{ transform:scale(1.25) }
  100%{ transform:scale(1) }
}

.menu-btn{
  display:none;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(45,32,24,.72);
  cursor:pointer;
  transition:color .2s ease, background .2s ease, border-color .2s ease;
}
.menu-btn svg{ width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.65; stroke-linecap:round }

.mobile-nav{ border-top:1px solid var(--line); background:rgba(255,255,255,.65) }
.hero-nav .mobile-nav{
  border-top:1px solid rgba(27,27,27,.08);
  background:rgba(251,246,238,.92);
  backdrop-filter:blur(8px);
}
.mobile-nav-inner{ padding:12px 0; display:grid; gap:8px }

body.page-home{
  position:relative;
  background:var(--bg);
}
body.page-home .site-main{
  padding-top:0;
}
body.page-home .hero-nav{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:30;
}
body:not(.page-home) .hero-nav{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(10px);
  background:rgba(251,246,238,.88);
  border-bottom:1px solid rgba(185,133,42,.12);
}
body.page-our-story .site-main{
  padding-top:0;
  padding-bottom:0;
}
body.page-our-story .site-footer{
  margin-top:0;
}

.site-main{ padding-bottom:40px }

.hero{
  position:relative;
  padding:0 0 28px;
}
.hero--merged{
  padding-top:0;
}
.hero-banner{
  position:relative;
  overflow:hidden;
  min-height:clamp(830px, 82vh, 860px);
  background:var(--bg);
}
.hero-slider-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .85s ease, visibility .85s ease;
}
.hero-slide-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:right center;
}
.hero-slide.is-active{
  opacity:1;
  visibility:visible;
}
.hero-slider-btn{
  background:transparent;
  border:none;
  box-shadow:none;
  backdrop-filter:none;
}
.hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  max-width:520px;
  min-height:clamp(480px, 68vh, 720px);
  padding:8px 0 88px;
}
body.page-home .hero-inner{
  align-items:flex-start;
  padding-top:clamp(220px, 18vh, 280px);
}
.hero-copy{
  position:relative;
  z-index:2;
  max-width:36rem;
}
.hero-copy--luxury{
  --hero-brown-deep:#3a2218;
  --hero-brown:#5c3828;
  --hero-brown-warm:#7a4e32;
  --hero-brown-soft:#6b5040;
  --hero-gold-deep:#8a6018;
  --hero-gold-mid:var(--gold);
  --hero-gold-light:var(--gold-2);
  --hero-text-gradient:linear-gradient(118deg, var(--hero-brown-deep) 0%, var(--hero-brown-warm) 52%, var(--hero-brown) 100%);
  --hero-kicker-gradient:linear-gradient(90deg, var(--hero-brown-warm) 0%, var(--hero-gold-deep) 55%, var(--hero-gold-mid) 100%);
  --hero-gold-gradient:linear-gradient(125deg, var(--hero-gold-deep) 0%, var(--hero-gold-mid) 46%, var(--hero-gold-light) 100%);
  --hero-lead-gradient:linear-gradient(90deg, var(--hero-brown) 0%, var(--hero-brown-soft) 100%);
}
.hero-banner-shade{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(251,246,238,.97) 0%, rgba(251,246,238,.90) 32%, rgba(251,246,238,.55) 50%, rgba(251,246,238,.14) 66%, transparent 78%);
}
.hero-banner .hero-copy--luxury .kicker{
  margin:0 0 14px;
  font-family:var(--font-body);
  font-size:clamp(11px, 1.1vw, 12px);
  font-weight:600;
  letter-spacing:.28em;
  text-transform:uppercase;
  background:var(--hero-kicker-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:var(--hero-brown-warm);
  filter:drop-shadow(0 1px 0 rgba(251,246,238,.95));
}
.hero-banner .hero-copy--luxury .h1,
.hero-banner .hero-copy--luxury h1.h1{
  font-family:var(--font-heading);
  font-size:clamp(30px, 3.6vw, 42px);
  line-height:1.16;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  margin:0 0 6px;
}
.hero-banner .hero-copy--luxury .h1-line{
  display:block;
  background:var(--hero-text-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:var(--hero-brown-deep);
  filter:drop-shadow(0 1px 1px rgba(251,246,238,.88));
}
.hero-banner .hero-copy--luxury .h1-line--elegant{
  display:block;
  margin-top:4px;
  padding:0 0 10px;
  line-height:1;
  overflow:visible;
  background:none;
  -webkit-text-fill-color:initial;
  filter:none;
}
.hero-banner .hero-copy--luxury .h1-script{
  display:inline-block;
  margin:0;
  padding:0 0.04em 0.08em;
  font-family:var(--font-display);
  font-size:clamp(64px, 8.5vw, 96px);
  line-height:0.92;
  letter-spacing:0.03em;
  text-transform:none;
  font-weight:400;
  font-style:normal;
  color:#9a6b1a;
  background:none;
  -webkit-background-clip:border-box;
  background-clip:border-box;
  -webkit-text-fill-color:currentColor;
  filter:none;
  text-shadow:
    0 1px 0 rgba(255,253,249,.98),
    0 2px 0 rgba(214,179,106,.55),
    0 8px 24px rgba(185,133,42,.28);
  transform:translateX(-4px);
}
.hero-banner .hero-copy--luxury .h1-line--elegant::after{
  content:"";
  display:block;
  width:min(120px, 42%);
  height:1px;
  margin-top:14px;
  background:linear-gradient(90deg, var(--hero-gold-deep), var(--hero-gold-light), transparent);
  opacity:.85;
}
.hero-banner .hero-copy--luxury .lead{
  margin:18px 0 0;
  font-family:var(--font-body);
  font-size:clamp(14px, 1.55vw, 16px);
  line-height:1.75;
  letter-spacing:.04em;
  text-transform:none;
  font-weight:500;
  font-style:normal;
  max-width:34ch;
  background:var(--hero-lead-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:var(--hero-brown);
  filter:drop-shadow(0 1px 0 rgba(251,246,238,.9));
}
.hero-actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap }
.hero-banner .hero-copy--luxury .btn-hero{
  padding:13px 22px;
  border-radius:4px;
  font-family:var(--font-body);
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-banner .hero-copy--luxury .btn-gold{
  background:linear-gradient(135deg, var(--hero-gold-deep), var(--hero-gold-mid), var(--hero-gold-light));
  color:#fff;
  border-color:transparent;
  box-shadow:0 14px 28px rgba(185,133,42,.26);
}
.hero-banner .hero-copy--luxury .btn-outline-gold{
  background:transparent;
  border:1px solid rgba(92,56,40,.42);
  color:var(--hero-brown);
}
.hero-banner .hero-copy--luxury .btn-outline-gold:hover{
  background:rgba(185,133,42,.08);
  border-color:var(--hero-gold-mid);
  color:var(--hero-brown-deep);
}
.hero-nav{
  overflow:visible;
  background:transparent;
  border:none;
  box-shadow:none;
  backdrop-filter:none;
}
.hero-slider-btn{
  position:absolute;
  top:50%;
  z-index:4;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid rgba(185,133,42,.35);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--gold);
  cursor:pointer;
  transform:translateY(-50%);
  transition:background .2s ease, box-shadow .2s ease;
}
.hero-slider-btn svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.hero-slider-btn:hover{
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.hero-slider-btn--prev{ left:16px }
.hero-slider-btn--next{ right:16px }
.hero-slider-dots{
  position:absolute;
  left:50%;
  bottom:28px;
  z-index:4;
  display:flex;
  justify-content:center;
  gap:10px;
  transform:translateX(-50%);
}
.hero-slider-dot{
  width:9px;
  height:9px;
  padding:0;
  border-radius:999px;
  border:1px solid var(--gold);
  background:transparent;
  cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.hero-slider-dot.is-active{
  background:var(--gold);
  transform:scale(1.08);
}
.kicker{
  margin:0 0 14px;
  color:var(--gold);
  font-weight:600;
  letter-spacing:2.2px;
  text-transform:uppercase;
  font-size:11px;
}
/* Default h1 styles — home hero overrides in .hero-copy */
.h1{
  font-family:var(--font-heading);
  font-size:clamp(34px, 4vw, 44px);
  line-height:1.08;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-weight:600;
  margin:0 0 16px;
}
.h1-line{ display:block }
.h1-line--paired{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:0.28em;
}
.h1-line--paired .h1-script{
  display:inline;
  margin-top:0;
}
.h1-script{
  display:block;
  margin-top:2px;
  font-family:var(--font-display);
  font-size:clamp(56px, 7vw, 78px);
  line-height:1;
  letter-spacing:0;
  text-transform:none;
  font-weight:400;
  font-style:normal;
  color:var(--gold);
}
.lead{
  margin:0;
  color:rgba(27,27,27,.78);
  font-family:var(--font-body);
  font-size:clamp(14px, 1.5vw, 16px);
  line-height:var(--leading-body);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:500;
  max-width:36ch;
}
.hero-actions .btn-gold{
  background:var(--gold);
  color:#fff;
  box-shadow:0 14px 28px rgba(185,133,42,.24);
}
.btn-outline-gold{
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold);
}
.btn-outline-gold:hover{ background:rgba(185,133,42,.06) }

.hero-features-wrap{
  position:relative;
  z-index:2;
  margin-top:36px;
  padding:0 0 12px;
}
.hero-features{
  position:relative;
  z-index:2;
  margin-top:0;
  padding:28px 32px;
  background:#fff;
  border:1px solid rgba(185,133,42,.14);
  border-radius:20px 20px 16px 16px;
  box-shadow:0 20px 44px rgba(0,0,0,.07);
  gap:18px;
}
.hero-features .feature{
  position:relative;
  background:transparent;
  border:none;
  padding:0 18px;
  align-items:center;
  gap:14px;
}
.hero-features .feature:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:52px;
  background:rgba(27,27,27,.08);
}
.hero-features .icon{
  width:52px;
  height:52px;
  border-radius:12px;
  background:#f3ece0;
  border:1px solid rgba(185,133,42,.12);
  flex-shrink:0;
  color:#c49a3c;
}
.hero-features .icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
}
.hero-features .feature-copy{
  min-width:0;
}
.hero-features .title{
  font-size:11px;
  font-weight:700;
  letter-spacing:.9px;
  text-transform:uppercase;
  color:#1f2937;
}
.hero-features .desc{
  margin-top:4px;
  font-size:11.5px;
  color:rgba(31,41,55,.58);
  line-height:1.45;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:600;
  letter-spacing:.4px;
  font-size: 13px;
}
.btn-gold{ background: linear-gradient(135deg,var(--gold),var(--gold-2)); color: #151515; box-shadow: 0 18px 35px rgba(185,133,42,.22) }
.btn-gold-outline{
  background:linear-gradient(135deg, rgba(230,198,120,.48), rgba(185,133,42,.24));
  border-color:rgba(185,133,42,.58);
  color:#5c3f10;
  box-shadow:0 10px 24px rgba(185,133,42,.18);
  font-weight:700;
}
.btn-gold-outline:hover{
  background:linear-gradient(135deg, rgba(236,208,130,.62), rgba(185,133,42,.34));
  border-color:rgba(185,133,42,.75);
  color:#4a320c;
  box-shadow:0 14px 30px rgba(185,133,42,.26);
}
.btn-ghost{ background: rgba(255,255,255,.55); border-color: var(--line); color: rgba(27,27,27,.86) }
.btn:hover{ transform: translateY(-1px) }

.features{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
.features.hero-features{
  margin-top:0;
}
.feature{
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  border:1px solid var(--line);
  padding:14px 14px;
  display:flex; align-items:flex-start; gap:12px;
}
.feature .icon{
  width:36px;height:36px;border-radius:12px;
  background: rgba(185,133,42,.14);
  display:grid;place-items:center;
}
.feature .icon svg{ width:18px; height:18px; fill: rgba(185,133,42,.95) }
.feature .title{ font-weight:700; font-size: 13px; margin-top:1px }
.feature .desc{ color: rgba(27,27,27,.65); font-size: 12.5px; line-height: 1.4 }

.section{ padding: 38px 0 0 }
.section-home-badge{
  padding-bottom: 8px;
}
.section-home-badge .products-grid--home-matrix{
  margin-top:4px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}
.home-badge-more{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-top:22px;
  padding-bottom:8px;
}
.home-badge-more-count{
  margin:0;
  color:rgba(27,27,27,.58);
  font-size:13px;
  line-height:1.45;
}
.home-badge-more-btn.is-loading{
  opacity:.72;
  cursor:wait;
}
.home-badge-more-btn.is-error{
  border-color:#b42318;
  color:#b42318;
}
.section-home-collections .collection-groups-grid{
  margin-top:4px;
}
.products-grid--badge-matrix{
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}
.collection-groups-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
  align-items:stretch;
}
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px }
.section-title{
  font-family:var(--font-title);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight:700;
  margin:0;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.section-sub{
  margin:0;
  color:rgba(27,27,27,.62);
  font-size:14px;
  line-height:1.5;
  font-weight:500;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap:14px }
.card{
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(27,27,27,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.card .thumb{
  aspect-ratio: 4/3;
  background:
    radial-gradient(600px 220px at 25% 25%, rgba(214,179,106,.26), transparent 58%),
    linear-gradient(135deg, rgba(185,133,42,.14), rgba(255,255,255,.35));
  display:grid;
  place-items:end start;
  padding:14px;
  position:relative;
  overflow:hidden;
}
.card .thumb.thumb--photo{
  display:block;
  padding:0;
}
.card .thumb.thumb--photo .thumb-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card .thumb.thumb--photo .badge{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.58);
  color: rgba(27,27,27,.88);
  font-weight:700;
  font-size: 12px;
}
.card .body{ padding: 14px 14px 16px }
.card .body .name{
  font-family:var(--font-title);
  font-weight:700;
  margin:0 0 6px;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.card .body .meta{ margin:0; color:rgba(27,27,27,.62); font-size:14px; line-height:1.5; font-weight:500 }
.card .body .row{ margin-top:12px; display:flex; justify-content:space-between; align-items:center; gap:12px }
.pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(185,133,42,.12);
  border:1px solid rgba(185,133,42,.18);
  color: rgba(27,27,27,.85);
  font-weight:700;
  font-size:12px;
}

.story{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  align-items:stretch;
}
.story-panel{
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.62);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 20px;
}
.story-panel h3{ margin: 0 0 10px; font-size: 22px }
.story-panel p{ margin:0 0 14px; color: rgba(27,27,27,.68); line-height:1.7; font-size: 13.8px }
.story-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.story-img{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(27,27,27,.10);
  background:
    radial-gradient(500px 240px at 35% 25%, rgba(214,179,106,.26), transparent 58%),
    linear-gradient(135deg, rgba(185,133,42,.12), rgba(255,255,255,.35));
  aspect-ratio: 4/3;
}

.section-story{
  padding-top:48px;
}
.story-head{
  text-align:center;
  margin-bottom:36px;
}
.story-kicker{
  margin:0 0 12px;
  color:var(--gold);
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}
.story-title{
  margin:0;
  font-family:var(--font-heading);
  font-weight:600;
  line-height:1.1;
}
.story-title-main{
  display:block;
  font-size:clamp(28px, 4vw, 38px);
  letter-spacing:.8px;
  text-transform:uppercase;
  color:var(--text);
}
.story-title-script{
  display:block;
  margin-top:4px;
  font-family:var(--font-display);
  font-size:clamp(44px, 6vw, 58px);
  font-weight:400;
  font-style:normal;
  letter-spacing:0;
  text-transform:none;
  color:var(--gold);
}
.section-divider{
  display:flex;
  justify-content:center;
  margin-top:18px;
  color:var(--gold);
}
.section-divider svg{
  width:52px;
  height:26px;
}
.story-layout{
  display:grid;
  grid-template-columns:minmax(280px, 1fr) minmax(280px, 0.95fr);
  gap:clamp(28px, 5vw, 48px);
  align-items:center;
}
.story-content p{
  margin:0 0 16px;
  color:rgba(27,27,27,.72);
  font-size:14px;
  line-height:1.75;
}
.story-content p:last-of-type{
  margin-bottom:24px;
}
.story-content .story-brand-mark{
  color:var(--gold);
  font-weight:700;
}
.btn-story{
  padding:12px 20px;
  border-radius:4px;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.story-visual{
  display:flex;
  justify-content:center;
}
.story-photo{
  width:100%;
  max-width:420px;
  height:auto;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.form-card{
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.66);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.form-card .form-inner{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
}
.form-side{
  padding: 20px;
  background:
    radial-gradient(600px 320px at 30% 10%, rgba(230,198,120,.32), transparent 65%),
    linear-gradient(135deg, rgba(185,133,42,.14), rgba(255,255,255,.28));
}
.form-side h3{ margin:0 0 10px; font-size: 22px }
.form-side p{ margin:0; color: rgba(27,27,27,.68); line-height:1.7; font-size: 13.6px }
.form-fields{ padding: 18px 18px 20px }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom: 12px }
.field label{ font-size: 12px; color: rgba(27,27,27,.70); letter-spacing:.4px }
.field-required{ color:rgba(185,133,42,.95) }
.field-error{
  margin:0;
  font-size:12px;
  line-height:1.45;
  color:#b42318;
}
.input.is-invalid,
.select.is-invalid{
  border-color:rgba(180,35,24,.55);
  box-shadow:0 0 0 2px rgba(180,35,24,.08);
}
.form-fields .select{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(27,27,27,.12);
  background:rgba(255,255,255,.92);
  color:rgba(27,27,27,.9);
  font-size:14px;
}
.form-fields .select:disabled{
  opacity:.65;
  cursor:not-allowed;
  background:rgba(255,255,255,.65);
}
.input, .textarea, .select{
  border:1px solid rgba(27,27,27,.14);
  background: rgba(255,255,255,.72);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  outline:none;
}
.textarea{ min-height: 110px; resize: vertical }
.input:focus, .textarea:focus, .select:focus{ border-color: rgba(185,133,42,.45); box-shadow: 0 0 0 4px rgba(185,133,42,.12) }
.form-actions{ display:flex; justify-content:flex-end; gap:12px; margin-top: 6px }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.section-contact{
  padding-top:48px;
  padding-bottom:24px;
  scroll-margin-top:100px;
}
#contact-us{
  scroll-margin-top:100px;
}
.contact-head{
  text-align:center;
  margin-bottom:36px;
}
.contact-kicker{
  margin:0 0 12px;
  color:var(--gold);
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}
.contact-title{
  margin:0;
  font-family:var(--font-heading);
  font-weight:600;
  line-height:1.1;
}
.contact-title-main{
  display:block;
  font-size:clamp(28px, 4vw, 38px);
  letter-spacing:.8px;
  text-transform:uppercase;
  color:var(--text);
}
.contact-title-script{
  display:block;
  margin-top:4px;
  font-family:var(--font-display);
  font-size:clamp(44px, 6vw, 58px);
  font-weight:400;
  font-style:normal;
  letter-spacing:0;
  text-transform:none;
  color:var(--gold);
}
.contact-divider{
  display:flex;
  justify-content:center;
  margin-top:18px;
  color:var(--gold);
}
.contact-divider svg{
  width:52px;
  height:26px;
}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(260px, 1fr) minmax(320px, 1.1fr);
  gap:clamp(28px, 5vw, 56px);
  align-items:start;
}
.contact-info{
  display:grid;
  gap:22px;
  padding-top:8px;
}
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.contact-icon{
  width:46px;
  height:46px;
  flex-shrink:0;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1.5px solid rgba(185,133,42,.55);
  color:var(--gold);
}
.contact-icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}
.contact-icon svg path{
  fill:currentColor;
}
.contact-text{
  padding-top:10px;
  color:rgba(27,27,27,.78);
  font-size:14px;
  line-height:1.65;
}
.contact-link{
  color:inherit;
  text-decoration:none;
}
.contact-link:hover{
  color:var(--gold);
}
.contact-form-wrap{
  padding-top:4px;
}
.contact-form .field{
  margin-bottom:14px;
}
.field--with-icon{
  position:relative;
}
.field--with-icon .field-icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  color:var(--gold);
  pointer-events:none;
}
.field--with-icon .field-icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.field--with-icon .field-icon svg path{
  fill:currentColor;
}
.field--with-icon .contact-input{
  padding-left:44px;
}
.contact-input{
  width:100%;
  border:1px solid rgba(27,27,27,.16);
  background:rgba(255,255,255,.85);
  border-radius:4px;
  padding:14px 14px;
  font-size:14px;
  color:var(--text);
}
.contact-input::placeholder{
  color:rgba(27,27,27,.45);
}
.contact-form .textarea{
  min-height:120px;
  resize:vertical;
}
.btn-contact{
  width:100%;
  margin-top:6px;
  padding:14px 22px;
  border-radius:4px;
  font-size:11px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  background:var(--gold);
  color:#fff;
  box-shadow:0 14px 28px rgba(185,133,42,.22);
}

.notice{
  border-radius: 14px;
  border: 1px solid rgba(185,133,42,.22);
  background: rgba(185,133,42,.10);
  padding: 12px 12px;
  color: rgba(27,27,27,.82);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.site-footer{
  margin-top:46px;
  overflow:hidden;
}

.footer-banner{
  position:relative;
  min-height:220px;
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
  overflow:hidden;
}
.footer-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    #3d2418 0%,
    #42261b 22%,
    #4a2a20 32%,
    rgba(74, 36, 28, 0.92) 42%,
    rgba(74, 36, 28, 0.72) 50%,
    rgba(74, 36, 28, 0.42) 58%,
    rgba(74, 36, 28, 0.18) 66%,
    rgba(74, 36, 28, 0.04) 74%,
    transparent 82%
  );
  pointer-events:none;
}
.footer-banner-inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  min-height:220px;
}
.footer-banner-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:min(520px, 92vw);
  padding:clamp(32px, 5vw, 56px) clamp(20px, 5vw, 48px);
  color:#fff8f0;
}
.footer-banner-tagline{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(28px, 3.6vw, 38px);
  font-weight:600;
  line-height:1.25;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.footer-banner-divider{
  margin-top:18px;
  color:var(--gold-2);
}
.footer-banner-divider svg{
  width:52px;
  height:26px;
}
.footer-banner-cta{
  align-self:flex-start;
  margin-top:22px;
}

.footer-main{
  background:#f2efe9;
  border-radius:0 0 28px 28px;
  padding:clamp(36px, 5vw, 52px) 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr .9fr .95fr .85fr 1.15fr;
  gap:clamp(20px, 3vw, 36px);
  align-items:start;
}
.footer-col-brand{
  padding-right:12px;
}
.footer-brand{
  display:inline-flex;
  margin-bottom:14px;
  text-decoration:none;
}
.footer-brand-logo{
  width:clamp(96px, 16vw, 128px);
  height:auto;
  aspect-ratio:1;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(185,133,42,.22);
  box-shadow:0 12px 28px rgba(61,36,24,.1);
}
.footer-brand-lockup{
  display:grid;
  gap:8px;
  margin-bottom:14px;
}
.footer-brand-name{
  font-family:var(--font-heading);
  font-size:clamp(28px, 3vw, 34px);
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:#3d2418;
  line-height:1;
}
.footer-brand-line{
  display:block;
  width:100%;
  max-width:180px;
  height:1px;
  background:linear-gradient(90deg, rgba(61,36,24,.55), rgba(61,36,24,.18));
}
.footer-brand-sub{
  font-family:var(--font-heading);
  font-size:13px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(61,36,24,.78);
}
.footer-brand-desc{
  margin:0;
  max-width:28ch;
  color:rgba(45,32,24,.62);
  font-family:var(--font-heading);
  font-size:14px;
  line-height:1.7;
}
.footer-heading{
  margin:0 0 16px;
  font-family:var(--font-heading);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:#3d2418;
}
.footer-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.footer-list a{
  color:rgba(45,32,24,.68);
  font-size:13px;
  line-height:1.4;
  transition:color .2s ease;
}
.footer-list a:hover{
  color:rgba(45,32,24,.95);
}
.footer-connect-text{
  margin:0 0 14px;
  color:rgba(45,32,24,.62);
  font-size:13px;
  line-height:1.6;
}
.footer-newsletter{
  display:flex;
  align-items:stretch;
  margin-bottom:18px;
  border:1px solid rgba(61,36,24,.14);
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,.72);
}
.footer-email-input{
  flex:1;
  min-width:0;
  border:none;
  background:transparent;
  padding:11px 14px;
  font:inherit;
  font-size:13px;
  color:var(--text);
}
.footer-email-input::placeholder{
  color:rgba(45,32,24,.42);
}
.footer-email-input:focus{
  outline:none;
}
.footer-email-btn{
  display:grid;
  place-items:center;
  width:42px;
  border:none;
  background:transparent;
  color:var(--gold);
  cursor:pointer;
}
.footer-email-btn svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-social-link{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(61,36,24,.18);
  color:rgba(61,36,24,.72);
  background:rgba(255,255,255,.45);
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.footer-social-link svg{
  width:16px;
  height:16px;
  fill:currentColor;
}
.footer-social-link:hover{
  color:var(--gold);
  border-color:rgba(185,133,42,.35);
  background:rgba(255,255,255,.85);
}
.footer-copyright{
  margin:28px 0 0;
  padding-top:18px;
  border-top:1px solid rgba(61,36,24,.08);
  text-align:center;
  color:rgba(45,32,24,.48);
  font-size:12px;
  letter-spacing:.2px;
}
.footer-copyright p{
  margin:0;
}
.footer-copyright p + p{
  margin-top:6px;
}
.footer-powered a{
  color:rgba(45,32,24,.62);
  text-decoration:none;
  font-weight:600;
}
.footer-powered a:hover{
  color:var(--gold);
  text-decoration:underline;
}

.whatsapp-fab{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:40;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  box-shadow:0 8px 24px rgba(37,211,102,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab svg{
  width:28px;
  height:28px;
  fill:currentColor;
}
.whatsapp-fab:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(37,211,102,.45);
}

/* Our Story page */
.story-page-breadcrumbs{
  position:absolute;
  top:clamp(14px, 2vw, 20px);
  left:clamp(28px, 5vw, 64px);
  right:clamp(28px, 5vw, 64px);
  margin:0;
  z-index:2;
  justify-content:flex-start;
}
.story-page-hero{
  padding:0;
  background:#fbf6ee;
}
.story-page-hero-inner{
  display:grid;
  grid-template-columns:minmax(320px, 1fr) minmax(320px, 1fr);
  gap:0;
  min-height:clamp(520px, 62vh, 640px);
  align-items:stretch;
}
.story-page-hero-copy{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:clamp(36px, 5vw, 56px) clamp(28px, 5vw, 64px);
  overflow:hidden;
  background:#fbf6ee;
  isolation:isolate;
}
.story-page-hero-copy::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 12% 100%, rgba(214,179,106,.28), transparent 62%),
    linear-gradient(180deg, rgba(249,245,240,.48) 0%, rgba(251,246,238,.58) 100%);
  box-shadow:inset 0 0 72px rgba(45,32,24,.12);
}
.story-page-feather{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  opacity:.62;
  pointer-events:none;
  filter:saturate(1.15) sepia(.4) hue-rotate(6deg) brightness(1.04);
  box-shadow:
    inset 0 -48px 80px rgba(45,32,24,.18),
    inset 0 0 120px rgba(185,133,42,.14);
}
.story-page-feather img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  filter:drop-shadow(0 10px 28px rgba(45,32,24,.28)) drop-shadow(0 4px 14px rgba(185,133,42,.22));
}
.story-page-hero-copy .story-title,
.story-page-hero-copy .story-page-since-year,
.story-page-hero-copy .story-page-since-tag{
  text-shadow:0 1px 12px rgba(251,246,238,.9), 0 2px 20px rgba(45,32,24,.12);
}
.story-page-hero-copy > :not(.story-page-feather){
  position:relative;
  z-index:2;
}
.story-page-hero-copy > .story-page-breadcrumbs{
  position:absolute;
}
.story-page-hero-logo{
  width:min(132px, 38vw);
  margin:0 auto 22px;
}
.story-page-hero-logo,
.story-page-since,
.story-page-hero-copy .story-title{
  width:min(100%, 520px);
  margin-left:auto;
  margin-right:auto;
}
.story-page-since{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin:0 auto 6px;
}
.story-page-hero-logo-img{
  width:100%;
  height:auto;
  display:block;
}
.story-page-hero-copy .story-kicker,
.story-page-hero-copy .story-title{
  text-align:center;
}
.story-page-hero-copy .story-title-main{
  font-size:clamp(24px, 2.8vw, 34px);
  line-height:1.18;
  letter-spacing:1px;
}
.story-page-hero-copy .story-title-script{
  font-size:clamp(48px, 5.5vw, 62px);
  margin-top:4px;
}
.story-page-hero-copy .story-title{
  margin-bottom:0;
}
.story-page-hero-text{
  width:100%;
  max-width:46ch;
  margin:0 auto;
}
.story-page-hero-text p{
  margin:0 0 14px;
  color:rgba(45,32,24,.78);
  font-family:var(--font-heading);
  font-size:15px;
  line-height:1.82;
  text-align:center;
}
.story-page-hero-text p:last-child{
  margin-bottom:28px;
}
.story-page-hero-copy .btn-story{
  margin-top:4px;
}
.story-page-hero-media{
  position:relative;
  min-height:100%;
  overflow:hidden;
  background:rgba(185,133,42,.08);
}
.story-page-hero-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}
.story-page-since-year{
  display:inline-block;
  padding:8px 20px;
  border:1px solid rgba(185,133,42,.45);
  border-radius:999px;
  background:rgba(255,255,255,.55);
  color:var(--gold);
  font-size:11px;
  font-weight:700;
  letter-spacing:2.4px;
  text-transform:uppercase;
}
.story-page-since-tag{
  margin:0 0 16px;
  font-family:var(--font-heading);
  font-size:14px;
  font-style:italic;
  color:rgba(45,32,24,.65);
  letter-spacing:.3px;
}
.story-page-hero-text strong{
  font-weight:700;
  color:rgba(45,32,24,.92);
}

.story-page-legacy{
  position:relative;
  overflow:hidden;
  padding:clamp(56px, 7vw, 92px) 0;
  background:
    radial-gradient(ellipse 90% 55% at 12% 18%, rgba(214,179,106,.16), transparent 58%),
    radial-gradient(ellipse 70% 50% at 88% 72%, rgba(185,133,42,.12), transparent 55%),
    linear-gradient(180deg, #f7f0e4 0%, #fbf6ee 42%, #f9f3ea 100%);
  border-top:1px solid rgba(185,133,42,.14);
  border-bottom:1px solid rgba(185,133,42,.14);
}
.story-loom-canvas{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}
.story-loom-weave{
  position:absolute;
  inset:0;
  opacity:.28;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 11px,
      rgba(185,133,42,.04) 11px,
      rgba(185,133,42,.04) 12px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 11px,
      rgba(185,133,42,.03) 11px,
      rgba(185,133,42,.03) 12px
    );
}
.story-loom-heritage-mark{
  position:absolute;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:clamp(120px, 16vw, 200px);
  aspect-ratio:1;
  user-select:none;
}
.story-loom-heritage-mark--start{
  top:clamp(148px, 22vw, 220px);
  left:clamp(8px, 2.5vw, 36px);
}
.story-loom-heritage-mark--end{
  right:clamp(8px, 2.5vw, 36px);
  bottom:clamp(120px, 16vw, 200px);
}
.story-loom-heritage-ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:1px solid rgba(185,133,42,.16);
  background:radial-gradient(circle at 50% 45%, rgba(255,253,249,.55), rgba(251,246,238,.12) 68%, transparent 100%);
  box-shadow:inset 0 0 0 6px rgba(255,253,249,.35);
}
.story-loom-heritage-ring::before{
  content:"";
  position:absolute;
  inset:10%;
  border-radius:999px;
  border:1px dashed rgba(185,133,42,.14);
}
.story-loom-heritage-year{
  position:relative;
  z-index:1;
  font-family:var(--font-heading);
  font-size:clamp(42px, 6.5vw, 72px);
  font-weight:700;
  line-height:1;
  letter-spacing:2px;
  background:linear-gradient(180deg, rgba(185,133,42,.24) 0%, rgba(185,133,42,.1) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  -webkit-text-stroke:1.5px rgba(185,133,42,.34);
  paint-order:stroke fill;
  filter:drop-shadow(0 0 18px rgba(214,179,106,.16));
}
.story-loom-heritage-caption{
  position:relative;
  z-index:1;
  margin-top:8px;
  padding:0 8px;
  font-size:clamp(8px, .85vw, 10px);
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
  text-align:center;
  color:rgba(185,133,42,.42);
}
.story-loom-shell{
  position:relative;
  z-index:1;
}

.story-loom-head{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(260px, .8fr);
  gap:clamp(24px, 4vw, 48px);
  align-items:end;
  margin-bottom:clamp(44px, 6vw, 64px);
}
.story-loom-head--centered{
  grid-template-columns:1fr;
  max-width:58ch;
  margin-inline:auto;
  text-align:center;
  margin-bottom:clamp(36px, 5vw, 52px);
  row-gap:17px;
  column-gap:108px;
}
.story-loom-head--centered .story-loom-lead{
  margin-inline:auto;
}
.story-loom-path--four{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.story-scroll-frame{
  position:relative;
  margin-bottom:clamp(36px, 5vw, 52px);
  padding:clamp(28px, 4vw, 44px) clamp(20px, 3vw, 36px) clamp(24px, 3vw, 32px);
  border:2px solid rgba(92,46,42,.28);
  border-radius:4px;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255,253,249,.9), transparent 55%),
    linear-gradient(180deg, #f8f2e8 0%, #f3ebdf 48%, #f8f2e8 100%);
  box-shadow:
    inset 0 0 0 1px rgba(214,179,106,.35),
    inset 0 0 60px rgba(185,133,42,.06),
    0 24px 48px rgba(61,36,24,.08);
}
.story-scroll-frame::before,
.story-scroll-frame::after{
  content:"";
  position:absolute;
  width:28px;
  height:28px;
  border-color:rgba(185,133,42,.55);
  border-style:solid;
  pointer-events:none;
}
.story-scroll-frame::before{
  top:10px;
  left:10px;
  border-width:2px 0 0 2px;
}
.story-scroll-frame::after{
  bottom:10px;
  right:10px;
  border-width:0 2px 2px 0;
}
.story-scroll-ornament--top{
  display:flex;
  justify-content:center;
  margin-bottom:clamp(20px, 3vw, 28px);
  color:rgba(185,133,42,.72);
}
.story-scroll-peacock{
  width:min(140px, 40vw);
  height:auto;
}
.story-scroll-ornament--bottom{
  height:12px;
  margin-top:20px;
  background:
    linear-gradient(90deg, transparent, rgba(185,133,42,.45), transparent) center/80% 1px no-repeat;
}
.story-scroll-timeline{
  position:relative;
  display:flex;
  flex-direction:column;
}
.story-scroll-rail{
  position:absolute;
  left:calc(clamp(88px, 10vw, 110px) + 36px);
  top:36px;
  bottom:36px;
  width:2px;
  background:linear-gradient(180deg, rgba(185,133,42,.15), rgba(185,133,42,.65) 12%, rgba(185,133,42,.65) 88%, rgba(185,133,42,.15));
  pointer-events:none;
}
.story-scroll-milestone{
  position:relative;
  display:grid;
  grid-template-columns:clamp(88px, 10vw, 110px) 72px minmax(0, 1fr) minmax(160px, 240px);
  gap:12px clamp(16px, 2.5vw, 28px);
  align-items:center;
  padding:clamp(22px, 3vw, 30px) 0;
}
.story-scroll-milestone:not(:last-child){
  border-bottom:1px solid rgba(185,133,42,.14);
}
.story-scroll-year{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(22px, 2.6vw, 30px);
  font-weight:700;
  line-height:1.1;
  letter-spacing:.4px;
  color:#5c2a26;
  text-align:right;
  padding-right:4px;
}
.story-scroll-node{
  position:relative;
  z-index:1;
  width:56px;
  height:56px;
  border-radius:999px;
  border:3px solid var(--gold-2);
  display:grid;
  place-items:center;
  color:rgba(255,253,249,.92);
  box-shadow:0 6px 18px rgba(0,0,0,.14);
}
.story-scroll-node svg{
  width:26px;
  height:26px;
}
.story-scroll-node--maroon{ background:linear-gradient(145deg, #6b2f2a, #4f221f) }
.story-scroll-node--green{ background:linear-gradient(145deg, #2a5545, #1b3f32) }
.story-scroll-node--navy{ background:linear-gradient(145deg, #243a52, #16283a) }
.story-scroll-title{
  margin:0 0 10px;
  font-family:var(--font-heading);
  font-size:clamp(18px, 2vw, 22px);
  font-weight:700;
  line-height:1.25;
  color:#5c2a26;
  text-transform:capitalize;
}
.story-scroll-text{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(14px, 1.5vw, 16px);
  line-height:1.72;
  color:rgba(45,32,24,.76);
  max-width:48ch;
}
.story-scroll-art{
  justify-self:end;
  width:100%;
  max-width:240px;
  padding:6px;
  border:1px solid rgba(92,46,42,.18);
  border-radius:8px;
  background:rgba(255,253,249,.65);
  box-shadow:4px 8px 22px rgba(61,36,24,.08);
}
.story-scroll-art img{
  width:100%;
  height:auto;
  display:block;
  border-radius:4px;
  filter:sepia(.22) contrast(1.04) saturate(.92);
}
.story-scroll-footer{
  margin-top:clamp(20px, 3vw, 28px);
  padding-top:clamp(20px, 3vw, 28px);
  border-top:2px solid rgba(185,133,42,.28);
  text-align:center;
}
.story-scroll-footer-ends{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 28px;
  margin-bottom:14px;
  font-family:var(--font-heading);
  font-size:clamp(15px, 1.6vw, 17px);
  color:rgba(45,32,24,.78);
}
.story-scroll-footer-ends strong{
  color:#5c2a26;
  font-weight:700;
}
.story-scroll-tagline{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(17px, 2vw, 20px);
  font-weight:600;
  font-style:italic;
  color:#5c2a26;
  letter-spacing:.2px;
}
.story-scroll-flourish{
  display:inline-block;
  margin:0 10px;
  color:var(--gold);
  font-size:.9em;
}
.story-loom-head .story-kicker{
  margin-bottom:12px;
}
.story-loom-title{
  margin:0 0 14px;
  font-family:var(--font-heading);
  font-size:clamp(28px, 3.6vw, 42px);
  font-weight:600;
  line-height:1.15;
  color:rgba(45,32,24,.94);
  text-transform:capitalize;
}
.story-loom-title-accent{
  display:block;
  margin-top:6px;
  font-style:italic;
  font-weight:500;
  color:var(--gold);
  letter-spacing:.2px;
}
.story-loom-lead{
  margin:0;
  max-width:52ch;
  font-family:var(--font-heading);
  font-size:clamp(16px, 1.8vw, 19px);
  line-height:1.75;
  color:rgba(45,32,24,.74);
}
.story-loom-chapters{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:22px 24px;
  border-radius:16px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(185,133,42,.2);
  box-shadow:0 18px 40px rgba(61,36,24,.06);
  backdrop-filter:blur(6px);
}
.story-loom-chapter{
  display:flex;
  align-items:center;
  gap:14px;
}
.story-loom-chapter-num{
  display:grid;
  place-items:center;
  flex:0 0 42px;
  width:42px;
  height:42px;
  border-radius:999px;
  background:linear-gradient(145deg, rgba(214,179,106,.35), rgba(185,133,42,.18));
  border:1px solid rgba(185,133,42,.32);
  font-family:var(--font-heading);
  font-size:18px;
  font-weight:700;
  color:var(--gold);
}
.story-loom-chapter--two .story-loom-chapter-num{
  background:linear-gradient(145deg, rgba(61,36,24,.88), rgba(74,36,28,.78));
  color:var(--gold-2);
  border-color:rgba(214,179,106,.35);
}
.story-loom-chapter-label{
  margin:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(45,32,24,.82);
}
.story-loom-chapter-era{
  margin:4px 0 0;
  font-family:var(--font-heading);
  font-size:14px;
  font-style:italic;
  color:rgba(45,32,24,.58);
}
.story-loom-chapter-ribbon{
  display:block;
  height:28px;
  margin-left:20px;
  border-left:2px dashed rgba(185,133,42,.38);
  position:relative;
}
.story-loom-chapter-ribbon::after{
  content:"";
  position:absolute;
  left:-5px;
  bottom:-2px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--gold);
  box-shadow:0 0 0 4px rgba(214,179,106,.22);
}

.story-loom-scroll{
  margin:0 0 clamp(32px, 4vw, 44px);
  overflow:visible;
  padding:12px 0 10px;
}
.story-loom-path{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  column-gap:clamp(6px, 1.4vw, 24px);
  row-gap:0;
  width:100%;
  padding:clamp(72px, 8vw, 88px) 0 clamp(8px, 1.5vw, 16px);
}
.story-loom-silk-track{
  position:absolute;
  top:52px;
  left:8%;
  right:8%;
  height:20px;
  z-index:1;
  pointer-events:none;
}
.story-loom-silk-glow{
  position:absolute;
  inset:4px 0;
  background:linear-gradient(90deg, transparent, rgba(214,179,106,.22), transparent);
  filter:blur(10px);
  opacity:.7;
}
.story-loom-silk-line{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  height:3px;
  transform:translateY(-50%);
  border-radius:999px;
  background:linear-gradient(90deg, rgba(185,133,42,.15), var(--gold-2) 18%, var(--gold) 50%, var(--gold-2) 82%, rgba(185,133,42,.15));
  mask-image:repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 18px);
  -webkit-mask-image:repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 18px);
}

.story-loom-milestone{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:clamp(28px, 4vw, 38px);
}
.story-loom-bead{
  position:absolute;
  top:0;
  left:50%;
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  transform:translateX(-50%);
}
.story-loom-bead-core{
  display:block;
  width:22px;
  height:22px;
  border-radius:999px;
  background:radial-gradient(circle at 32% 28%, #fffdf9 0%, var(--gold-2) 42%, var(--gold) 100%);
  border:2px solid rgba(255,253,249,.9);
  box-shadow:
    0 0 0 4px rgba(214,179,106,.22),
    0 8px 18px rgba(61,36,24,.12);
}
.story-loom-bead-year{
  padding:3px 8px;
  border-radius:999px;
  background:rgba(255,253,249,.92);
  border:1px solid rgba(185,133,42,.2);
  font-size:clamp(7px, .75vw, 9px);
  font-weight:700;
  letter-spacing:clamp(.6px, .12vw, 1.4px);
  text-transform:uppercase;
  color:var(--gold);
  text-align:center;
  line-height:1.3;
  max-width:100%;
  box-shadow:0 6px 16px rgba(61,36,24,.06);
}
.story-loom-bead--origin .story-loom-bead-core{
  width:28px;
  height:28px;
  box-shadow:
    0 0 0 5px rgba(214,179,106,.28),
    0 0 0 9px rgba(214,179,106,.12),
    0 10px 22px rgba(61,36,24,.14);
}
.story-loom-bead--born .story-loom-bead-core{
  background:radial-gradient(circle at 32% 28%, #fff8e8 0%, var(--gold) 55%, #9a6b1f 100%);
  box-shadow:
    0 0 0 5px rgba(214,179,106,.32),
    0 0 20px rgba(185,133,42,.28);
}
.story-loom-bead--today .story-loom-bead-core{
  background:radial-gradient(circle at 32% 28%, #ffffff 0%, var(--gold-2) 50%, var(--gold) 100%);
}

.story-loom-card{
  position:relative;
  z-index:2;
  width:100%;
  margin-top:clamp(48px, 5vw, 56px);
  padding:clamp(12px, 1.6vw, 26px) clamp(8px, 1.2vw, 20px);
  border-radius:18px;
  background:#fffdf9;
  border:1px solid rgba(185,133,42,.16);
  box-shadow:0 18px 40px rgba(61,36,24,.07);
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.story-loom-card::before{
  content:"";
  position:absolute;
  top:0;
  left:18%;
  right:18%;
  height:3px;
  border-radius:0 0 10px 10px;
  background:linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity:.75;
}
.story-loom-card-glow{
  position:absolute;
  inset:-1px;
  border-radius:18px;
  background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(214,179,106,.18), transparent 70%);
  pointer-events:none;
}
.story-loom-card-badge{
  position:relative;
  z-index:1;
  display:inline-block;
  margin-bottom:12px;
  padding:5px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(61,36,24,.9), rgba(74,36,28,.82));
  border:1px solid rgba(214,179,106,.3);
  font-size:9px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-2);
}
.story-loom-card--origin{
  border-color:rgba(185,133,42,.26);
  background:linear-gradient(180deg, #fffdf9 0%, #f8f0e2 100%);
  box-shadow:0 22px 46px rgba(61,36,24,.1);
}
.story-loom-card--heritage{
  background:linear-gradient(180deg, #fffdf9 0%, #fbf6ee 100%);
}
.story-loom-card--born{
  border-color:rgba(185,133,42,.3);
  background:linear-gradient(180deg, #fffdf9 0%, #fff4dc 100%);
}
.story-loom-card--today{
  border-color:rgba(185,133,42,.24);
  background:linear-gradient(180deg, #ffffff 0%, #fbf6ee 100%);
}
.story-loom-milestone:hover .story-loom-card{
  transform:translateY(-5px);
  border-color:rgba(185,133,42,.28);
  box-shadow:0 26px 52px rgba(61,36,24,.11);
}
.story-loom-step{
  position:relative;
  z-index:1;
  display:inline-block;
  margin-bottom:10px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(214,179,106,.16);
  font-size:10px;
  font-weight:700;
  letter-spacing:1.8px;
  color:var(--gold);
}
.story-loom-card-title{
  position:relative;
  z-index:1;
  margin:0 0 10px;
  font-family:var(--font-heading);
  font-size:clamp(16px, 1.5vw, 19px);
  font-weight:600;
  line-height:1.32;
  color:rgba(45,32,24,.92);
  text-transform:capitalize;
}
.story-loom-card-text{
  position:relative;
  z-index:1;
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(12px, 1.1vw, 14px);
  line-height:1.68;
  color:rgba(45,32,24,.7);
}

.story-loom-ribbon-band{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:clamp(12px, 2vw, 20px);
  align-items:center;
  margin:0 0 clamp(44px, 5vw, 60px);
  padding:clamp(18px, 2.5vw, 24px) clamp(16px, 3vw, 28px);
  border-radius:16px;
  background:linear-gradient(135deg, rgba(61,36,24,.92), rgba(74,36,28,.86));
  border:1px solid rgba(214,179,106,.22);
  box-shadow:0 20px 48px rgba(61,36,24,.18);
}
.story-loom-ribbon-item{
  text-align:center;
}
.story-loom-ribbon-year{
  display:block;
  font-family:var(--font-heading);
  font-size:clamp(28px, 3.5vw, 36px);
  font-weight:700;
  line-height:1;
  color:var(--gold-2);
}
.story-loom-ribbon-label{
  display:block;
  margin-top:6px;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:rgba(255,253,249,.62);
}
.story-loom-ribbon-item--center{
  padding:0 clamp(12px, 2vw, 24px);
  border-left:1px solid rgba(214,179,106,.22);
  border-right:1px solid rgba(214,179,106,.22);
}
.story-loom-ribbon-quote{
  display:block;
  font-family:var(--font-heading);
  font-size:clamp(15px, 1.8vw, 18px);
  font-style:italic;
  line-height:1.5;
  color:rgba(255,253,249,.88);
  white-space:nowrap;
}

.story-loom-promise{
  padding-top:clamp(8px, 2vw, 16px);
}
.story-loom-promise-frame{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:clamp(24px, 4vw, 40px);
  padding:clamp(28px, 4vw, 40px);
  border-radius:calc(var(--radius) + 8px);
  background:rgba(255,255,255,.78);
  border:1px solid rgba(185,133,42,.18);
  box-shadow:var(--shadow);
}
.story-loom-promise-frame--trust{
  grid-template-columns:1fr;
  gap:clamp(22px, 3vw, 32px);
  padding-bottom:0;
  overflow:hidden;
}
.story-loom-promise-copy--centered{
  text-align:center;
  max-width:58ch;
  margin-inline:auto;
}
.story-loom-swatches--compact{
  max-width:min(640px, 100%);
  margin-inline:auto;
}
.story-loom-promise-values{
  margin:clamp(8px, 2vw, 16px) calc(-1 * clamp(28px, 4vw, 40px)) 0;
  padding:clamp(24px, 3vw, 32px) clamp(16px, 3vw, 28px) clamp(20px, 3vw, 28px);
  border-top:1px solid rgba(185,133,42,.16);
  background:linear-gradient(180deg, rgba(232,220,200,.96), rgba(214,196,168,.9));
}
.story-loom-promise-values-kicker{
  margin:0 0 clamp(18px, 2.5vw, 24px);
  text-align:center;
  font-family:var(--font-heading);
  font-size:clamp(15px, 1.6vw, 17px);
  font-style:italic;
  color:rgba(45,32,24,.68);
}
.story-loom-promise-values .story-page-values-grid{
  border-radius:calc(var(--radius) + 2px);
  overflow:hidden;
}
.story-loom-promise-values .story-page-value{
  background:rgba(255,253,249,.35);
}
.story-loom-promise-corner{
  position:absolute;
  width:28px;
  height:28px;
  border-color:var(--gold);
  border-style:solid;
  opacity:.55;
}
.story-loom-promise-corner--tl{
  top:14px;
  left:14px;
  border-width:2px 0 0 2px;
}
.story-loom-promise-corner--tr{
  top:14px;
  right:14px;
  border-width:2px 2px 0 0;
}
.story-loom-promise-corner--bl{
  bottom:14px;
  left:14px;
  border-width:0 0 2px 2px;
}
.story-loom-promise-corner--br{
  bottom:14px;
  right:14px;
  border-width:0 2px 2px 0;
}
.story-loom-promise-copy .story-kicker{
  margin-bottom:8px;
}
.story-loom-promise-title{
  margin:0 0 14px;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 34px);
  font-weight:600;
  line-height:1.2;
  color:rgba(45,32,24,.94);
}
.story-loom-promise-lead{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(15px, 1.6vw, 17px);
  line-height:1.78;
  color:rgba(45,32,24,.72);
}
.story-loom-swatches{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  align-content:start;
}
.story-loom-swatch{
  position:relative;
  overflow:hidden;
  padding:18px 16px 16px;
  border-radius:12px;
  background:rgba(251,246,238,.85);
  border:1px solid rgba(185,133,42,.16);
  text-align:center;
  transition:transform .25s ease;
}
.story-loom-swatch:hover{
  transform:translateY(-3px);
}
.story-loom-swatch-weave{
  position:absolute;
  inset:0;
  opacity:.4;
  background:repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 6px,
    rgba(185,133,42,.06) 6px,
    rgba(185,133,42,.06) 7px
  );
  pointer-events:none;
}
.story-loom-swatch-name{
  position:relative;
  margin:0 0 8px;
  font-family:var(--font-heading);
  font-size:17px;
  font-weight:600;
  color:rgba(45,32,24,.9);
}
.story-loom-swatch-tagline{
  position:relative;
  margin:0;
  font-family:var(--font-heading);
  font-size:13px;
  font-style:italic;
  line-height:1.55;
  color:var(--gold);
}
.story-loom-swatch--brand{
  grid-column:1 / -1;
  background:linear-gradient(160deg, rgba(61,36,24,.9), rgba(74,36,28,.84));
  border-color:rgba(214,179,106,.28);
}
.story-loom-swatch--brand .story-loom-swatch-name{
  color:rgba(255,253,249,.95);
}
.story-loom-swatch--brand .story-loom-swatch-tagline{
  color:var(--gold-2);
}

.story-page-people{
  padding:clamp(52px, 6vw, 76px) 0;
  background:linear-gradient(180deg, #f9f5f0 0%, #fbf6ee 100%);
}
.story-page-people-head{
  text-align:center;
  max-width:640px;
  margin:0 auto clamp(36px, 5vw, 48px);
}
.story-page-people-title{
  margin:0 0 12px;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 32px);
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:rgba(45,32,24,.92);
}
.story-page-people-sub{
  margin:0;
  font-family:var(--font-heading);
  font-size:16px;
  line-height:1.7;
  color:rgba(45,32,24,.68);
}
.story-page-people-scroll{
  margin-bottom:clamp(32px, 4vw, 44px);
  overflow:visible;
}
.story-page-people-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(10px, 1.6vw, 20px);
  width:100%;
}
.story-page-people-grid::before{
  content:"";
  position:absolute;
  top:18px;
  left:8%;
  right:8%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(185,133,42,.35), transparent);
  z-index:0;
  pointer-events:none;
}
.story-page-person{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:clamp(14px, 1.8vw, 26px) clamp(10px, 1.4vw, 20px);
  border-radius:10px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(185,133,42,.16);
  box-shadow:0 14px 32px rgba(61,36,24,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.story-page-person:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(61,36,24,.08);
}
.story-page-person-mark{
  display:block;
  margin-bottom:12px;
  color:rgba(185,133,42,.55);
  font-size:11px;
  font-weight:700;
  letter-spacing:1.2px;
}
.story-page-person-title{
  margin:0 0 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(45,32,24,.9);
}
.story-page-person-desc{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(12px, 1.1vw, 14px);
  line-height:1.65;
  color:rgba(45,32,24,.7);
}
.story-page-people-quote{
  margin:0 auto;
  max-width:720px;
  padding:clamp(24px, 4vw, 36px) clamp(28px, 5vw, 40px);
  text-align:center;
  border-left:none;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(185,133,42,.12), rgba(214,179,106,.08));
  border:1px solid rgba(185,133,42,.22);
}
.story-page-people-quote p{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(18px, 2.2vw, 22px);
  line-height:1.65;
  color:rgba(45,32,24,.85);
}
.story-page-people-quote em{
  font-family:var(--font-display);
  font-style:normal;
  font-size:1.35em;
  color:var(--gold);
}

.story-page-quote{
  position:relative;
  display:grid;
  place-items:center;
  min-height:300px;
  padding:64px 20px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.story-page-quote::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at center, rgba(249,245,240,.72) 0%, rgba(249,245,240,.28) 42%, rgba(72,18,28,.18) 100%);
}
.story-page-quote-inner{
  position:relative;
  z-index:1;
  max-width:820px;
  text-align:center;
  color:#3d2a1f;
}
.story-page-quote-frame{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:0 auto;
  max-width:620px;
}
.story-page-quote-frame + blockquote{
  margin:18px 0;
}
.story-page-quote-line{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(185,133,42,.65), transparent);
}
.story-page-quote-mark{
  font-family:var(--font-heading);
  font-size:clamp(42px, 6vw, 58px);
  line-height:1;
  color:var(--gold);
}
.story-page-quote blockquote{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3.4vw, 34px);
  line-height:1.45;
  font-weight:500;
}
.story-page-quote blockquote em{
  display:block;
  margin-top:8px;
  font-family:var(--font-display);
  font-style:normal;
  font-size:clamp(36px, 5vw, 52px);
  color:var(--gold);
}

.story-page-journey{
  padding:clamp(48px, 6vw, 68px) 0;
  background:#fbf6ee;
}
.story-page-journey .container--wide{
  padding:clamp(28px, 4vw, 40px);
  border-radius:calc(var(--radius) + 8px);
  border:1px solid rgba(185,133,42,.14);
  background:rgba(255,255,255,.45);
  box-shadow:0 18px 40px rgba(61,36,24,.05);
}
.story-page-journey-head{
  text-align:center;
  margin-bottom:clamp(36px, 5vw, 46px);
}
.story-page-journey-title{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 32px);
  font-weight:600;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:rgba(45,32,24,.92);
}
.story-page-journey-sub{
  margin:14px auto 0;
  max-width:52ch;
  font-family:var(--font-heading);
  font-size:15px;
  line-height:1.65;
  color:rgba(45,32,24,.62);
}
.story-page-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:20px;
}
.story-page-steps::before{
  content:"";
  position:absolute;
  top:78px;
  left:8%;
  right:8%;
  border-top:1px dashed rgba(185,133,42,.42);
  z-index:0;
}
.story-page-step{
  position:relative;
  z-index:1;
  text-align:center;
}
.story-page-step-media{
  width:min(152px, 90%);
  aspect-ratio:1;
  margin:0 auto 18px;
  padding:4px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(214,179,106,.9), rgba(185,133,42,.58));
  box-shadow:0 10px 24px rgba(185,133,42,.14);
}
.story-page-step-media img{
  width:100%;
  height:100%;
  border-radius:999px;
  object-fit:cover;
  border:3px solid #fffdf9;
}
.story-page-step-num{
  margin:0 0 6px;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}
.story-page-step-title{
  margin:0 0 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(45,32,24,.9);
}
.story-page-step-desc{
  margin:0 auto;
  max-width:24ch;
  color:rgba(45,32,24,.62);
  font-family:var(--font-heading);
  font-size:13px;
  line-height:1.55;
}

.story-page-letter{
  padding:clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 80px);
  background:#fbf6ee;
}
.story-page-letter-card{
  display:grid;
  grid-template-columns:minmax(220px, 280px) minmax(0, 1fr);
  gap:clamp(28px, 4vw, 48px);
  align-items:start;
  padding:clamp(28px, 4vw, 40px);
  border-radius:calc(var(--radius) + 8px);
  border:1px solid rgba(185,133,42,.2);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(214,179,106,.1), transparent 55%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(251,246,238,.88));
  box-shadow:var(--shadow);
}
.story-page-letter-card.story-page-letter-card--promise{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  grid-template-rows:auto auto;
  gap:0;
  align-items:stretch;
  padding:clamp(28px, 4vw, 40px) clamp(28px, 4vw, 40px) 0;
  overflow:hidden;
}
.story-page-letter-card--promise > .story-page-letter-main{
  grid-column:1 / -1;
  min-width:0;
}
.story-page-letter-card--promise > .story-page-letter-promise{
  grid-column:1 / -1;
  align-self:stretch;
  width:auto;
  min-width:0;
  margin:clamp(32px, 4vw, 40px) calc(-1 * clamp(28px, 4vw, 40px)) 0;
}
.story-page-letter-main{
  display:grid;
  grid-template-columns:minmax(220px, 280px) minmax(0, 1fr);
  gap:clamp(28px, 4vw, 48px);
  align-items:start;
  width:100%;
}
.story-page-letter-body{
  text-align:left;
}
.story-page-letter-promise{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  box-sizing:border-box;
  padding:clamp(28px, 3.5vw, 36px) clamp(24px, 3.5vw, 36px) clamp(24px, 3vw, 32px);
  border-top:1px solid rgba(185,133,42,.2);
  background:linear-gradient(180deg, rgba(237,226,208,.95), rgba(220,204,176,.88));
  border-radius:0 0 calc(var(--radius) + 4px) calc(var(--radius) + 4px);
}
.story-page-letter-promise-label{
  margin:0 0 clamp(18px, 2.5vw, 24px);
  font-size:11px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
  text-align:center;
  color:rgba(45,32,24,.55);
}
.story-page-letter-promise .story-loom-swatches--weaves{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:clamp(14px, 2vw, 20px);
  width:100%;
  max-width:100%;
  margin:0;
  align-self:stretch;
}
.story-page-letter-promise .story-loom-swatches--weaves .story-loom-swatch{
  width:100%;
  padding:clamp(18px, 2.5vw, 22px) 16px;
  background:rgba(255,253,249,.72);
  border:1px solid rgba(185,133,42,.18);
  border-radius:12px;
  text-align:center;
}
.story-page-letter-promise .story-loom-swatches--weaves .story-loom-swatch-name{
  font-size:clamp(17px, 1.9vw, 19px);
}
.story-page-letter-promise .story-loom-swatches--weaves .story-loom-swatch-tagline{
  font-size:clamp(12px, 1.3vw, 13px);
}
.story-page-letter-portrait{
  position:relative;
  padding:8px;
  border-radius:calc(var(--radius) + 4px);
  border:1px solid rgba(185,133,42,.22);
  background:rgba(255,253,249,.8);
  box-shadow:0 14px 32px rgba(61,36,24,.08);
}
.story-page-letter-portrait img{
  width:100%;
  height:auto;
  display:block;
  border-radius:calc(var(--radius) - 2px);
  object-fit:cover;
  aspect-ratio:1;
}
.story-page-letter-title{
  margin:0 0 18px;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 34px);
  font-weight:600;
  line-height:1.2;
  color:rgba(45,32,24,.94);
}
.story-page-letter-salutation{
  margin:0 0 16px;
  font-family:var(--font-heading);
  font-size:18px;
  font-style:italic;
  color:rgba(45,32,24,.78);
}
.story-page-letter-text p{
  margin:0 0 16px;
  font-family:var(--font-heading);
  font-size:clamp(15px, 1.6vw, 17px);
  line-height:1.78;
  color:rgba(45,32,24,.76);
}
.story-page-letter-closing{
  margin-top:20px !important;
  font-style:italic;
  color:rgba(92,46,42,.88);
}
.story-page-letter-sign{
  margin-top:clamp(24px, 3vw, 32px);
  padding-top:20px;
  border-top:1px solid rgba(185,133,42,.18);
}
.story-page-letter-warm{
  margin:0 0 10px;
  font-family:var(--font-heading);
  font-size:16px;
  font-style:italic;
  color:rgba(45,32,24,.68);
}
.story-page-letter-name{
  margin:0 0 4px;
  font-family:var(--font-display);
  font-size:clamp(32px, 4vw, 42px);
  line-height:1.1;
  color:var(--gold);
}
.story-page-letter-role{
  margin:0;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(45,32,24,.58);
}
.story-page-cta{
  padding:clamp(36px, 5vw, 52px) 0 clamp(48px, 6vw, 64px);
}
.story-page-cta-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px 28px;
  padding:clamp(24px, 4vw, 36px);
  border-radius:calc(var(--radius) + 8px);
  border:1px solid rgba(185,133,42,.2);
  background:linear-gradient(135deg, rgba(255,255,255,.88), rgba(251,246,238,.92));
  box-shadow:var(--shadow);
}
.story-page-cta-title{
  margin:8px 0 8px;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 32px);
  font-weight:600;
  color:rgba(45,32,24,.94);
}
.story-page-cta-lead{
  margin:0;
  max-width:42ch;
  font-family:var(--font-heading);
  font-size:15px;
  line-height:1.65;
  color:rgba(45,32,24,.68);
}
.story-page-values-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:0;
}
.story-page-value{
  padding:10px 22px;
  text-align:center;
  border-right:1px solid rgba(185,133,42,.16);
}
.story-page-value:last-child{
  border-right:none;
}
.story-page-value-icon{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  color:var(--gold);
}
.story-page-value-icon svg{
  width:34px;
  height:34px;
  fill:currentColor;
}
.story-page-value-title{
  margin:0 0 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(45,32,24,.92);
}
.story-page-value-desc{
  margin:0 auto;
  max-width:22ch;
  color:rgba(45,32,24,.62);
  font-family:var(--font-heading);
  font-size:13px;
  line-height:1.55;
}

.page-head{ padding:24px 0 8px }
.page-head--pdp{ padding-top:16px }
.page-head--pdp .page-title{ margin-top:10px }
.pdp-breadcrumbs{ margin-bottom:14px }
.pdp-back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  color:rgba(27,27,27,.68);
  text-decoration:none;
  transition:color .15s ease;
}
.pdp-back-link:hover{ color:rgba(185,133,42,.95) }
.pdp-back-btn{ width:100%; justify-content:center }
.page-title{
  margin:12px 0 0;
  font-family:var(--font-title);
  font-size:clamp(26px, 3.2vw, 34px);
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.breadcrumbs{ margin-top:8px; color:rgba(27,27,27,.62); font-size:13px }

/* —— Policy / FAQ pages —— */
body.page-policy .site-main{
  padding-top:0;
}
.policy-page{
  --policy-accent:#b9852a;
  --policy-accent-soft:rgba(185,133,42,.14);
  --policy-accent-border:rgba(185,133,42,.28);
  padding-bottom:32px;
}
.policy-hero{
  position:relative;
  overflow:hidden;
  padding:34px 0 28px;
  border-bottom:1px solid rgba(27,27,27,.08);
  background:
    radial-gradient(720px 280px at 12% -10%, var(--policy-accent-soft), transparent 62%),
    radial-gradient(560px 220px at 88% 0%, rgba(214,179,106,.1), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.35));
}
.policy-hero-ornament{
  position:absolute;
  pointer-events:none;
  color:rgba(185,133,42,.22);
}
.policy-hero-ornament--left{
  top:18px;
  left:4%;
  width:min(120px, 18vw);
  opacity:.55;
}
.policy-hero-ornament--right{
  right:-40px;
  top:20px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, var(--policy-accent-soft), transparent 68%);
}
.policy-hero .container--wide{
  position:relative;
  z-index:1;
}
.policy-hero-inner{
  width:100%;
  min-width:0;
  text-align:left;
}
.policy-hero-inner > *{
  margin-left:0;
  margin-right:auto;
}
.policy-breadcrumbs{
  margin-bottom:20px;
}
.policy-hero-head{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:14px;
}
.policy-hero-icon{
  flex-shrink:0;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:var(--policy-accent);
  background:rgba(255,255,255,.72);
  border:1px solid var(--policy-accent-border);
  box-shadow:0 10px 24px rgba(27,27,27,.06);
}
.policy-hero-icon svg{
  width:24px;
  height:24px;
}
.policy-hero-copy{
  min-width:0;
}
.policy-kicker{
  margin:0 0 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--policy-accent);
}
.policy-hero-copy .policy-title{
  margin:0;
}
.policy-title{
  margin:0 0 14px;
}
.policy-title-main{
  display:block;
  font-family:var(--font-heading);
  font-size:clamp(32px, 4.5vw, 48px);
  line-height:1.08;
  color:rgba(27,27,27,.92);
}
.policy-intro{
  margin:0 0 14px;
  max-width:none;
  color:rgba(27,27,27,.68);
  font-size:15px;
  line-height:1.75;
}
.policy-hero-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:rgba(27,27,27,.55);
}
.policy-hero-dot{
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgba(27,27,27,.28);
}
.policy-topic-count{
  font-weight:700;
  color:rgba(27,27,27,.62);
}
.policy-nav-mobile{
  display:none;
  border-bottom:1px solid rgba(27,27,27,.08);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(8px);
}
.policy-nav-mobile-list{
  list-style:none;
  margin:0;
  padding:12px 0;
  display:flex;
  gap:8px;
  overflow-x:auto;
  scrollbar-width:none;
}
.policy-nav-mobile-list::-webkit-scrollbar{
  display:none;
}
.policy-nav-mobile-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(27,27,27,.1);
  background:rgba(255,255,255,.7);
  color:rgba(27,27,27,.72);
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  transition:background .15s ease, border-color .15s ease;
}
.policy-nav-mobile-icon svg{
  width:16px;
  height:16px;
  color:var(--policy-accent);
}
.policy-nav-mobile-link.is-active{
  border-color:var(--policy-accent-border);
  background:var(--policy-accent-soft);
  color:rgba(27,27,27,.92);
}
.policy-body{
  padding-top:32px;
  padding-bottom:40px;
}
.policy-layout{
  display:grid;
  grid-template-columns:minmax(220px, 260px) minmax(0, 1fr);
  gap:30px 40px;
  align-items:start;
}
.policy-nav--desktop{
  position:sticky;
  top:96px;
  padding:18px 16px;
  border-radius:18px;
  border:1px solid rgba(27,27,27,.1);
  background:rgba(255,255,255,.68);
  box-shadow:0 14px 32px rgba(27,27,27,.06);
}
.policy-nav-label{
  margin:0 0 14px;
  padding:0 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(27,27,27,.52);
}
.policy-nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:4px;
}
.policy-nav-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 10px;
  border-radius:12px;
  color:rgba(27,27,27,.72);
  text-decoration:none;
  font-size:14px;
  line-height:1.35;
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
.policy-nav-link:hover{
  background:rgba(27,27,27,.04);
  color:rgba(27,27,27,.9);
  transform:translateX(2px);
}
.policy-nav-link.is-active{
  background:linear-gradient(135deg, var(--policy-accent-soft), rgba(255,255,255,.55));
  color:rgba(27,27,27,.92);
  font-weight:700;
  box-shadow:inset 3px 0 0 var(--policy-accent);
}
.policy-nav-icon{
  flex-shrink:0;
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(27,27,27,.08);
  color:var(--policy-accent);
}
.policy-nav-icon svg{
  width:16px;
  height:16px;
}
.policy-nav-text{
  min-width:0;
}
.policy-content{
  min-width:0;
}
.policy-faq-toolbar{
  margin-bottom:18px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(27,27,27,.08);
  background:rgba(255,255,255,.62);
  box-shadow:0 10px 24px rgba(27,27,27,.04);
}
.policy-faq-search{
  display:block;
  position:relative;
}
.policy-faq-search-icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  color:rgba(27,27,27,.42);
  pointer-events:none;
}
.policy-faq-search-icon svg{
  width:18px;
  height:18px;
}
.policy-faq-search-input{
  width:100%;
  padding-left:42px;
  border-radius:12px;
}
.policy-faq-search-hint{
  margin:10px 0 0;
  font-size:12px;
  color:rgba(27,27,27,.52);
}
.policy-section{
  position:relative;
  padding:22px 22px 22px 26px;
  margin-bottom:16px;
  border-radius:18px;
  border:1px solid rgba(27,27,27,.08);
  background:rgba(255,255,255,.62);
  box-shadow:0 12px 28px rgba(27,27,27,.05);
  overflow:hidden;
}
.policy-section::before{
  content:"";
  position:absolute;
  left:0;
  top:16px;
  bottom:16px;
  width:3px;
  border-radius:0 4px 4px 0;
  background:linear-gradient(180deg, var(--policy-accent), transparent);
}
.policy-section-head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:12px;
}
.policy-section-num{
  flex-shrink:0;
  min-width:40px;
  padding:6px 0;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--policy-accent);
}
.policy-section-title{
  margin:0;
  font-size:21px;
  font-family:var(--font-heading);
  line-height:1.25;
  color:rgba(27,27,27,.9);
}
.policy-section-text{
  margin:0 0 12px;
  color:rgba(27,27,27,.72);
  font-size:14px;
  line-height:1.8;
}
.policy-section-text:last-child,
.policy-list:last-child{
  margin-bottom:0;
}
.policy-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.policy-list li{
  display:grid;
  grid-template-columns:14px minmax(0, 1fr);
  gap:10px;
  align-items:start;
  color:rgba(27,27,27,.76);
  font-size:14px;
  line-height:1.7;
}
.policy-list-mark{
  width:8px;
  height:8px;
  margin-top:7px;
  border-radius:50%;
  background:var(--policy-accent);
  box-shadow:0 0 0 3px var(--policy-accent-soft);
}
.policy-faq-list{
  display:grid;
  gap:12px;
  margin-bottom:16px;
}
.policy-faq-item{
  border-radius:16px;
  border:1px solid rgba(27,27,27,.08);
  background:rgba(255,255,255,.64);
  box-shadow:0 10px 24px rgba(27,27,27,.04);
  overflow:hidden;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.policy-faq-item[open]{
  border-color:var(--policy-accent-border);
  box-shadow:0 14px 30px rgba(27,27,27,.07);
}
.policy-faq-item.is-hidden{
  display:none;
}
.policy-faq-question{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  gap:14px;
  align-items:center;
  padding:18px 18px;
  font-size:16px;
  font-weight:700;
  line-height:1.45;
  color:rgba(27,27,27,.88);
  cursor:pointer;
  list-style:none;
}
.policy-faq-question::-webkit-details-marker{
  display:none;
}
.policy-faq-num{
  display:grid;
  place-items:center;
  min-width:34px;
  height:34px;
  border-radius:10px;
  font-size:12px;
  font-weight:800;
  color:var(--policy-accent);
  background:var(--policy-accent-soft);
  border:1px solid var(--policy-accent-border);
}
.policy-faq-toggle{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid rgba(27,27,27,.1);
  background:rgba(255,255,255,.8);
  position:relative;
}
.policy-faq-toggle::before,
.policy-faq-toggle::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:2px;
  border-radius:2px;
  background:var(--policy-accent);
  transform:translate(-50%, -50%);
  transition:transform .2s ease, opacity .2s ease;
}
.policy-faq-toggle::after{
  transform:translate(-50%, -50%) rotate(90deg);
}
.policy-faq-item[open] .policy-faq-toggle::after{
  opacity:0;
  transform:translate(-50%, -50%) rotate(0deg);
}
.policy-faq-answer{
  padding:0 18px 18px 66px;
  color:rgba(27,27,27,.72);
  font-size:14px;
  line-height:1.8;
}
.policy-faq-answer p{
  margin:0;
}
.policy-contact-card{
  margin-top:22px;
  padding:26px 28px;
  border-radius:20px;
  border:1px solid var(--policy-accent-border);
  background:
    radial-gradient(480px 180px at 100% 0%, var(--policy-accent-soft), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
  box-shadow:0 16px 36px rgba(27,27,27,.07);
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:20px 28px;
  align-items:end;
}
.policy-contact-kicker{
  margin:0 0 6px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--policy-accent);
}
.policy-contact-title{
  margin:0 0 8px;
  font-size:clamp(24px, 3vw, 30px);
  font-family:var(--font-heading);
}
.policy-contact-text{
  margin:0;
  color:rgba(27,27,27,.68);
  font-size:14px;
  line-height:1.7;
  max-width:52ch;
}
.policy-contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}
.products-grid--catalog{ grid-template-columns:repeat(3, minmax(0, 1fr)); gap:20px }
.card.product-card{
  display:flex;
  flex-direction:column;
  height:100%;
  color:inherit;
}
.card.product-card--catalog{
  border-color:rgba(27,27,27,.08);
  background:rgba(255,255,255,.78);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card.product-card--catalog:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(0,0,0,.1);
  border-color:rgba(185,133,42,.22);
}
.product-card-link{
  display:flex;
  flex:1;
  flex-direction:column;
  min-width:0;
  text-decoration:none;
  color:inherit;
}
.product-card-copy{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:16px 16px 0;
}
.product-card-body{
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  padding:0 16px 18px;
}
.product-card--catalog .thumb{ aspect-ratio:3/4; flex-shrink:0 }
.product-card-collection-count{
  font-weight:700;
  font-size:13px;
  color:rgba(27,27,27,.62);
}
.product-card-collection-count--empty{
  color:rgba(27,27,27,.48);
  font-style:italic;
}
.product-card--collection .product-card-actions{
  margin-left:auto;
}
.product-card .name{
  font-family:var(--font-title);
  font-size:clamp(15px, 1.6vw, 17px);
  font-weight:700;
  line-height:var(--leading-title);
  letter-spacing:var(--tracking-title);
  margin:0 0 8px;
}
.product-card-price{
  flex:1;
  min-width:0;
}
.product-card-actions{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.product-card-view{
  text-decoration:none;
  white-space:nowrap;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}
.product-card-view:hover{
  background:rgba(185,133,42,.2);
  border-color:rgba(185,133,42,.35);
  transform:translateY(-1px);
}
.product-card-cart-form{
  flex-shrink:0;
  margin:0;
}
.product-card-cart-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  padding:0;
  border-radius:999px;
  border:1px solid rgba(185,133,42,.48);
  background:linear-gradient(180deg, rgba(230,198,120,.36), rgba(185,133,42,.22));
  color:#8a5f18;
  cursor:pointer;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.product-card-cart-btn .product-card-cart-icon{
  display:block;
  width:20px;
  height:20px;
  flex-shrink:0;
  pointer-events:none;
  shape-rendering:geometricPrecision;
}
.product-card-cart-btn .product-card-cart-icon-cart{
  vector-effect:non-scaling-stroke;
}
.product-card-cart-btn .product-card-cart-icon-plus circle{
  filter:drop-shadow(0 1px 1px rgba(90,58,10,.18));
}
.product-card-cart-btn:hover:not(:disabled){
  border-color:rgba(185,133,42,.62);
  background:linear-gradient(180deg, rgba(212,175,95,.42), rgba(185,133,42,.28));
  color:#7a5518;
  box-shadow:0 6px 16px rgba(185,133,42,.22);
  transform:translateY(-1px);
}
.product-card-cart-btn:focus-visible{
  outline:2px solid rgba(185,133,42,.55);
  outline-offset:2px;
}
.product-card-cart-btn:disabled,
.product-card-cart-btn.is-out-of-stock{
  opacity:.38;
  cursor:not-allowed;
  box-shadow:none;
  transform:none;
}
.product-card-cart-btn.is-cart-added{
  border-color:rgba(185,133,42,.72);
  background:linear-gradient(180deg, rgba(212,175,95,.5), rgba(185,133,42,.34));
  color:#6b4712;
}
.product-card-cart-btn.is-cart-error{
  border-color:rgba(176,48,48,.4);
  background:rgba(176,48,48,.1);
  color:#8f3030;
}
.product-card-desc{
  margin:0;
  flex:1;
  font-size:13px;
  line-height:1.55;
  color:rgba(27,27,27,.62);
}
.product-card-group{
  margin:8px 0 0;
  font-size:11px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:rgba(185,133,42,.95);
}
.product-card-foot{
  margin-top:14px !important;
  padding-top:12px;
  border-top:1px solid rgba(27,27,27,.08);
  align-items:center;
  gap:12px;
}
.price{ font-weight:900; font-size:15px }
.price--sale{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px 10px;
}
.price-now{ font-weight:900 }
.price-was{
  font-size:.88em;
  font-weight:600;
  color:rgba(27,27,27,.45);
  text-decoration:line-through;
}
.price-off{
  font-size:.72em;
  font-weight:700;
  letter-spacing:.02em;
  color:#8a6412;
  background:rgba(201,162,39,.14);
  padding:2px 8px;
  border-radius:999px;
}
.admin-product-price-was{
  font-size:.88em;
  font-weight:600;
  color:var(--admin-muted);
  text-decoration:line-through;
}

.pdp{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items:start;
}
.gallery{
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
}
.gallery-main{
  aspect-ratio: 4/3;
  background: rgba(185,133,42,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.gallery-main img,
.gallery-main-img,
#pdp-main-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gallery-main--empty{
  background: linear-gradient(135deg, rgba(185,133,42,.12), rgba(27,27,27,.04));
}
.gallery-thumbs{ display:grid; grid-template-columns: repeat(4,1fr); gap:10px; padding: 12px }
.thumb-mini{
  border-radius: 12px;
  border: 1px solid rgba(27,27,27,.10);
  background: rgba(185,133,42,.10);
  aspect-ratio: 1/1;
  padding:0;
  cursor:pointer;
  overflow:hidden;
}
.thumb-mini img,
.thumb-mini-img{ width:100%; height:100%; object-fit:cover; display:block }
.thumb-mini.is-active{ border-color: rgba(185,133,42,.75); box-shadow: 0 0 0 2px rgba(185,133,42,.25) }
.gallery-zoom-hint{
  margin:0;
  padding:8px 12px 12px;
  font-size:12px;
  color:rgba(27,27,27,.55);
  text-align:center;
  border-top:1px solid rgba(27,27,27,.06);
}
.gallery-main.is-zoomable,
.thumb-mini.is-zoomable{
  cursor:zoom-in;
}
.gallery-main.is-zoomable img,
.thumb-mini.is-zoomable img{
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
}
.pdp-zoom{
  position:fixed;
  inset:0;
  z-index:80;
  display:grid;
  place-items:center;
  padding:clamp(12px, 3vw, 24px);
}
.pdp-zoom[hidden]{
  display:none !important;
  pointer-events:none !important;
}
.pdp-zoom-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,8,8,.88);
  border:0;
  padding:0;
  cursor:zoom-out;
}
.pdp-zoom-panel{
  position:relative;
  z-index:1;
  width:min(1200px, 100%);
  max-height:calc(100vh - 48px);
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:12px;
  pointer-events:none;
}
.pdp-zoom-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  pointer-events:auto;
}
.pdp-zoom-counter{
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  color:rgba(255,255,255,.82);
}
.pdp-zoom-close{
  margin-left:auto;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.pdp-zoom-close:hover{ background:rgba(255,255,255,.16) }
.pdp-zoom-stage{
  position:relative;
  min-height:min(60vh, 520px);
  height:min(60vh, calc(100vh - 140px));
  max-height:calc(100vh - 140px);
  pointer-events:auto;
}
.pdp-zoom-viewport{
  width:100%;
  height:100%;
  overflow:auto;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  border-radius:12px;
  background:rgba(0,0,0,.22);
  display:flex;
  align-items:center;
  justify-content:center;
}
.pdp-zoom-viewport.is-panning{
  cursor:grabbing;
}
.pdp-zoom-viewport.is-panning .pdp-zoom-img{
  pointer-events:none;
}
.pdp-zoom-img{
  display:block;
  margin:0 auto;
  width:auto;
  height:auto;
  max-width:none;
  max-height:none;
  flex-shrink:0;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
  opacity:1;
  transition:opacity .18s ease;
  transform-origin:top left;
}
.pdp-zoom-level{
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  color:rgba(255,255,255,.82);
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}
.pdp-zoom-img.is-loading{
  opacity:.35;
}
.pdp-zoom-status{
  position:absolute;
  inset:auto 0 0;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.78);
  pointer-events:none;
}
.pdp-zoom-nav{
  display:flex;
  justify-content:center;
  gap:10px;
  pointer-events:auto;
}
.pdp-zoom-nav-btn{
  min-width:44px;
  height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}
.pdp-zoom-nav-btn:hover:not(:disabled){ background:rgba(255,255,255,.16) }
.pdp-zoom-nav-btn:disabled{
  opacity:.35;
  cursor:not-allowed;
}
@media (prefers-reduced-motion: reduce){
  .pdp-zoom-img{ transition:none }
}
.pdp-card{
  border-radius: calc(var(--radius) + 8px);
  border:1px solid var(--line);
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow);
  padding: 18px;
}
.pdp-card h2{
  margin:0 0 8px;
  font-family:var(--font-title);
  font-size:clamp(22px, 2.6vw, 26px);
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.spec{ margin:0; color:rgba(27,27,27,.68); line-height:var(--leading-body); font-size:15px }
.spec-list{ margin:14px 0 0; padding-left:18px; color:rgba(27,27,27,.70); line-height:var(--leading-body); font-size:15px }
.pdp-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.pdp-actions .pdp-back-btn{
  flex:1 1 100%;
  margin-bottom:2px;
}
.cart-page-panel{
  padding:clamp(18px, 3vw, 24px);
}
.cart-empty{
  display:grid;
  gap:12px;
  justify-items:start;
}
.cart-order-summary{
  display:grid;
  gap:14px;
}
.cart-order-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-bottom:12px;
  border-bottom:1px solid rgba(27,27,27,.08);
}
.cart-order-title{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(24px, 2.6vw, 30px);
  font-weight:700;
  line-height:1.1;
}
.cart-order-count{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(185,133,42,.12);
  border:1px solid rgba(185,133,42,.22);
  color:rgba(27,27,27,.78);
  font-size:11px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  white-space:nowrap;
}
.cart-order-list{
  display:grid;
  gap:12px;
}
.cart-item-card{
  border-color:rgba(27,27,27,.08);
  background:rgba(255,255,255,.78);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cart-item-card:hover{
  transform:translateY(-1px);
  border-color:rgba(185,133,42,.18);
  box-shadow:0 14px 28px rgba(0,0,0,.06);
}
.cart-item-body{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.cart-item-main{
  flex:1 1 220px;
  min-width:0;
}
.cart-item-main .name{
  margin:0;
  font-family:var(--font-title);
  font-size:clamp(15px, 1.6vw, 17px);
  font-weight:700;
  line-height:var(--leading-title);
  letter-spacing:var(--tracking-title);
}
.cart-item-main .meta{
  margin:6px 0 0;
}
.cart-item-qty-readonly{
  margin:6px 0 0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  color:rgba(185,133,42,.92);
}
.cart-item-side{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cart-item-qty-form{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.cart-item-qty-label{
  margin:0;
}
.cart-item-qty-stepper{
  display:inline-flex;
  align-items:stretch;
  border:1px solid rgba(27,27,27,.14);
  border-radius:10px;
  overflow:hidden;
  background:rgba(255,255,255,.92);
}
.cart-item-qty-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  min-height:38px;
  padding:0;
  border:0;
  background:rgba(185,133,42,.08);
  color:rgba(120,78,18,.92);
  cursor:pointer;
  transition:background .16s ease, color .16s ease, opacity .16s ease;
}
.cart-item-qty-btn svg{
  width:14px;
  height:14px;
  pointer-events:none;
}
.cart-item-qty-btn:hover:not(:disabled){
  background:rgba(185,133,42,.18);
  color:rgba(90,58,10,.95);
}
.cart-item-qty-btn:focus-visible{
  outline:2px solid rgba(185,133,42,.5);
  outline-offset:-2px;
  z-index:1;
}
.cart-item-qty-btn:disabled{
  opacity:.38;
  cursor:not-allowed;
}
.cart-item-qty-input{
  width:52px;
  min-height:38px;
  padding:8px 6px;
  text-align:center;
  border:0;
  border-left:1px solid rgba(27,27,27,.1);
  border-right:1px solid rgba(27,27,27,.1);
  border-radius:0;
  box-shadow:none;
}
.cart-item-qty-input:focus{
  box-shadow:none;
  outline:none;
  background:rgba(185,133,42,.06);
}
.cart-item-qty-form.is-syncing .cart-item-qty-input,
.cart-item-qty-form.is-syncing .cart-item-qty-btn{
  opacity:.72;
  pointer-events:none;
}
.cart-item-remove-btn{
  min-height:38px;
  padding:8px 12px;
}
.cart-item-discount-note{
  margin:6px 0 0;
  font-size:12px;
  font-weight:700;
  color:#8a6412;
}
.cart-item-price{
  font-size:18px;
  max-width:100%;
}
.cart-item-price .price--sale{
  justify-content:flex-end;
}
.cart-summary-copy{
  flex:1 1 220px;
  min-width:0;
}
.cart-summary-breakdown{
  margin:10px 0 12px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(201,162,39,.08);
  border:1px solid rgba(201,162,39,.16);
}
.cart-summary-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:13.5px;
  color:rgba(27,27,27,.72);
}
.cart-summary-row + .cart-summary-row{
  margin-top:6px;
}
.cart-summary-row--savings .cart-summary-row-value{
  color:#8a6412;
  font-weight:800;
}
.cart-summary-mrp{
  text-decoration:line-through;
}
.cart-summary-card,
.cart-actions-card{
  border-color:rgba(27,27,27,.08);
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(214,179,106,.14), transparent 62%),
    rgba(255,255,255,.84);
}
.cart-summary-body{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.cart-summary-note{
  margin:10px 0 0;
  color:rgba(27,27,27,.66);
  line-height:1.6;
  font-size:13.5px;
  max-width:48ch;
}
.cart-summary-total{
  font-size:22px;
  white-space:nowrap;
}
.cart-actions-body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.cart-back-link{
  justify-self:start;
  gap:8px;
}
.cart-order-summary--checkout .section-sub{
  color:rgba(120,78,18,.9);
  font-weight:700;
  letter-spacing:.5px;
}
.cart-order-summary--checkout .cart-order-count{
  background:linear-gradient(135deg, rgba(230,198,120,.5), rgba(185,133,42,.26));
  border-color:rgba(185,133,42,.48);
  color:#5c3f10;
}
.cart-order-summary--checkout .cart-item-card{
  border-color:rgba(185,133,42,.2);
  background:rgba(255,255,255,.9);
}
.cart-order-summary--checkout .cart-summary-breakdown{
  background:linear-gradient(135deg, rgba(230,198,120,.34), rgba(185,133,42,.14));
  border-color:rgba(185,133,42,.34);
}
.cart-order-summary--checkout .cart-summary-row--savings .cart-summary-row-value{
  color:#7a5518;
}
.cart-order-summary--checkout .cart-summary-card{
  border-color:rgba(185,133,42,.3);
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(230,198,120,.28), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,240,.88));
  box-shadow:0 12px 28px rgba(185,133,42,.1);
}
.cart-order-summary--checkout .cart-summary-total{
  color:#5c3f10;
}
.cart-order-summary--checkout .cart-back-link{
  width:100%;
  margin-top:10px;
  padding:13px 18px;
  font-size:14px;
}
.form-side .cart-order-summary{
  gap:12px;
}
.form-side .cart-order-summary .section-sub{
  margin-bottom:2px;
}
.form-side .cart-item-card:hover{
  transform:none;
  box-shadow:none;
}
.form-side .cart-summary-card{
  margin-top:4px;
}
.pdp-related{
  margin-top:clamp(28px, 4vw, 44px);
  padding-top:clamp(24px, 3vw, 36px);
  border-top:1px solid rgba(27,27,27,.08);
}
.pdp-related-head{
  margin-bottom:22px;
}
.pdp-related-title{
  margin:0 0 8px;
  font-family:var(--font-heading);
  font-size:clamp(26px, 3vw, 34px);
  font-weight:700;
  line-height:1.15;
}
.pdp-related-lead{
  margin:0;
  color:rgba(27,27,27,.66);
  font-size:14px;
  line-height:1.6;
  max-width:52ch;
}
.pdp-related-grid{
  gap:20px;
}

html:has(> body.admin-body){
  color-scheme:dark;
}
html:has(> body.admin-body[data-admin-theme="light"]){
  color-scheme:light;
}
.admin-body{
  background:var(--admin-bg);
  color:var(--admin-text);
  color-scheme:dark;
  font-family:var(--font-body);
  font-size:15px;
  line-height:var(--leading-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  --admin-bg:#0f0f12;
  --admin-surface:rgba(255,255,255,.03);
  --admin-surface-2:rgba(255,255,255,.04);
  --admin-surface-raised:rgba(255,255,255,.05);
  --admin-border:rgba(255,255,255,.08);
  --admin-divider:rgba(255,255,255,.08);
  --admin-text:rgba(255,255,255,.9);
  --admin-text-strong:rgba(255,255,255,.95);
  --admin-muted:rgba(255,255,255,.7);
  --admin-subtle:rgba(255,255,255,.58);
  --admin-label:rgba(255,255,255,.78);
  --admin-heading:rgba(255,255,255,.92);
  --admin-hint:rgba(255,255,255,.58);
  --admin-input-bg:rgba(255,255,255,.06);
  --admin-input-border:rgba(255,255,255,.14);
  --admin-placeholder:rgba(255,255,255,.42);
  --admin-header-bg:rgba(15,15,18,.85);
  --admin-sidebar-bg:rgba(15,15,18,.75);
  --admin-link-color:var(--admin-label);
  --admin-link-bg:rgba(255,255,255,.02);
  --admin-link-border:rgba(255,255,255,.06);
  --admin-table-head-bg:rgba(255,255,255,.03);
  --admin-table-border:rgba(255,255,255,.07);
  --admin-tag-bg:rgba(255,255,255,.05);
  --admin-tag-color:var(--admin-text);
  --admin-panel-shadow:0 18px 40px rgba(0,0,0,.25);
  --admin-btn-ghost-bg:rgba(255,255,255,.06);
  --admin-btn-ghost-border:rgba(255,255,255,.12);
  --admin-btn-ghost-color:var(--admin-text);
  --admin-kpi-bg:radial-gradient(800px 250px at 20% 0%, rgba(214,179,106,.14), transparent 55%), rgba(255,255,255,.03);
  --admin-dash-card-bg:rgba(12,10,8,.55);
  --admin-dash-sub:rgba(255,255,255,.62);
  --admin-dash-desc:rgba(255,255,255,.58);
  --admin-dash-link:rgba(255,255,255,.82);
  --admin-notice-text:rgba(255,255,255,.9);
  --admin-notice-success:#f0fdf4;
  --admin-notice-error:#fef2f2;
  --admin-notice-warn:#fffbeb;
  --admin-scrollbar-size:10px;
  --admin-scrollbar-track:rgba(255,255,255,.05);
  --admin-scrollbar-thumb:rgba(201,162,39,.48);
  --admin-scrollbar-thumb-hover:rgba(214,179,106,.78);
}
.admin-body .field label,
.admin-body .panel-body label:not(.admin-switch),
.admin-body .admin-field-label{
  color:var(--admin-label);
}
.admin-body .panel-body > h3,
.admin-body .panel-body h4,
.admin-body .admin-form-panel h3,
.admin-body .panel-title,
.admin-body .dash-launch-title,
.admin-body .dash-launch-card-title,
.admin-body .dash-screens-title,
.admin-body .dash-overview-title,
.admin-body .dash-recent-title,
.admin-body .admin-media-title{
  color:var(--admin-heading);
}
.admin-body .input,
.admin-body select,
.admin-body .textarea,
.admin-body textarea.input{
  background-color:var(--admin-input-bg);
  border-color:var(--admin-input-border);
  color:var(--admin-text);
}
.admin-body select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  min-height:44px;
  padding:10px 40px 10px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:500;
  line-height:1.35;
  cursor:pointer;
  color-scheme:dark;
  accent-color:#c9a227;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:16px;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.admin-body select:hover{
  border-color:rgba(201,162,39,.38);
}
.admin-body select:focus{
  border-color:rgba(201,162,39,.58);
  box-shadow:0 0 0 3px rgba(201,162,39,.18);
  outline:none;
}
.admin-body select:disabled{
  opacity:.58;
  cursor:not-allowed;
}
.admin-body select option,
.admin-body select optgroup{
  background:var(--admin-bg);
  color:var(--admin-text);
}
.admin-body select option:checked,
.admin-body select option:hover{
  background:rgba(201,162,39,.22);
  color:var(--admin-text-strong);
}
.admin-body .admin-select{
  position:relative;
  display:block;
  width:100%;
}
.admin-body .admin-select-native{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.admin-body .admin-select-trigger{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  min-height:44px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--admin-input-border);
  background-color:var(--admin-input-bg);
  color:var(--admin-text);
  font:inherit;
  font-size:14px;
  font-weight:500;
  line-height:1.35;
  text-align:left;
  cursor:pointer;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.admin-body .admin-select-trigger::after{
  content:"";
  flex-shrink:0;
  width:16px;
  height:16px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px;
  transition:transform .15s ease;
}
.admin-body .admin-select.is-open .admin-select-trigger::after{
  transform:rotate(180deg);
}
.admin-body .admin-select-trigger:hover{
  border-color:rgba(201,162,39,.38);
}
.admin-body .admin-select-trigger:focus-visible{
  border-color:rgba(201,162,39,.58);
  box-shadow:0 0 0 3px rgba(201,162,39,.18);
  outline:none;
}
.admin-body .admin-select-menu{
  position:absolute;
  z-index:120;
  top:calc(100% + 6px);
  left:0;
  right:0;
  max-height:min(280px, 50vh);
  overflow:auto;
  margin:0;
  padding:6px;
  list-style:none;
  border-radius:12px;
  border:1px solid var(--admin-border);
  background:var(--admin-bg);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.admin-body .admin-select-option{
  display:block;
  width:100%;
  padding:10px 12px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:var(--admin-text);
  font:inherit;
  font-size:14px;
  font-weight:500;
  line-height:1.35;
  text-align:left;
  cursor:pointer;
}
.admin-body .admin-select-option:hover,
.admin-body .admin-select-option:focus-visible{
  background:rgba(201,162,39,.16);
  color:var(--admin-text-strong);
  outline:none;
}
.admin-body .admin-select-option.is-selected{
  background:rgba(201,162,39,.24);
  color:var(--admin-text-strong);
}
.admin-body[data-admin-theme="light"] .admin-select-trigger::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a67c00' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.admin-body[data-admin-theme="light"] .admin-select-menu{
  background:#fffdf9;
  box-shadow:0 16px 40px rgba(15,23,42,.12);
}
.admin-body[data-admin-theme="light"] .admin-select-option:hover,
.admin-body[data-admin-theme="light"] .admin-select-option:focus-visible{
  background:rgba(201,162,39,.12);
}
.admin-body[data-admin-theme="light"] .admin-select-option.is-selected{
  background:rgba(201,162,39,.18);
}
.admin-body .input::placeholder,
.admin-body .textarea::placeholder{
  color:var(--admin-placeholder);
}
.admin-body .notice{
  color:var(--admin-notice-text);
}
.admin-body .notice-success,
.admin-body .notice.notice-success{
  border:1px solid rgba(34,197,94,.28);
  background:rgba(34,197,94,.12);
  color:var(--admin-notice-success);
}
.admin-body .notice-error,
.admin-body .notice.notice-error{
  border:1px solid rgba(239,68,68,.25);
  background:rgba(239,68,68,.08);
  color:var(--admin-notice-error);
}
.admin-body .notice-warn,
.admin-body .notice.notice-warn{
  border:1px solid rgba(234,179,8,.25);
  background:rgba(234,179,8,.10);
  color:var(--admin-notice-warn);
}
.admin-body.admin-ack-open{
  overflow:hidden;
}
.admin-ack-overlay{
  position:fixed;
  inset:0;
  z-index:2400;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 20px;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease,visibility .28s ease;
}
.admin-ack-overlay.is-open{
  opacity:1;
  visibility:visible;
}
.admin-ack-overlay.is-leaving{
  opacity:0;
}
.admin-toast{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  width:min(540px,calc(100vw - 40px));
  padding:44px 36px 36px;
  border-radius:22px;
  border:1px solid var(--admin-border);
  background:var(--admin-surface-raised);
  box-shadow:0 28px 80px rgba(0,0,0,.45);
  color:var(--admin-text);
  text-align:center;
  animation:admin-ack-pop .32s cubic-bezier(.2,.9,.3,1);
}
@keyframes admin-ack-pop{
  from{ opacity:0; transform:translateY(16px) scale(.94) }
  to{ opacity:1; transform:none }
}
.admin-toast--success{
  border-color:rgba(34,197,94,.38);
  background:linear-gradient(160deg,rgba(34,197,94,.16),var(--admin-surface-raised) 42%);
}
.admin-toast--error{
  border-color:rgba(239,68,68,.35);
  background:linear-gradient(160deg,rgba(239,68,68,.14),var(--admin-surface-raised) 42%);
}
.admin-toast-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:88px;
  height:88px;
  border-radius:50%;
  flex-shrink:0;
}
.admin-toast--success .admin-toast-icon{
  background:rgba(34,197,94,.18);
  color:#4ade80;
}
.admin-toast--error .admin-toast-icon{
  background:rgba(239,68,68,.16);
  color:#f87171;
}
.admin-toast-icon svg{
  width:44px;
  height:44px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.admin-toast-label{
  margin:0;
  font-size:clamp(24px,4vw,30px);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-.02em;
  color:var(--admin-text-strong);
}
.admin-toast--success .admin-toast-label{ color:#86efac }
.admin-toast--error .admin-toast-label{ color:#fca5a5 }
.admin-toast-message{
  margin:0;
  font-size:clamp(16px,2.4vw,19px);
  line-height:1.55;
  color:var(--admin-text);
  max-width:420px;
}
.admin-toast-ok{
  margin-top:6px;
  min-width:160px;
  padding:13px 32px;
  font-size:16px;
  font-weight:600;
}
.admin-body[data-admin-theme="light"] .admin-ack-overlay{
  background:rgba(15,15,18,.45);
}
.admin-body[data-admin-theme="light"] .admin-toast{
  background:#fff;
  box-shadow:0 24px 64px rgba(15,15,18,.18);
}
.admin-body[data-admin-theme="light"] .admin-toast--success .admin-toast-label{ color:#15803d }
.admin-body[data-admin-theme="light"] .admin-toast--error .admin-toast-label{ color:#b91c1c }
.admin-body[data-admin-theme="light"] .admin-toast--success .admin-toast-icon{
  background:rgba(34,197,94,.12);
  color:#16a34a;
}
.admin-body[data-admin-theme="light"] .admin-toast--error .admin-toast-icon{
  background:rgba(239,68,68,.1);
  color:#dc2626;
}
.admin-body .rbac-access-legend,
.admin-body .rbac-access-legend strong,
.admin-body .rbac-access-pill{
  color:var(--admin-text);
}
.admin-body .btn-ghost{
  background:var(--admin-btn-ghost-bg);
  border-color:var(--admin-btn-ghost-border);
  color:var(--admin-btn-ghost-color);
}
.admin-body .btn-ghost:hover{
  background:rgba(201,162,77,.14);
  border-color:rgba(201,162,77,.28);
  color:var(--admin-text-strong);
}
.admin-body .admin-section-divider{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--admin-divider);
}
.admin-body code{
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"]{
  background:var(--admin-bg);
  color:var(--admin-text);
  color-scheme:light;
  --admin-bg:#f4f1eb;
  --admin-surface:rgba(255,255,255,.92);
  --admin-surface-2:rgba(255,255,255,.98);
  --admin-surface-raised:#fff;
  --admin-border:rgba(27,27,27,.12);
  --admin-divider:rgba(27,27,27,.1);
  --admin-text:#1b1b1b;
  --admin-text-strong:#111;
  --admin-muted:rgba(27,27,27,.68);
  --admin-subtle:rgba(27,27,27,.55);
  --admin-label:rgba(27,27,27,.70);
  --admin-heading:#1b1b1b;
  --admin-hint:rgba(27,27,27,.58);
  --admin-input-bg:#fff;
  --admin-input-border:rgba(27,27,27,.16);
  --admin-placeholder:rgba(27,27,27,.42);
  --admin-header-bg:rgba(255,255,255,.92);
  --admin-sidebar-bg:rgba(255,255,255,.78);
  --admin-link-color:rgba(27,27,27,.68);
  --admin-link-bg:rgba(255,255,255,.55);
  --admin-link-border:rgba(27,27,27,.1);
  --admin-table-head-bg:rgba(27,27,27,.04);
  --admin-table-border:rgba(27,27,27,.08);
  --admin-tag-bg:rgba(27,27,27,.04);
  --admin-tag-color:#1b1b1b;
  --admin-panel-shadow:0 12px 32px rgba(27,27,27,.08);
  --admin-btn-ghost-bg:rgba(255,255,255,.72);
  --admin-btn-ghost-border:rgba(27,27,27,.14);
  --admin-btn-ghost-color:rgba(27,27,27,.86);
  --admin-kpi-bg:var(--admin-surface);
  --admin-dash-card-bg:#fff;
  --admin-dash-sub:rgba(27,27,27,.58);
  --admin-dash-desc:rgba(27,27,27,.58);
  --admin-dash-link:rgba(27,27,27,.78);
  --admin-notice-text:rgba(27,27,27,.82);
  --admin-notice-success:#14532d;
  --admin-notice-error:#7f1d1d;
  --admin-notice-warn:rgba(120,83,0,.92);
  --admin-scrollbar-track:rgba(27,27,27,.07);
  --admin-scrollbar-thumb:rgba(185,133,42,.52);
  --admin-scrollbar-thumb-hover:rgba(185,133,42,.78);
}

/* Admin scrollbars — gold thumb, theme-aware track (Firefox + WebKit) */
html:has(> body.admin-body),
.admin-body,
.admin-body *{
  scrollbar-width:thin;
  scrollbar-color:var(--admin-scrollbar-thumb) var(--admin-scrollbar-track);
}
html:has(> body.admin-body)::-webkit-scrollbar,
.admin-body ::-webkit-scrollbar{
  width:var(--admin-scrollbar-size);
  height:var(--admin-scrollbar-size);
}
html:has(> body.admin-body)::-webkit-scrollbar-track,
.admin-body ::-webkit-scrollbar-track{
  background:var(--admin-scrollbar-track);
  border-radius:999px;
}
html:has(> body.admin-body)::-webkit-scrollbar-thumb,
.admin-body ::-webkit-scrollbar-thumb{
  background:var(--admin-scrollbar-thumb);
  border-radius:999px;
  border:2px solid transparent;
  background-clip:padding-box;
}
html:has(> body.admin-body)::-webkit-scrollbar-thumb:hover,
.admin-body ::-webkit-scrollbar-thumb:hover{
  background:var(--admin-scrollbar-thumb-hover);
  background-clip:padding-box;
}
html:has(> body.admin-body)::-webkit-scrollbar-corner,
.admin-body ::-webkit-scrollbar-corner{
  background:var(--admin-scrollbar-track);
}

.admin-body[data-admin-theme="light"] .admin-mobile-nav{ background:rgba(255,255,255,.96); border-bottom-color:var(--admin-border) }
.admin-theme-toggle{ min-width:108px; white-space:nowrap }
.admin-menu-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:28;
}
.admin-body.admin-nav-open .admin-menu-overlay{ display:block }
.admin-body.admin-nav-open .admin-sidebar{
  position:fixed;
  top:var(--admin-header-offset, 64px);
  left:0;
  bottom:0;
  width:min(280px, 88vw);
  z-index:29;
  overflow-y:auto;
  box-shadow:12px 0 40px rgba(0,0,0,.35);
}
.rbac-access-wrap{ margin-top:12px }
.rbac-access-legend{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  align-items:center;
  margin:0 0 12px;
  font-size:13px;
  color:var(--admin-muted, rgba(255,255,255,.72));
}
.rbac-access-pill{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  border:1px solid var(--admin-border, rgba(255,255,255,.12));
}
.rbac-access-pill--none{ background:rgba(255,255,255,.04) }
.rbac-access-pill--read{ background:rgba(59,130,246,.14); border-color:rgba(59,130,246,.28) }
.rbac-access-pill--write{ background:rgba(34,197,94,.14); border-color:rgba(34,197,94,.28) }
.rbac-access-table .rbac-access-col{ width:108px; text-align:center; vertical-align:middle }
.rbac-access-page{ font-weight:600; min-width:140px }
.rbac-access-choice{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--admin-text, rgba(255,255,255,.9));
  padding:6px 4px;
}
.rbac-access-choice input{
  width:18px;
  height:18px;
  accent-color:#b9852a;
  cursor:pointer;
}
.rbac-access-choice span{
  display:block;
  line-height:1.2;
}
.notice-success{
  border-color:rgba(34,197,94,.28);
  background:rgba(34,197,94,.12);
  color:var(--admin-heading);
  margin-bottom:14px;
}
.admin-header{ background:var(--admin-header-bg); border-bottom:1px solid var(--admin-border); backdrop-filter:blur(10px); position:sticky; top:0; z-index:30 }
.admin-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  min-height:0;
  flex-wrap:nowrap;
  color:var(--admin-text);
}
.admin-brand{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
  flex:1 1 auto;
  font-weight:800;
}
.admin-header .brand-logo,
.admin-header .brand-logo--admin{
  --admin-logo-size:44px;
  width:var(--admin-logo-size);
  height:var(--admin-logo-size);
  max-width:var(--admin-logo-size);
  max-height:var(--admin-logo-size);
  flex-shrink:0;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(185,133,42,.18);
  box-shadow:0 6px 16px rgba(185,133,42,.14);
}
.admin-brand span{
  font-size:14px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.admin-actions{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  flex-wrap:nowrap;
  gap:8px;
}
.admin-page-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 12px;
  padding:10px 18px;
  border-bottom:1px solid var(--admin-border);
  background:var(--admin-sidebar-bg);
  color:var(--admin-text);
  font-size:14px;
}
.admin-page-back{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--admin-border);
  background:var(--admin-link-bg);
  color:var(--admin-text-strong);
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}
.admin-page-back:hover{
  background:rgba(214,179,106,.12);
  border-color:rgba(214,179,106,.22);
  text-decoration:none;
}
.admin-page-back svg{ flex-shrink:0 }
.admin-page-nav-sep{
  color:var(--admin-muted);
  user-select:none;
}
.admin-page-nav-current{
  font-weight:700;
  color:var(--admin-heading);
}
.admin-form-back{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.admin-form-back svg{ flex-shrink:0 }
.admin-form-required-note{
  margin:0 0 14px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--admin-border);
  background:rgba(185,133,42,.08);
  color:var(--admin-muted);
  font-size:13px;
  line-height:1.5;
}
.admin-shell{ display:grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 64px) }
.admin-sidebar{
  padding:16px;
  border-right:1px solid var(--admin-border);
  background:var(--admin-sidebar-bg);
}
.admin-link{
  display:flex;
  padding:11px 12px;
  border-radius:12px;
  color:var(--admin-link-color);
  border:1px solid var(--admin-link-border);
  background:var(--admin-link-bg);
  margin-bottom:10px;
}
.admin-link:hover{ background:rgba(214,179,106,.10); border-color:rgba(214,179,106,.18); color:var(--admin-text-strong) }
.admin-link.is-active{ background:rgba(185,133,42,.16); border-color:rgba(185,133,42,.28); color:var(--admin-text-strong) }
.admin-main{ padding:18px; color:var(--admin-text) }
.panel{
  border-radius:18px;
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
  box-shadow:var(--admin-panel-shadow);
  overflow:hidden;
}
.panel-head{ padding:16px; border-bottom:1px solid var(--admin-divider); display:flex; align-items:flex-end; justify-content:space-between; gap:14px }
.panel-title{ margin:0; font-size:18px; color:var(--admin-heading) }
.panel-sub{ margin:6px 0 0; color:var(--admin-muted); font-size:13px }
.panel-body{ padding: 16px }
.kpi{ display:grid; grid-template-columns: repeat(4,1fr); gap:12px }
.kpi-card{
  border-radius:16px;
  border:1px solid var(--admin-border);
  background:var(--admin-kpi-bg);
  padding:14px;
}
.kpi-name{ color:var(--admin-muted); font-size:12px; letter-spacing:.6px; text-transform:uppercase }
.kpi-val{ font-size:22px; font-weight:900; margin-top:8px; color:var(--admin-text) }

.dash-launch{
  position:relative;
  margin-bottom:22px;
  padding:18px 18px 16px;
  border-radius:18px;
  border:1px solid rgba(201,162,77,.22);
  background:
    radial-gradient(900px 280px at 0% 0%, rgba(201,162,77,.16), transparent 55%),
    radial-gradient(700px 220px at 100% 100%, rgba(201,162,77,.08), transparent 50%),
    rgba(255,255,255,.03);
}
.dash-launch-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.dash-kicker{
  margin:0 0 6px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(201,162,77,.88);
}
.dash-launch-title{
  margin:0;
  font-size:20px;
  font-weight:800;
  letter-spacing:.2px;
}
.dash-launch-sub{
  margin:6px 0 0;
  font-size:13px;
  color:var(--admin-dash-sub);
  max-width:52ch;
}
.dash-launch-badge{
  flex-shrink:0;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.4px;
  color:rgba(201,162,77,.95);
  background:rgba(201,162,77,.12);
  border:1px solid rgba(201,162,77,.28);
}
.dash-launch-track{
  position:absolute;
  left:28px;
  right:28px;
  top:118px;
  height:2px;
  background:linear-gradient(90deg, rgba(201,162,77,.08), rgba(201,162,77,.45), rgba(201,162,77,.08));
  pointer-events:none;
}
.dash-launch-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(168px, 1fr));
  gap:12px;
}
.dash-launch-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:168px;
  padding:14px 14px 12px;
  border-radius:14px;
  border:1px solid var(--admin-border);
  background:var(--admin-dash-card-bg);
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.dash-launch-card:hover{
  border-color:rgba(201,162,77,.42);
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(0,0,0,.28);
}
.dash-launch-card.is-readonly{
  opacity:.78;
}
.dash-launch-card-top{
  display:flex;
  align-items:center;
  gap:10px;
}
.dash-launch-step{
  flex-shrink:0;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:12px;
  font-weight:800;
  color:rgba(201,162,77,.95);
  background:rgba(201,162,77,.14);
  border:1px solid rgba(201,162,77,.35);
}
.dash-launch-card-title{
  margin:0;
  font-size:14px;
  font-weight:700;
  line-height:1.25;
}
.dash-launch-card-desc{
  margin:0;
  flex:1;
  font-size:12px;
  line-height:1.45;
  color:var(--admin-dash-desc);
}
.dash-launch-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:auto;
}
.dash-launch-create{
  flex:1;
  min-width:0;
  justify-content:center;
}
.dash-launch-locked{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  color:rgba(255,255,255,.5);
  background:var(--admin-surface-raised);
  border:1px solid rgba(255,255,255,.1);
}
.dash-screens{
  margin-bottom:22px;
}
.dash-screens-title,
.dash-overview-title,
.dash-recent-title{
  margin:0 0 10px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.2px;
}
.dash-screens-grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.dash-screen-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:var(--admin-dash-link);
  text-decoration:none;
  background:var(--admin-surface-raised);
  border:1px solid var(--admin-border);
  transition:background .2s ease, border-color .2s ease;
}
.dash-screen-link:hover{
  background:rgba(201,162,77,.12);
  border-color:rgba(201,162,77,.32);
  color:var(--admin-text-strong);
}
.dash-overview{
  margin-bottom:18px;
}
.dash-overview-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.dash-kpi-warn{
  border-color:rgba(245,158,11,.35) !important;
  background:radial-gradient(600px 200px at 20% 0%, rgba(245,158,11,.14), transparent 55%), rgba(255,255,255,.03) !important;
}
.dash-kpi-link{
  display:inline-block;
  margin-top:8px;
  font-size:11px;
  font-weight:600;
  color:rgba(201,162,77,.9);
  text-decoration:none;
}
.dash-kpi-link:hover{ text-decoration:underline }
.dash-recent{ margin-top:4px }
.admin-dash-recent-wrap{ overflow-x:auto; -webkit-overflow-scrolling:touch }
.admin-dash-order-link{
  font-weight:600;
  color:inherit;
  text-decoration:none;
}
.admin-dash-order-link:hover{ text-decoration:underline }
.admin-body[data-admin-theme="light"] .dash-launch{
  border-color:rgba(185,133,42,.25);
  background:linear-gradient(135deg, rgba(251,246,238,.95), rgba(255,255,255,.98));
}

.table{ width:100%; border-collapse:collapse; overflow:hidden; border-radius:16px; border:1px solid var(--admin-border) }
.table th, .table td{ padding:10px 10px; text-align:left; border-bottom:1px solid var(--admin-table-border) }
.table th{ color:var(--admin-muted); font-size:12px; letter-spacing:.6px; text-transform:uppercase; background:var(--admin-table-head-bg) }
.table td{ color:var(--admin-text); font-size:13px }
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--admin-border);
  background:var(--admin-tag-bg);
  color:var(--admin-tag-color);
  font-weight:700;
  font-size:12px;
}
.tag-ok{ border-color: rgba(34,197,94,.22); background: rgba(34,197,94,.10) }
.tag-warn{ border-color: rgba(234,179,8,.22); background: rgba(234,179,8,.10) }
.tag-bad{ border-color: rgba(239,68,68,.22); background: rgba(239,68,68,.10) }

.admin-hint{ margin:6px 0 0; font-size:12px; color:var(--admin-hint); line-height:1.5 }
.admin-hint code{ color:var(--admin-text); font-size:11px }

.admin-switch-form{ margin:0 }
.admin-switch{
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
}
.admin-switch input{
  position:absolute;
  opacity:0;
  width:0;
  height:0;
  pointer-events:none;
}
.admin-switch-track{
  position:relative;
  width:46px;
  height:26px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  transition:background .2s ease, border-color .2s ease;
  flex-shrink:0;
}
.admin-switch-thumb{
  position:absolute;
  top:2px;
  left:2px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 4px rgba(0,0,0,.28);
  transition:transform .2s ease;
}
.admin-switch input:checked + .admin-switch-track{
  background:rgba(34,197,94,.35);
  border-color:rgba(34,197,94,.55);
}
.admin-switch input:checked + .admin-switch-track .admin-switch-thumb{
  transform:translateX(20px);
}
.admin-switch-text{
  min-width:24px;
  font-size:13px;
  font-weight:600;
  color:var(--admin-text);
}
.admin-switch input:not(:checked) ~ .admin-switch-text{ color:var(--admin-subtle) }

.admin-body[data-admin-theme="light"] .admin-switch-track{
  background:rgba(27,27,27,.08);
  border-color:rgba(27,27,27,.14);
}
.admin-body[data-admin-theme="light"] .admin-switch input:checked + .admin-switch-track{
  background:rgba(22,163,74,.22);
  border-color:rgba(22,163,74,.45);
}
.admin-body[data-admin-theme="light"] .admin-switch-text{ color:var(--admin-text) }
.admin-body[data-admin-theme="light"] .admin-switch input:not(:checked) ~ .admin-switch-text{ color:var(--admin-muted) }

.btn-danger{
  background:rgba(239,68,68,.14);
  border:1px solid rgba(239,68,68,.45);
  color:#fecaca;
}
.btn-danger:hover{ background:rgba(239,68,68,.24); color:#fff }
.btn-danger.btn-sm{ padding:6px 10px; font-size:12px }
.admin-delete-product{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--admin-divider);
}
.admin-body[data-admin-theme="light"] .btn-danger{
  background:rgba(220,38,38,.08);
  border-color:rgba(220,38,38,.35);
  color:#b91c1c;
}
.admin-body[data-admin-theme="light"] .btn-danger:hover{ background:rgba(220,38,38,.16); color:#991b1b }
.admin-body[data-admin-theme="light"] .admin-delete-product{ border-top-color:var(--admin-border) }
.admin-media-title{ margin:0 0 8px; font-size:16px }
.admin-media-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
  gap:12px;
  margin:14px 0 18px;
}
.admin-media-item{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--admin-border);
  background:rgba(0,0,0,.2);
}
.admin-media-item.is-primary{ border-color:rgba(185,133,42,.55) }
.admin-media-item img{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block }
.admin-media-badge{
  position:absolute;
  top:8px;
  left:8px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(185,133,42,.92);
  color:#1b1b1b;
}
.admin-media-actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding:8px;
  background:rgba(0,0,0,.45);
}
.admin-media-actions form{ margin:0 }
.btn-sm{ padding:6px 10px; font-size:12px }
.admin-upload-form{ margin-top:8px }
.admin-table-thumb{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  display:block;
}
.admin-table-noimg{ color:var(--admin-subtle) }
.admin-table-muted{ color:var(--admin-subtle); font-size:13px }

.admin-list-panel{
  margin-top:8px;
  padding:16px 18px 18px;
  border-radius:16px;
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
}
.admin-list-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid var(--admin-divider);
}
.admin-list-title{
  margin:0;
  font-size:16px;
  font-weight:700;
  color:var(--admin-heading);
}
.admin-list-sub{
  margin:4px 0 0;
  font-size:13px;
  color:var(--admin-subtle);
}
.admin-list-empty{
  text-align:center;
  padding:28px 16px;
  color:var(--admin-muted);
}
.admin-list-empty p{ margin:0 0 14px }

/* —— Admin catalog board (aligned cards — Products, Groups, Orders, etc.) —— */
.admin-catalog-panel,
.admin-products-catalog{
  padding:0;
  overflow:hidden;
  background:
    radial-gradient(900px 320px at 100% -10%, rgba(201,162,77,.12), transparent 55%),
    rgba(255,255,255,.02);
}

/* Products — single panel (catalog stats, filters, list inside main Products card) */
.admin-products-panel--list .panel-body{
  padding-top:0;
}
.admin-products-panel-head{
  flex-direction:column;
  align-items:stretch;
  gap:0;
}
.admin-products-panel-head-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  width:100%;
}
.admin-products-panel-head-copy{
  flex:1;
  min-width:min(100%, 280px);
}
.admin-products-catalog-hint{
  margin:8px 0 0;
  font-size:13px;
  line-height:1.45;
  color:var(--admin-subtle);
}
.admin-products-panel-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.admin-bulk-toolbar{
  display:grid;
  gap:12px;
  margin-bottom:18px;
  padding:16px 18px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid rgba(185,133,42,.28);
  background:linear-gradient(180deg, rgba(185,133,42,.1), rgba(255,255,255,.03));
}
.admin-bulk-toolbar-title{
  margin:0 0 4px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(230,198,120,.95);
}
.admin-bulk-toolbar-note{
  margin:0;
  font-size:12px;
  line-height:1.55;
  color:rgba(255,255,255,.62);
}
.admin-bulk-toolbar-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.admin-bulk-upload-form{
  display:grid;
  gap:14px;
}
.admin-bulk-guide{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(185,133,42,.18);
  background:rgba(0,0,0,.12);
}
.admin-bulk-guide-title{
  margin:0 0 8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(230,198,120,.9);
}
.admin-bulk-guide-steps{
  margin:0 0 8px;
  padding-left:18px;
  font-size:12px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
}
.admin-bulk-guide-steps code{
  font-size:11px;
  padding:1px 5px;
  border-radius:4px;
  background:rgba(255,255,255,.08);
}
.admin-bulk-guide-hint{
  margin:0;
  font-size:11px;
  color:rgba(255,255,255,.55);
}
.admin-bulk-upload-section{
  display:grid;
  gap:8px;
}
.admin-bulk-upload-label{
  margin:0;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.78);
}
.admin-bulk-upload-divider{
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
  color:rgba(255,255,255,.42);
}
.admin-bulk-upload-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.admin-bulk-upload-status{
  margin:0;
  font-size:12px;
  color:rgba(230,198,120,.95);
}
.admin-bulk-upload-file{
  flex:1 1 220px;
  min-width:180px;
  display:grid;
  gap:4px;
  font-size:12px;
  color:rgba(255,255,255,.68);
}
.admin-bulk-upload-mode{
  display:grid;
  gap:4px;
  min-width:180px;
  flex:1 1 180px;
  font-size:12px;
  color:rgba(255,255,255,.68);
}
.admin-body[data-admin-theme="light"] .admin-bulk-guide{
  background:rgba(255,255,255,.72);
  border-color:rgba(185,133,42,.16);
}
.admin-body[data-admin-theme="light"] .admin-bulk-guide-title{
  color:#8a6412;
}
.admin-body[data-admin-theme="light"] .admin-bulk-guide-steps{
  color:rgba(27,27,27,.72);
}
.admin-body[data-admin-theme="light"] .admin-bulk-guide-steps code{
  background:rgba(185,133,42,.08);
}
.admin-body[data-admin-theme="light"] .admin-bulk-guide-hint,
.admin-body[data-admin-theme="light"] .admin-bulk-upload-label,
.admin-body[data-admin-theme="light"] .admin-bulk-upload-divider{
  color:rgba(27,27,27,.55);
}
.admin-body[data-admin-theme="light"] .admin-bulk-upload-status{
  color:#8a6412;
}
.admin-body[data-admin-theme="light"] .admin-bulk-toolbar{
  background:linear-gradient(180deg, rgba(185,133,42,.08), rgba(255,255,255,.92));
  border-color:rgba(185,133,42,.22);
}
.admin-body[data-admin-theme="light"] .admin-bulk-toolbar-title{
  color:#8a6412;
}
.admin-body[data-admin-theme="light"] .admin-bulk-toolbar-note,
.admin-body[data-admin-theme="light"] .admin-bulk-upload-mode{
  color:rgba(27,27,27,.62);
}
.admin-reports-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.admin-reports-head-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.admin-reports-period-nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}
.admin-reports-period-link{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
  color:var(--admin-text);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  transition:background .15s ease, border-color .15s ease, color .15s ease;
}
.admin-reports-period-link:hover{
  border-color:rgba(185,133,42,.35);
  color:rgba(230,198,120,.95);
}
.admin-reports-period-link.is-active{
  border-color:rgba(185,133,42,.55);
  background:rgba(185,133,42,.16);
  color:rgba(230,198,120,.98);
}
.admin-reports-range-bar{
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  gap:12px;
  align-items:center;
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
}
.admin-reports-range-title{
  margin:0 0 4px;
  font-size:20px;
  font-weight:800;
}
.admin-reports-range-meta{
  margin:0;
  font-size:12px;
  color:var(--admin-muted);
}
.admin-reports-partial-pill{
  display:inline-flex;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  background:rgba(185,133,42,.18);
  color:rgba(230,198,120,.95);
  font-size:11px;
  font-weight:700;
}
.admin-reports-date-form{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.admin-reports-date-label .input{
  min-width:150px;
}
.admin-reports-empty{
  margin-bottom:16px;
}
.admin-reports-stats{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-bottom:18px;
}
.admin-reports-stat{
  padding:14px 16px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
}
.admin-reports-stat--primary{
  border-color:rgba(185,133,42,.35);
  background:linear-gradient(180deg, rgba(185,133,42,.14), var(--admin-surface));
}
.admin-reports-stat.is-warn{
  border-color:rgba(214,120,44,.35);
}
.admin-reports-stat-value{
  display:block;
  font-size:22px;
  font-weight:800;
  line-height:1.2;
}
.admin-reports-stat-label{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:var(--admin-muted);
}
.admin-reports-stat-delta{
  display:block;
  margin-top:6px;
  font-size:11px;
  color:rgba(185,133,42,.9);
}
.admin-reports-chart-card,
.admin-reports-card{
  margin-bottom:16px;
  padding:16px 18px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
}
.admin-reports-section-title{
  margin:0 0 12px;
  font-size:15px;
  font-weight:800;
}
.admin-reports-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.admin-reports-chart{
  display:flex;
  align-items:flex-end;
  gap:6px;
  min-height:180px;
  padding-top:8px;
  overflow-x:auto;
}
.admin-reports-chart-col{
  display:flex;
  flex:1 1 0;
  min-width:28px;
  flex-direction:column;
  align-items:center;
  gap:6px;
  height:160px;
  justify-content:flex-end;
}
.admin-reports-chart-bar{
  width:100%;
  max-width:36px;
  border-radius:6px 6px 2px 2px;
  background:linear-gradient(180deg, rgba(230,198,120,.85), rgba(185,133,42,.55));
}
.admin-reports-chart-label{
  font-size:10px;
  color:var(--admin-muted);
  white-space:nowrap;
}
.admin-reports-table th,
.admin-reports-table td{
  font-size:13px;
}
.admin-reports-muted{
  margin:0;
  color:var(--admin-muted);
  font-size:13px;
}
.admin-reports-footnote{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.55;
  color:var(--admin-muted);
}
.btn.is-disabled{
  opacity:.35;
  pointer-events:none;
}
@media (max-width: 1100px){
  .admin-reports-stats{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .admin-reports-grid{ grid-template-columns:1fr; }
  .admin-reports-range-bar{ grid-template-columns:1fr; }
}
@media (max-width: 560px){
  .admin-reports-stats{ grid-template-columns:1fr; }
}
.admin-products-panel-stats{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--admin-divider);
  justify-content:flex-start;
}
.admin-products-panel--list .admin-catalog-filters{
  margin:14px 0 14px;
}
.admin-catalog-filters--products-simple{
  padding-top:14px;
}
.admin-products-search-top{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:flex-start;
  gap:14px 18px;
  margin-bottom:14px;
}
.admin-products-search-field{
  flex:1 1 280px;
  min-width:min(100%, 240px);
}
.admin-products-search-title{
  margin:0 0 10px;
  font-size:14px;
  font-weight:700;
  color:var(--admin-text);
  letter-spacing:.02em;
}
.admin-products-search-stats{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  justify-content:flex-start;
  gap:10px;
  flex:1 1 auto;
  min-width:min(100%, 280px);
}
.admin-products-search-stats .admin-catalog-stat{
  text-align:left;
  min-width:88px;
  padding:10px 12px;
}
.admin-products-search-stats .admin-catalog-stat-num,
.admin-products-search-stats .admin-catalog-stat-label{
  text-align:left;
}
.admin-body[data-admin-theme="light"] .admin-products-search-title{
  color:var(--admin-text);
}
.admin-groups-panel-head-top{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px 16px;
  width:100%;
}
.admin-groups-panel-head-copy{
  flex:1;
  min-width:min(100%, 280px);
}
.admin-groups-catalog-hint{
  margin:8px 0 0;
  font-size:12px;
  color:var(--admin-subtle);
}
.admin-groups-list-empty{
  margin:8px 0 4px;
}
.admin-groups-board--in-panel .admin-board{
  padding:0 0 4px;
}
.admin-groups-picker{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:flex-start;
  gap:14px 18px;
  margin:0 0 16px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.09);
  background:var(--admin-surface);
}
.admin-groups-picker--filter{
  align-items:flex-end;
}
.admin-groups-picker--edit{
  margin-bottom:20px;
  flex-direction:column;
  align-items:stretch;
}
.admin-groups-picker-field{
  flex:0 1 240px;
  min-width:200px;
}
.admin-groups-picker-form{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  margin:0;
}
.admin-groups-picker-stats{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  justify-content:flex-start;
  gap:10px;
  flex:1 1 auto;
  min-width:min(100%, 280px);
}
.admin-groups-picker-stats .admin-catalog-stat{
  text-align:left;
  min-width:88px;
  padding:10px 12px;
}
.admin-groups-picker-stats .admin-catalog-stat-num,
.admin-groups-picker-stats .admin-catalog-stat-label{
  text-align:left;
}
.admin-groups-picker-label{
  font-size:12px;
  font-weight:600;
  color:var(--admin-muted);
}
.admin-groups-picker--filter .admin-groups-picker-label,
.admin-groups-picker--edit .admin-groups-picker-label{
  margin-bottom:0;
}
.admin-groups-picker-select{
  width:100%;
  min-width:200px;
  max-width:280px;
}
.admin-body .vx-invoice-panel select,
.admin-body .rbac-access-table select{
  min-height:40px;
  font-size:13px;
}
.admin-groups-picker--edit .admin-groups-picker-select{
  max-width:100%;
}
.admin-groups-picker--edit .admin-hint{
  width:100%;
  margin:0;
}
.admin-body[data-admin-theme="light"] .admin-groups-picker{
  background:rgba(27,27,27,.03);
  border-color:rgba(27,27,27,.1);
}
.admin-body[data-admin-theme="light"] .admin-groups-catalog-hint{
  color:var(--admin-muted);
}
.admin-products-list-empty{
  margin:8px 0 4px;
}
.admin-products-board--in-panel{
  padding:0 0 4px;
}
.admin-catalog-panel + .admin-catalog-panel,
.admin-catalog-panel--nested{
  margin-top:16px;
}
.admin-board-workspace{
  padding:16px 18px 20px;
}
.admin-catalog-hero{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px 24px;
  padding:18px 20px 16px;
  border-bottom:1px solid var(--admin-divider);
}
.admin-catalog-kicker{
  margin:0 0 4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(201,162,77,.88);
}
.admin-catalog-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.admin-catalog-stat{
  min-width:92px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  text-align:center;
}
.admin-catalog-stat.is-warn{
  border-color:rgba(245,158,11,.35);
  background:rgba(245,158,11,.1);
}
.admin-catalog-stat-num{
  display:block;
  font-size:20px;
  font-weight:700;
  line-height:1.1;
  color:var(--admin-text-strong);
}
.admin-catalog-stat-label{
  display:block;
  margin-top:4px;
  font-size:11px;
  color:var(--admin-subtle);
  letter-spacing:.02em;
}

.admin-catalog-filters{
  margin:0 14px 14px;
  padding:16px 18px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 10px 28px rgba(0,0,0,.14);
}
.admin-catalog-filters--v2{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.admin-filter-bar-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.admin-filter-bar-kicker{
  margin:0 0 4px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(201,162,39,.78);
}
.admin-filter-bar-title{
  margin:0;
  font-size:17px;
  font-weight:600;
  color:var(--admin-heading);
  line-height:1.25;
}
.admin-filter-bar-hint{
  margin:6px 0 0;
  max-width:42ch;
  font-size:12px;
  line-height:1.45;
  color:var(--admin-subtle);
}
.admin-filter-bar-badge{
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(201,162,39,.28);
  background:linear-gradient(145deg, rgba(201,162,39,.16), rgba(201,162,39,.06));
  text-align:center;
}
.admin-filter-bar-badge-num{
  font-size:22px;
  font-weight:700;
  line-height:1;
  color:var(--admin-text-strong);
}
.admin-filter-bar-badge-of{
  margin-top:4px;
  font-size:10px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
}
.admin-filter-search{
  display:flex;
  align-items:stretch;
  gap:10px;
}
.admin-filter-search-field{
  position:relative;
  flex:1;
  min-width:0;
  display:block;
}
.admin-filter-search-icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  color:var(--admin-subtle);
  pointer-events:none;
}
.admin-filter-search-input{
  width:100%;
  min-height:44px;
  padding:10px 14px 10px 42px;
  border-radius:12px;
  font-size:14px;
}
.admin-filter-search-btn{
  flex-shrink:0;
  align-self:stretch;
  min-height:44px;
  padding-inline:18px;
}
.admin-filter-quick{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 16px;
}
.admin-filter-quick-block{
  margin:0;
  padding:12px 14px;
  border:1px solid var(--admin-border);
  border-radius:12px;
  background:rgba(0,0,0,.12);
}
.admin-filter-quick-label{
  display:block;
  margin:0 0 10px;
  padding:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-filter-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.admin-filter-pill{
  position:relative;
  margin:0;
  cursor:pointer;
}
.admin-filter-pill input{
  position:absolute;
  opacity:0;
  width:0;
  height:0;
  pointer-events:none;
}
.admin-filter-pill span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-size:12px;
  font-weight:600;
  color:var(--admin-muted);
  transition:border-color .15s, background .15s, color .15s, box-shadow .15s;
}
.admin-filter-pill:hover span{
  border-color:rgba(201,162,39,.35);
  color:var(--admin-text);
}
.admin-filter-pill input:checked + span{
  border-color:rgba(201,162,39,.55);
  background:linear-gradient(135deg, rgba(201,162,39,.28), rgba(201,162,39,.12));
  color:#fff;
  box-shadow:0 0 0 1px rgba(201,162,39,.18);
}
.admin-filter-pill input:focus-visible + span{
  outline:2px solid rgba(201,162,39,.65);
  outline-offset:2px;
}
.admin-filter-more{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px 12px;
}
.admin-filter-card{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
}
.admin-filter-card-label{
  display:block;
  margin:0 0 8px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-filter-card-select{
  width:100%;
  min-width:0;
}
.admin-filter-card:focus-within{
  border-color:rgba(201,162,39,.32);
  box-shadow:0 0 0 1px rgba(201,162,39,.12);
}
.admin-filter-card--sort .admin-filter-card-select{
  font-size:13px;
}
.admin-filter-foot{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:2px;
  border-top:1px solid rgba(255,255,255,.07);
}
.admin-filter-active{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 10px;
}
.admin-filter-active-label{
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.admin-filter-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px 5px 12px;
  border-radius:999px;
  border:1px solid rgba(201,162,39,.32);
  background:rgba(201,162,39,.1);
  font-size:11px;
  font-weight:600;
  color:var(--admin-text);
  text-decoration:none;
  transition:background .15s, border-color .15s;
}
.admin-filter-chip:hover{
  border-color:rgba(201,162,39,.5);
  background:rgba(201,162,39,.18);
  color:#fff;
}
.admin-filter-chip-x{
  font-size:14px;
  line-height:1;
  opacity:.75;
}
.admin-filter-chip--clear{
  border-color:rgba(255,255,255,.14);
  background:var(--admin-surface-raised);
  color:var(--admin-muted);
}
.admin-filter-chip--clear:hover{
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.1);
  color:rgba(255,255,255,.9);
}

.admin-audit-filters{
  margin:0 14px 14px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  display:flex;
  flex-direction:column;
  gap:12px;
}
.admin-audit-search{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.admin-audit-search-field{
  flex:1;
  min-width:220px;
}
.admin-audit-kind{
  margin:0;
  padding:0;
  border:0;
}
.admin-audit-kind-label{
  display:block;
  margin:0 0 8px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-filter-pill-link{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-size:12px;
  font-weight:600;
  color:var(--admin-muted);
  text-decoration:none;
  transition:border-color .15s, background .15s, color .15s;
}
.admin-filter-pill-link:hover,
.admin-filter-pill-link.is-active{
  border-color:rgba(201,162,39,.55);
  background:linear-gradient(135deg, rgba(201,162,39,.28), rgba(201,162,39,.12));
  color:#fff;
}
.admin-audit-table-wrap{
  margin:0 14px 14px;
}
.admin-audit-table td{
  vertical-align:top;
}
.admin-audit-when{
  white-space:nowrap;
  font-size:12px;
}
.admin-audit-who{
  font-weight:600;
}
.admin-audit-details{
  max-width:280px;
  font-size:12px;
  color:var(--admin-muted);
  line-height:1.45;
}
.audit-kind-tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.audit-kind-tag--create{
  border:1px solid rgba(34,197,94,.28);
  background:rgba(34,197,94,.12);
  color:rgba(187,247,208,.95);
}
.audit-kind-tag--edit{
  border:1px solid rgba(201,162,39,.28);
  background:rgba(201,162,39,.12);
  color:rgba(255,236,179,.95);
}
.audit-kind-tag--delete{
  border:1px solid rgba(239,68,68,.28);
  background:rgba(239,68,68,.12);
  color:rgba(254,202,202,.95);
}
.audit-kind-tag--other{
  border:1px solid rgba(255,255,255,.14);
  background:var(--admin-surface-raised);
  color:var(--admin-muted);
}
.admin-audit-pagination{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 14px 16px;
}
.admin-audit-page-meta{
  font-size:12px;
  color:var(--admin-subtle);
}
.admin-body[data-admin-theme="light"] .admin-audit-filters{
  background:var(--admin-surface-2);
  border-color:var(--admin-border);
}
.admin-body[data-admin-theme="light"] .admin-audit-kind-label{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-filter-pill-link{
  border-color:var(--admin-border);
  background:rgba(255,255,255,.7);
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] .admin-audit-details{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-audit-page-meta{ color:var(--admin-muted) }
.admin-catalog-filters-meta{
  margin:0;
  font-size:12px;
  color:var(--admin-subtle);
  line-height:1.45;
}
.admin-catalog-filters-meta strong{
  color:var(--admin-text);
  font-weight:600;
}

.admin-board,
.admin-products-board{
  padding:12px 14px 16px;
}
.admin-board-head,
.admin-board-card-grid,
.admin-products-board-head,
.admin-product-card-grid{
  display:grid;
  gap:10px 14px;
  align-items:center;
}
.admin-board-head,
.admin-products-board-head{
  padding:8px 16px 10px;
  margin-bottom:6px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-board-list,
.admin-products-board-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.admin-board-card,
.admin-product-card{
  position:relative;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.admin-board-card::before,
.admin-product-card::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:3px;
  border-radius:0 4px 4px 0;
  background:transparent;
}
.admin-board-card.is-live::before,
.admin-product-card.is-live::before{
  background:linear-gradient(180deg, rgba(201,162,77,.95), rgba(201,162,77,.35));
}
.admin-board-card.is-muted,
.admin-board-card.is-hidden-product,
.admin-product-card.is-hidden-product{
  opacity:.78;
  border-style:dashed;
}
.admin-board-card:hover,
.admin-product-card:hover{
  transform:translateY(-1px);
  border-color:rgba(201,162,77,.28);
  box-shadow:0 12px 28px rgba(0,0,0,.2);
}
.admin-board-card-grid,
.admin-product-card-grid{
  padding:12px 16px 12px 18px;
}

.admin-board-card-main,
.admin-product-card-main{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.admin-board-frame,
.admin-product-frame{
  flex-shrink:0;
  width:64px;
  height:76px;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(201,162,77,.35);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  background:
    linear-gradient(145deg, rgba(201,162,77,.12), rgba(255,255,255,.03));
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.admin-board-frame img,
.admin-product-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.admin-board-frame-empty,
.admin-product-frame-empty{
  font-size:10px;
  text-align:center;
  padding:6px;
  color:rgba(255,255,255,.4);
  line-height:1.3;
}
.admin-board-copy,
.admin-product-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.admin-board-title,
.admin-product-name{
  font-family:var(--font-title);
  font-weight:700;
  font-size:15px;
  color:var(--admin-heading);
  text-decoration:none;
  line-height:var(--leading-title);
  letter-spacing:var(--tracking-title);
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.admin-board-title:hover,
.admin-product-name:hover{ color:var(--gold-2) }
.admin-board-meta,
.admin-product-sku{
  font-size:11px;
  letter-spacing:.05em;
  color:var(--admin-subtle);
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.admin-board-ribbon,
.admin-product-ribbon{
  display:inline-flex;
  align-self:flex-start;
  margin-top:2px;
  padding:3px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--admin-muted);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.admin-board-pill,
.admin-product-pill{
  display:inline-flex;
  max-width:100%;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  color:var(--admin-text);
  background:rgba(201,162,77,.16);
  border:1px solid rgba(201,162,77,.28);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.admin-board-text,
.admin-product-group{
  font-size:12px;
  color:var(--admin-muted);
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.admin-board-price,
.admin-product-price{
  font-size:14px;
  font-weight:700;
  color:rgba(201,162,77,.95);
  white-space:nowrap;
}
.admin-product-card-price{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  text-align:right;
  min-width:0;
}
.admin-product-card-price .admin-product-price{
  width:100%;
  text-align:right;
}
.admin-product-card-stock{
  text-align:center;
  min-width:0;
}
.admin-product-stock-form{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-width:0;
}
.admin-product-stock-form.is-editing .admin-product-stock-input-wrap{
  border-radius:10px;
  padding:2px;
  border:1px solid rgba(201,162,39,.28);
  background:rgba(201,162,39,.08);
}
.admin-product-stock-row{
  display:flex;
  justify-content:center;
  min-width:0;
}
.admin-product-stock-input-wrap{
  width:100%;
  max-width:108px;
}
.admin-product-stock-input{
  width:56px;
  min-width:0;
  text-align:center;
  font-weight:700;
  padding-left:6px;
  padding-right:6px;
}
.admin-product-stock-input.tag{
  border-width:1px;
}
.admin-product-stock-input:disabled{
  opacity:1;
  cursor:default;
}
.admin-body[data-admin-theme="light"] .admin-product-stock-form.is-editing .admin-product-stock-input-wrap{
  border-color:rgba(166,124,0,.28);
  background:rgba(201,162,39,.08);
}
.admin-product-card-shop{
  display:flex;
  justify-content:center;
}
.admin-switch--compact .admin-switch-text{
  min-width:22px;
  font-size:12px;
}
.admin-board-card-actions .admin-row-actions,
.admin-product-card-actions .admin-row-actions{
  justify-content:flex-end;
}
.admin-required{
  color:rgba(252,165,165,.9);
}
.admin-readonly-field{
  cursor:default;
  color:rgba(201,162,77,.92) !important;
  background:rgba(255,255,255,.04) !important;
  border-color:rgba(255,255,255,.12) !important;
}
.admin-form-step-hint{
  margin:6px 0 0;
  font-size:13px;
  color:rgba(201,162,77,.88);
}
[data-group-name-error]:not([hidden]){
  margin-top:6px;
  font-size:12px;
  color:rgba(252,165,165,.95);
}
.admin-group-products-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.admin-group-products-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-group-products-list--board{
  max-height:240px;
  overflow-y:auto;
  padding-right:4px;
}
.admin-board-card-products{
  padding:0 16px 14px 18px;
  border-top:1px solid rgba(255,255,255,.07);
}
.admin-board-card-products-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  padding-top:12px;
  margin-bottom:10px;
}
.admin-board-card-products-title{
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-group-products-empty{
  margin:0;
  padding:4px 0 2px;
}
.admin-body[data-admin-theme="light"] .admin-board-card-products{
  border-top-color:rgba(27,27,27,.08);
}
.admin-body[data-admin-theme="light"] .admin-board-card-products-title{
  color:rgba(27,27,27,.5);
}
.admin-group-product-row{
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
  text-decoration:none;
  color:inherit;
  transition:border-color .2s ease, background .2s ease;
}
.admin-group-product-row:hover{
  border-color:rgba(201,162,77,.32);
  background:rgba(201,162,77,.08);
}
.admin-group-product-thumb{
  width:44px;
  height:44px;
  border-radius:8px;
  overflow:hidden;
  background:var(--admin-surface-raised);
  display:grid;
  place-items:center;
}
.admin-group-product-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.admin-group-product-empty{
  font-size:11px;
  color:var(--admin-subtle);
}
.admin-group-product-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.admin-group-product-name{
  font-family:var(--font-title);
  font-size:14px;
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.admin-group-product-sku{
  font-size:11px;
  color:rgba(255,255,255,.5);
}
.admin-group-product-price{
  font-size:12px;
  font-weight:700;
  color:rgba(201,162,77,.92);
  white-space:nowrap;
}
.admin-body[data-admin-theme="light"] .admin-group-product-row{
  background:rgba(27,27,27,.03);
  border-color:rgba(27,27,27,.1);
}
.admin-body[data-admin-theme="light"] .admin-readonly-field{
  color:rgba(120,80,20,.95) !important;
  background:rgba(27,27,27,.04) !important;
}
.admin-tag-field-row{
  display:flex;
  gap:8px;
  align-items:stretch;
  flex-wrap:wrap;
}
.admin-tag-field-row .input{
  flex:1;
  min-width:180px;
}
.admin-spec-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-spec-row{
  display:grid;
  grid-template-columns:minmax(120px, 0.9fr) minmax(160px, 1.4fr) auto;
  gap:8px;
  align-items:center;
}
.admin-spec-row .admin-spec-remove{
  white-space:nowrap;
}
@media (max-width: 720px){
  .admin-spec-row{
    grid-template-columns:1fr;
  }
}
.admin-tags-modal{
  position:fixed;
  inset:0;
  z-index:80;
  display:grid;
  place-items:center;
  padding:18px;
}
.admin-tags-modal[hidden]{
  display:none !important;
}
.admin-tags-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.admin-tags-modal-card{
  position:relative;
  width:min(640px, 100%);
  max-height:min(82vh, 720px);
  overflow:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(24,22,20,.98), rgba(16,14,12,.98));
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.admin-tags-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid var(--admin-divider);
}
.admin-tags-modal-body{
  padding:16px 18px 18px;
}
.admin-tags-modal-add{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.admin-tags-modal-add .input{
  flex:1;
  min-width:180px;
}
.admin-tags-modal-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-tags-modal-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto auto auto;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--admin-border);
}
.admin-tags-modal-count{
  font-size:11px;
  color:rgba(255,255,255,.5);
  white-space:nowrap;
}
.admin-body[data-admin-theme="light"] .admin-tags-modal-card{
  background:#fff;
  border-color:rgba(27,27,27,.12);
}
.admin-body[data-admin-theme="light"] .admin-tags-modal-head{
  border-bottom-color:rgba(27,27,27,.08);
}
.admin-body[data-admin-theme="light"] .admin-tags-modal-row{
  background:rgba(27,27,27,.03);
  border-color:rgba(27,27,27,.08);
}
.admin-board-cell--center{ text-align:center; display:flex; justify-content:center }
.admin-board-cell--right{ text-align:right }
.admin-board-cell--wide{ min-width:0 }
.admin-board-inline-form{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.admin-board-inline-form .input{ min-width:0 }
.admin-inventory-adjust-form{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:8px;
  width:100%;
  min-width:0;
}
.admin-inventory-adjust-form.is-editing{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(201,162,39,.22);
  background:rgba(201,162,39,.06);
}
.admin-inventory-adjust-row{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.admin-inventory-adjust-input-wrap{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
}
.admin-inventory-adjust-input-wrap .input{
  flex:1 1 auto;
  width:72px;
  min-width:0;
}
.admin-inventory-edit-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:32px;
  height:32px;
  padding:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  color:var(--admin-muted);
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease, color .15s ease;
}
.admin-inventory-edit-btn:hover:not(:disabled){
  border-color:rgba(201,162,39,.35);
  background:rgba(201,162,39,.12);
  color:#fff;
}
.admin-inventory-edit-btn:disabled{
  opacity:.38;
  cursor:not-allowed;
  border-color:rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
}
.admin-inventory-adjust-label{
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-inventory-adjust-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.admin-body[data-admin-theme="light"] .admin-inventory-adjust-form.is-editing{
  border-color:rgba(166,124,0,.22);
  background:rgba(201,162,39,.06);
}
.admin-body[data-admin-theme="light"] .admin-inventory-adjust-label{
  color:var(--admin-muted);
}
.admin-body[data-admin-theme="light"] .admin-inventory-edit-btn{
  border-color:rgba(0,0,0,.1);
  background:rgba(0,0,0,.03);
  color:var(--admin-muted);
}
.admin-body[data-admin-theme="light"] .admin-inventory-edit-btn:hover:not(:disabled){
  border-color:rgba(166,124,0,.35);
  background:rgba(201,162,39,.12);
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] .admin-inventory-edit-btn:disabled{
  opacity:.42;
  border-color:rgba(0,0,0,.06);
  background:rgba(0,0,0,.02);
}

/* Grid columns per admin screen */
.admin-board--products .admin-board-head,
.admin-board--products .admin-board-card-grid,
.admin-products-board-head,
.admin-product-card-grid{
  grid-template-columns:minmax(220px, 1.55fr) 88px 92px minmax(96px, 1fr) 96px 108px 88px 124px;
}
.admin-board--groups .admin-board-head,
.admin-board--groups .admin-board-card-grid{
  grid-template-columns:minmax(200px, 1.45fr) minmax(88px, 1fr) 72px 56px 88px 96px;
}
.admin-board--lookbook .admin-board-head,
.admin-board--lookbook .admin-board-card-grid{
  grid-template-columns:minmax(200px, 1.5fr) 108px 64px 64px 56px 80px 96px;
}
.admin-board--orders .admin-board-head,
.admin-board--orders .admin-board-card-grid{
  grid-template-columns:minmax(120px, 1fr) 108px minmax(120px, 1.1fr) 96px 88px minmax(130px, 1.15fr) 100px;
}
.admin-board--inventory .admin-board-head,
.admin-board--inventory .admin-board-card-grid{
  grid-template-columns:minmax(140px, 1.15fr) 100px 64px 64px 80px minmax(220px, 1.55fr);
}
.admin-board--payments .admin-board-head,
.admin-board--payments .admin-board-card-grid{
  grid-template-columns:108px 88px 88px 96px 88px minmax(100px, 1fr) 72px minmax(200px, 1.35fr);
}
.admin-board--invoices .admin-board-head,
.admin-board--invoices .admin-board-card-grid{
  grid-template-columns:minmax(120px, 1fr) minmax(100px, 1fr) 88px 110px 120px;
}
.admin-board--products .admin-board-head span:nth-child(6),
.admin-board--products .admin-board-head span:nth-child(7),
.admin-products-board-head span:nth-child(6),
.admin-products-board-head span:nth-child(7){ text-align:center }
.admin-board--products .admin-board-head span:nth-child(5),
.admin-products-board-head span:nth-child(5){ text-align:right }
.admin-board--products .admin-board-head span:nth-child(8),
.admin-products-board-head span:nth-child(8){ text-align:right }
.admin-board--orders .admin-board-head span:nth-child(4),
.admin-board--orders .admin-board-head span:nth-child(6),
.admin-board--orders .admin-board-head span:nth-child(7){ text-align:center }
.admin-board--orders .admin-board-head span:nth-child(4){ text-align:right }
.admin-board--payments .admin-board-head span:nth-child(4),
.admin-board--payments .admin-board-head span:nth-child(7){ text-align:center }
.admin-board--payments .admin-board-head span:nth-child(4){ text-align:right }
.admin-board--invoices .admin-board-head span:nth-child(5){ text-align:right }
.admin-board-frame--landscape{ width:72px; height:52px }

.admin-row-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  flex-wrap:nowrap;
}
.admin-row-actions form{ margin:0 }

.admin-body[data-admin-theme="light"] .admin-list-panel,
.admin-body[data-admin-theme="light"] .admin-catalog-panel,
.admin-body[data-admin-theme="light"] .admin-products-catalog{
  background:var(--admin-surface);
  border-color:var(--admin-border);
}
.admin-body[data-admin-theme="light"] .admin-catalog-hero{
  border-bottom-color:var(--admin-border);
}
.admin-body[data-admin-theme="light"] .admin-catalog-stat{
  background:rgba(27,27,27,.03);
  border-color:var(--admin-border);
}
.admin-body[data-admin-theme="light"] .admin-list-title,
.admin-body[data-admin-theme="light"] .admin-catalog-stat-num{ color:var(--admin-text) }
.admin-body[data-admin-theme="light"] .admin-list-sub,
.admin-body[data-admin-theme="light"] .admin-table-muted,
.admin-body[data-admin-theme="light"] .admin-catalog-stat-label{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-products-catalog-hint{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-products-panel-stats{
  border-top-color:var(--admin-border);
}
.admin-body[data-admin-theme="light"] .admin-catalog-filters{
  background:var(--admin-surface-2);
  border-color:var(--admin-border);
  box-shadow:0 8px 22px rgba(15,23,42,.06);
}
.admin-body[data-admin-theme="light"] .admin-filter-bar-title{ color:var(--admin-text) }
.admin-body[data-admin-theme="light"] .admin-filter-bar-hint{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-filter-bar-badge{
  border-color:rgba(166,124,0,.28);
  background:linear-gradient(145deg, rgba(201,162,39,.12), rgba(201,162,39,.04));
}
.admin-body[data-admin-theme="light"] .admin-filter-bar-badge-num{ color:var(--admin-text) }
.admin-body[data-admin-theme="light"] .admin-filter-bar-badge-of{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-filter-search-icon{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-filter-quick-block,
.admin-body[data-admin-theme="light"] .admin-filter-card{
  border-color:var(--admin-border);
  background:rgba(255,255,255,.55);
}
.admin-body[data-admin-theme="light"] .admin-filter-quick-label,
.admin-body[data-admin-theme="light"] .admin-filter-card-label,
.admin-body[data-admin-theme="light"] .admin-filter-active-label{
  color:var(--admin-muted);
}
.admin-body[data-admin-theme="light"] select{
  color-scheme:light;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a67c00' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.admin-body[data-admin-theme="light"] select:hover{
  border-color:rgba(166,124,0,.35);
}
.admin-body[data-admin-theme="light"] select:focus{
  border-color:rgba(166,124,0,.5);
  box-shadow:0 0 0 3px rgba(201,162,39,.14);
}
.admin-body[data-admin-theme="light"] select option,
.admin-body[data-admin-theme="light"] select optgroup{
  background:#fffdf9;
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] select option:checked,
.admin-body[data-admin-theme="light"] select option:hover{
  background:rgba(201,162,39,.16);
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] .admin-filter-card:focus-within{
  border-color:rgba(166,124,0,.28);
  box-shadow:0 0 0 1px rgba(201,162,39,.1);
}
.admin-body[data-admin-theme="light"] .admin-filter-pill span{
  border-color:var(--admin-border);
  background:rgba(255,255,255,.7);
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] .admin-filter-pill input:checked + span{
  border-color:rgba(166,124,0,.45);
  background:linear-gradient(135deg, rgba(201,162,39,.2), rgba(201,162,39,.08));
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] .admin-filter-foot{
  border-top-color:var(--admin-border);
}
.admin-body[data-admin-theme="light"] .admin-filter-chip{
  border-color:rgba(166,124,0,.28);
  background:rgba(201,162,39,.08);
  color:var(--admin-text);
}
.admin-body[data-admin-theme="light"] .admin-filter-chip--clear{
  border-color:var(--admin-border);
  background:rgba(255,255,255,.7);
  color:var(--admin-muted);
}
.admin-body[data-admin-theme="light"] .admin-catalog-filters-meta{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-catalog-filters-meta strong{ color:var(--admin-text) }
.admin-body[data-admin-theme="light"] .admin-board-card,
.admin-body[data-admin-theme="light"] .admin-product-card{
  background:linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
  border-color:var(--admin-border);
  box-shadow:0 8px 20px rgba(27,27,27,.06);
}
.admin-body[data-admin-theme="light"] .admin-board-title,
.admin-body[data-admin-theme="light"] .admin-product-name{ color:var(--admin-text) }
.admin-body[data-admin-theme="light"] .admin-board-meta,
.admin-body[data-admin-theme="light"] .admin-product-sku,
.admin-body[data-admin-theme="light"] .admin-board-text,
.admin-body[data-admin-theme="light"] .admin-product-group{ color:var(--admin-muted) }
.admin-body[data-admin-theme="light"] .admin-board-frame,
.admin-body[data-admin-theme="light"] .admin-product-frame{
  border-color:rgba(185,133,42,.35);
  background:linear-gradient(145deg, rgba(214,179,106,.12), rgba(255,255,255,.5));
}

.collection-pagination,
.admin-pagination{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:22px;
  padding-bottom:8px;
}
.collection-pagination-meta,
.admin-pagination-meta{
  font-size:13px;
  color:var(--muted);
}

.section-lead{ margin:8px 0 0; color:rgba(27,27,27,.66); line-height:1.65; max-width:52ch }

/* —— Collections —— */
body.page-collections .site-main{ padding-top:8px }
.collection-page{ padding-bottom:8px }
.collection-breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px 8px;
  margin:0 0 20px;
  font-size:13px;
  color:rgba(27,27,27,.58);
}
.collection-breadcrumbs a{
  color:rgba(27,27,27,.72);
  text-decoration:none;
  font-weight:600;
}
.collection-breadcrumbs a:hover{ color:rgba(185,133,42,.95) }
.collection-breadcrumbs-sep{ color:rgba(27,27,27,.35); user-select:none }
.collection-breadcrumbs-current{
  color:rgba(27,27,27,.88);
  font-weight:700;
}
.collection-kicker{
  margin:0 0 6px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(185,133,42,.92);
}
.collection-banner{
  display:flex;
  flex-direction:column;
  border-radius:calc(var(--radius) + 6px);
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow);
  overflow:hidden;
  margin-bottom:8px;
}
.collection-banner-media{
  position:relative;
  width:100%;
  aspect-ratio:21/9;
  max-height:min(42vw, 380px);
  min-height:200px;
  background:
    radial-gradient(800px 280px at 30% 20%, rgba(214,179,106,.28), transparent 55%),
    linear-gradient(135deg, rgba(185,133,42,.16), rgba(255,255,255,.4));
  overflow:hidden;
}
.collection-banner-media--empty{ aspect-ratio:3/1; max-height:220px; min-height:160px }
.collection-banner-media img,
.collection-banner-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.collection-banner-body{
  padding:28px 32px 32px;
  max-width:72ch;
}
.collection-banner-title{
  margin:0;
  font-family:var(--font-heading);
  font-size:clamp(28px, 4vw, 40px);
  font-weight:700;
  line-height:1.15;
  letter-spacing:.2px;
}
.collection-banner-desc{
  margin:14px 0 0;
  color:rgba(27,27,27,.72);
  font-size:15px;
  line-height:1.75;
}
.collection-banner-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:22px;
}
.collection-page-intro{
  padding:8px 0 24px;
  max-width:56ch;
}
.collection-page-title{
  margin:0;
  font-family:var(--font-title);
  font-size:clamp(30px, 4vw, 42px);
  font-weight:700;
  line-height:var(--leading-title);
  letter-spacing:var(--tracking-title);
}
.collection-page-lead{
  margin:12px 0 0;
  color:rgba(27,27,27,.68);
  font-family:var(--font-body);
  font-size:clamp(15px, 1.7vw, 17px);
  line-height:var(--leading-body);
  max-width:52ch;
}
.collection-page-lead--head{ margin-top:8px }
.collection-page-intro .btn{ margin-top:18px }
.collection-products-section{
  padding:32px 0 48px;
  background:linear-gradient(180deg, transparent, rgba(185,133,42,.04) 120px);
}
.collection-products-head{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  justify-content:space-between;
  gap:8px 16px;
  margin-bottom:22px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(27,27,27,.08);
}
.collection-products-title{
  margin:0;
  font-family:var(--font-title);
  font-size:clamp(18px, 2vw, 22px);
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.collection-products-count{
  margin:0;
  font-size:13px;
  font-weight:700;
  color:rgba(27,27,27,.55);
}
.collection-empty{
  text-align:center;
  padding:40px 24px;
  border-radius:var(--radius);
  border:1px dashed rgba(27,27,27,.14);
  background:rgba(255,255,255,.5);
}
.collection-empty p{ margin:0 0 16px; color:rgba(27,27,27,.65) }
.collection-top-band{
  padding:4px 0 10px;
}
.collection-page-header{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px 32px;
  padding:4px 0 8px;
}
.collection-page-header-copy{ max-width:62ch }
.collection-page-stats{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.collection-stat{
  min-width:108px;
  padding:14px 18px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid rgba(185,133,42,.18);
  background:linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,253,249,.72));
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}
.collection-stat-value{
  display:block;
  font-family:var(--font-heading);
  font-size:clamp(28px, 3vw, 34px);
  font-weight:700;
  line-height:1;
  color:rgba(27,27,27,.92);
}
.collection-stat-label{
  display:block;
  margin-top:6px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(27,27,27,.52);
}
.collection-group-hero{
  position:relative;
  overflow:hidden;
  border-radius:calc(var(--radius) + 8px);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-height:min(42vw, 320px);
  margin-bottom:6px;
}
.collection-group-hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.collection-group-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(27,27,27,.72) 0%, rgba(27,27,27,.42) 42%, rgba(27,27,27,.08) 100%),
    linear-gradient(0deg, rgba(27,27,27,.35), transparent 55%);
}
.collection-group-hero-body{
  position:relative;
  z-index:1;
  max-width:58ch;
  padding:clamp(28px, 5vw, 44px);
  color:#fffdf9;
}
.collection-page-title--hero,
.collection-page-lead--hero{ color:inherit }
.collection-page-lead--hero{
  margin-top:12px;
  color:rgba(255,253,249,.86);
  max-width:48ch;
}
.collection-group-hero .collection-kicker{ color:rgba(214,179,106,.95) }
.collection-browse-section{
  padding:18px 0 56px;
  background:
    linear-gradient(180deg, rgba(185,133,42,.03), transparent 140px),
    radial-gradient(900px 320px at 0% 0%, rgba(214,179,106,.08), transparent 60%);
}
.collection-browse-layout{
  display:grid;
  grid-template-columns:minmax(248px, 280px) minmax(0, 1fr);
  gap:28px 40px;
  align-items:start;
}
.collection-filter{
  position:sticky;
  top:calc(var(--header-height, 72px) + 16px);
  padding:18px 16px 16px;
  border-radius:calc(var(--radius) + 6px);
  border:1px solid rgba(185,133,42,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,253,249,.82));
  box-shadow:0 16px 36px rgba(0,0,0,.06);
}
.collection-filter-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.collection-filter-title{
  margin:0;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(27,27,27,.52);
}
.collection-filter-close{
  display:none;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border:none;
  border-radius:999px;
  background:rgba(27,27,27,.06);
  color:rgba(27,27,27,.72);
  cursor:pointer;
}
.collection-filter-search{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(27,27,27,.1);
  background:rgba(255,255,255,.78);
}
.collection-filter-search:focus-within{
  border-color:rgba(185,133,42,.42);
  box-shadow:0 0 0 3px rgba(185,133,42,.12);
}
.collection-filter-search-icon{ flex-shrink:0; color:rgba(27,27,27,.42) }
.collection-filter-search-input{
  width:100%;
  border:none;
  background:transparent;
  padding:10px 0;
  font:inherit;
  font-size:13px;
  color:var(--text);
  outline:none;
}
.collection-filter-search-input::placeholder{ color:rgba(27,27,27,.42) }
.collection-filter-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  max-height:min(58vh, 520px);
  overflow:auto;
  padding-right:2px;
  scrollbar-width:thin;
}
.collection-filter-divider{
  margin:8px 4px 4px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(27,27,27,.4);
}
.collection-filter-link{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px 12px;
  padding:10px 12px;
  border-radius:calc(var(--radius) - 2px);
  text-decoration:none;
  color:rgba(27,27,27,.78);
  font-size:14px;
  font-weight:600;
  line-height:1.35;
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.collection-filter-link:hover{
  background:rgba(185,133,42,.08);
  color:rgba(27,27,27,.92);
  transform:translateX(2px);
}
.collection-filter-link.is-active{
  background:linear-gradient(135deg, rgba(185,133,42,.2), rgba(214,179,106,.1));
  color:rgba(27,27,27,.95);
  box-shadow:inset 0 0 0 1px rgba(185,133,42,.24);
}
.collection-filter-link.is-hidden{ display:none }
.collection-filter-thumb{
  width:42px;
  height:42px;
  border-radius:12px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(214,179,106,.28), transparent 55%),
    rgba(185,133,42,.1);
  border:1px solid rgba(185,133,42,.14);
  flex-shrink:0;
}
.collection-filter-thumb--all{ color:rgba(185,133,42,.92) }
.collection-filter-thumb--photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.collection-filter-thumb-fallback{
  font-family:var(--font-heading);
  font-size:20px;
  font-weight:700;
  color:rgba(185,133,42,.95);
}
.collection-filter-copy{ min-width:0 }
.collection-filter-name{
  display:block;
  font-family:var(--font-title);
  font-size:15px;
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.collection-filter-meta{
  display:block;
  margin-top:2px;
  font-size:13px;
  font-weight:500;
  color:rgba(27,27,27,.48);
}
.collection-filter-count{
  flex-shrink:0;
  font-size:11px;
  font-weight:800;
  color:rgba(27,27,27,.45);
  padding:4px 8px;
  border-radius:999px;
  background:rgba(27,27,27,.05);
}
.collection-filter-link.is-active .collection-filter-count{
  color:rgba(185,133,42,.95);
  background:rgba(185,133,42,.14);
}
.collection-filter-foot{
  margin:14px 0 0;
  padding-top:12px;
  border-top:1px solid rgba(27,27,27,.08);
  font-size:12px;
  color:rgba(27,27,27,.58);
}
.collection-filter-foot strong{ color:rgba(27,27,27,.88) }
.collection-filter-backdrop{
  position:fixed;
  inset:0;
  z-index:24;
  background:rgba(27,27,27,.42);
  backdrop-filter:blur(2px);
}
.collection-filter-open{ display:none }
.collection-browse-main{ min-width:0 }
.collection-toolbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px 18px;
  margin-bottom:22px;
  padding:14px 16px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid rgba(27,27,27,.08);
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.collection-toolbar-start,
.collection-toolbar-end{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 12px;
}
.collection-toolbar-end{ margin-left:auto }
.collection-results-meta{
  margin:0;
  font-size:12px;
  font-weight:700;
  color:rgba(27,27,27,.52);
  white-space:nowrap;
}
.collection-active-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(185,133,42,.24);
  background:rgba(185,133,42,.1);
  color:rgba(27,27,27,.88);
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  transition:background .15s ease;
}
.collection-active-chip:hover{ background:rgba(185,133,42,.16) }
.collection-search,
.collection-sort{
  display:flex;
  align-items:center;
  gap:8px;
}
.collection-search{
  min-width:min(240px, 100%);
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(27,27,27,.1);
  background:#fff;
}
.collection-search:focus-within{
  border-color:rgba(185,133,42,.42);
  box-shadow:0 0 0 3px rgba(185,133,42,.12);
}
.collection-search-icon{ flex-shrink:0; color:rgba(27,27,27,.42) }
.collection-search-input{
  width:100%;
  min-width:0;
  border:none;
  background:transparent;
  padding:10px 0;
  font:inherit;
  font-size:13px;
  outline:none;
}
.collection-search-input::placeholder{ color:rgba(27,27,27,.42) }
.collection-sort-select{
  appearance:none;
  border:1px solid rgba(27,27,27,.1);
  border-radius:999px;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  padding:10px 34px 10px 14px;
  font:inherit;
  font-size:13px;
  font-weight:600;
  color:rgba(27,27,27,.82);
  cursor:pointer;
}
.collection-sort-select:focus{
  outline:none;
  border-color:rgba(185,133,42,.42);
  box-shadow:0 0 0 3px rgba(185,133,42,.12);
}
.collection-empty--page,
.collection-empty--search{
  text-align:center;
  padding:48px 28px;
}
.collection-empty-icon{
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  margin:0 auto 16px;
  border-radius:999px;
  background:rgba(185,133,42,.1);
  color:rgba(185,133,42,.92);
}
.collection-empty-title{
  margin:0 0 10px;
  font-family:var(--font-heading);
  font-size:26px;
  font-weight:700;
}
.collection-page--browse .products-grid--catalog{
  gap:20px;
}
.collection-page--browse .product-card--catalog.is-hidden{
  display:none;
}
.collection-page--browse [data-collection-grid] .product-card--catalog{
  animation:collection-card-in .45s ease both;
}
@keyframes collection-card-in{
  from{ opacity:0; transform:translateY(10px) }
  to{ opacity:1; transform:translateY(0) }
}
.collection-page--browse [data-collection-grid] .product-card--catalog:nth-child(2){ animation-delay:.04s }
.collection-page--browse [data-collection-grid] .product-card--catalog:nth-child(3){ animation-delay:.08s }
.collection-page--browse [data-collection-grid] .product-card--catalog:nth-child(4){ animation-delay:.12s }
.collection-page--browse [data-collection-grid] .product-card--catalog:nth-child(5){ animation-delay:.16s }
.collection-page--browse [data-collection-grid] .product-card--catalog:nth-child(6){ animation-delay:.2s }
.collection-groups-section{ padding-top:8px }

/* —— Lookbook —— */
body.page-lookbook .site-main{ padding-top:8px }
.lookbook-page{ padding-bottom:8px }
.lookbook-hero{
  display:flex;
  flex-direction:column;
  border-radius:calc(var(--radius) + 6px);
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow);
  overflow:hidden;
  margin-bottom:8px;
}
.lookbook-hero-media{
  position:relative;
  width:100%;
  aspect-ratio:21/9;
  max-height:min(42vw, 380px);
  min-height:200px;
  overflow:hidden;
  background:rgba(185,133,42,.08);
}
.lookbook-hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.lookbook-hero-body{
  padding:28px 32px 32px;
  max-width:72ch;
}
.lookbook-hero-title{
  margin:0;
  font-family:var(--font-title);
  font-size:clamp(28px, 4vw, 40px);
  font-weight:700;
  line-height:var(--leading-title);
  letter-spacing:var(--tracking-title);
}
.lookbook-hero-desc{
  margin:14px 0 0;
  color:rgba(27,27,27,.72);
  font-family:var(--font-body);
  font-size:clamp(15px, 1.7vw, 17px);
  line-height:var(--leading-body);
}
.lookbook-hero-body .btn{ margin-top:22px }
.lookbook-grid-section{ padding-top:8px }
.lookbook-grid{
  display:grid;
  gap:16px;
  align-items:stretch;
}
.lookbook-grid--matrix{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.lookbook-grid .lookbook-card{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}
.lookbook-grid--matrix .lookbook-card .thumb{
  aspect-ratio:3/4;
}
.lookbook-grid .lookbook-card .body{ flex:1 }

.modal{ position:fixed; inset:0; z-index:70; display:grid; place-items:center; padding: 18px }
.modal[hidden]{
  display:none !important;
  pointer-events:none !important;
}
.modal-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.45) }
.modal-card{
  position:relative;
  width: min(980px, calc(100% - 10px));
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  overflow:hidden;
}
.modal-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:16px; padding: 16px; border-bottom: 1px solid rgba(27,27,27,.10) }
.modal-title{ font-weight: 900; letter-spacing:.2px; font-size: 18px }
.modal-sub{ margin-top: 4px; color: rgba(27,27,27,.64); font-size: 13px }
.modal-body{ padding: 16px }
.upi-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 16px; align-items:start }
.upi-qr{ display:grid; gap:12px; justify-items:start }
.qr-box{
  width: 240px;
  height: 240px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(27,27,27,.12);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.qr-box canvas, .qr-box img{ width: 220px; height: 220px; }
.upi-meta{ font-size: 13px; color: rgba(27,27,27,.72); line-height:1.6 }
.upi-form .notice{ margin-bottom: 12px }

@media (max-width: 980px){
  .nav{ display:none }
  .menu-btn{ display:grid; place-items:center }
  .header-inner--hero{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    align-items:start;
    padding:14px 0 6px;
  }
  .hero-banner{
    min-height:clamp(520px, 78vh, 760px);
  }
  .hero-banner-shade{
    background:
      linear-gradient(180deg, rgba(251,246,238,.94) 0%, rgba(251,246,238,.82) 48%, rgba(251,246,238,.45) 100%);
  }
  .hero-slide{
    background-position:center top;
  }
  .hero-inner{
    max-width:none;
    min-height:380px;
    padding:16px 0 72px;
  }
  .hero-slider-btn--prev{ left:8px }
  .hero-slider-btn--next{ right:8px }
  .hero-slider-dots{ bottom:20px }
  .hero-features-wrap{ margin-top:28px }
  .features.hero-features{
    grid-template-columns:repeat(2,1fr);
    gap:22px 18px;
    padding:24px 22px;
  }
  .hero-features .feature{
    padding:0;
  }
  .hero-features .feature::after{ display:none }
  .features{ grid-template-columns: repeat(2,1fr) }
  .grid-4{ grid-template-columns: repeat(2,1fr) }
  .story{ grid-template-columns: 1fr; }
  .story-layout{ grid-template-columns:1fr }
  .story-visual{ order:-1 }
  .story-photo{ max-width:100% }
  .story-page-hero-inner{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .story-page-hero-media{
    order:-1;
    min-height:min(52vw, 380px);
  }
  .story-page-hero-media img{
    position:relative;
    inset:auto;
    min-height:min(52vw, 380px);
  }
  .story-page-hero-copy{
    padding:32px 24px 40px;
  }
  .story-page-steps{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap:24px }
  .story-page-steps::before{ display:none }
  .story-loom-path--four{ grid-template-columns:repeat(2, minmax(0, 1fr)); row-gap:28px }
  .story-scroll-milestone{
    grid-template-columns:72px 56px minmax(0, 1fr);
    grid-template-areas:
      "year node copy"
      ". art art";
  }
  .story-scroll-year{ grid-area:year; text-align:left; font-size:20px }
  .story-scroll-node{ grid-area:node; width:48px; height:48px }
  .story-scroll-copy{ grid-area:copy }
  .story-scroll-art{ grid-area:art; justify-self:stretch; max-width:none; margin-top:8px }
  .story-scroll-rail{ left:calc(72px + 28px) }
  .story-loom-head{
    grid-template-columns:1fr;
    align-items:stretch;
  }
  .story-loom-chapters{
    max-width:420px;
  }
  .story-loom-path{
    column-gap:clamp(6px, 1vw, 14px);
    padding-top:72px;
  }
  .story-loom-card{
    padding:14px 10px;
  }
  .story-loom-card-title{
    font-size:15px;
  }
  .story-loom-card-text{
    font-size:12px;
    line-height:1.55;
  }
  .story-loom-promise-frame{
    grid-template-columns:1fr;
  }
  .story-loom-promise-values{
    margin-inline:calc(-1 * clamp(20px, 4vw, 28px));
  }
  .story-loom-ribbon-band{
    grid-template-columns:1fr;
    text-align:center;
  }
  .story-loom-ribbon-item--center{
    border-left:none;
    border-right:none;
    border-top:1px solid rgba(214,179,106,.22);
    border-bottom:1px solid rgba(214,179,106,.22);
    padding:14px 0;
  }
  .story-loom-ribbon-quote{
    white-space:normal;
  }
  .story-page-people-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:10px;
  }
  .story-loom-path--four{ grid-template-columns:1fr }
  .story-scroll-frame{ padding:20px 16px }
  .story-scroll-milestone{
    grid-template-columns:56px minmax(0, 1fr);
    grid-template-areas:
      "node year"
      "copy copy"
      "art art";
    gap:10px 14px;
  }
  .story-scroll-year{ grid-area:year; text-align:left; align-self:center }
  .story-scroll-node{ grid-area:node; width:44px; height:44px }
  .story-scroll-copy{ grid-area:copy }
  .story-scroll-art{ grid-area:art }
  .story-scroll-rail{ display:none }
  .story-scroll-footer-ends{ flex-direction:column; gap:8px }
  .story-page-letter-card{
    grid-template-columns:1fr;
    max-width:640px;
    margin:0 auto;
  }
  .story-page-letter-card.story-page-letter-card--promise{
    max-width:none;
  }
  .story-page-letter-main{
    grid-template-columns:1fr;
  }
  .story-page-letter-title,
  .story-page-letter-sign{
    text-align:center;
  }
  .story-page-letter-body{
    text-align:left;
  }
  .story-page-letter-portrait{
    max-width:260px;
    margin:0 auto;
  }
  .story-page-letter-promise .story-loom-swatches--weaves{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    max-width:100%;
    margin-inline:0;
  }
  .story-page-letter-card--promise > .story-page-letter-promise{
    margin-inline:calc(-1 * clamp(20px, 4vw, 28px));
  }
  .story-page-values-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)) }
  .story-page-value{
    border-right:none;
    border-bottom:1px solid rgba(185,133,42,.16);
    padding:22px 18px;
  }
  .story-page-value:nth-child(2n){ border-right:none }
  .story-page-value:nth-child(-n+2){ border-bottom:1px solid rgba(185,133,42,.16) }
  .story-page-value:nth-last-child(-n+2){ border-bottom:none }
  .form-card .form-inner{ grid-template-columns: 1fr }
  .contact-layout{ grid-template-columns:1fr }
  .products-grid{ grid-template-columns: repeat(2,1fr) }
  .pdp{ grid-template-columns: 1fr }
  .admin-shell{ grid-template-columns: 1fr }
  .admin-sidebar{ display:none }
  .products-grid--catalog{ grid-template-columns:repeat(2, minmax(0, 1fr)) }
  .collection-banner-body{ padding:22px 20px 24px }
  .collection-banner-media{ aspect-ratio:16/9; max-height:none }
  .collection-banner-actions .btn{ flex:1 1 auto; min-width:140px; justify-content:center }
  .collection-products-head{ flex-direction:column; align-items:flex-start }
  .collection-page-header{
    flex-direction:column;
    align-items:flex-start;
  }
  .collection-group-hero{ min-height:260px }
  .collection-browse-layout{
    grid-template-columns:1fr;
    gap:16px;
  }
  .collection-filter-open{
    display:inline-flex;
    align-items:center;
    gap:8px;
  }
  .collection-filter{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    z-index:25;
    width:min(320px, calc(100vw - 40px));
    margin:0;
    border-radius:0;
    border-right:1px solid var(--line);
    transform:translateX(-105%);
    transition:transform .24s ease;
    overflow:auto;
  }
  .collection-filter.is-open{
    transform:translateX(0);
  }
  .collection-filter-close{ display:inline-flex }
  .collection-filter-nav{
    max-height:none;
    overflow:visible;
  }
  .collection-toolbar{
    flex-direction:column;
    align-items:stretch;
  }
  .collection-toolbar-end{
    width:100%;
    margin-left:0;
  }
  .collection-search{ flex:1 }
  .collection-sort{ width:100% }
  .collection-sort-select{ width:100% }
  .kpi{ grid-template-columns: repeat(2,1fr) }
  .dash-launch-track{ display:none }
  .dash-launch-grid{ grid-template-columns:1fr }
  .upi-grid{ grid-template-columns: 1fr }
  .qr-box{ width: 220px; height: 220px }
  .footer-banner{ background-position:70% center }
  .footer-banner::before{
    background:linear-gradient(
      180deg,
      #3d2418 0%,
      #42261b 34%,
      rgba(74, 36, 28, 0.88) 52%,
      rgba(74, 36, 28, 0.45) 68%,
      rgba(74, 36, 28, 0.12) 82%,
      transparent 100%
    );
  }
  .footer-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)) }
  .footer-col-brand{ grid-column:1 / -1; padding-right:0 }
  .footer-col-connect{ grid-column:1 / -1 }
}

@media (max-width: 720px){
  .story-loom-silk-track{
    display:none;
  }
  .story-loom-path{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px 10px;
    padding:0;
  }
  .story-loom-milestone{
    gap:10px;
  }
  .story-loom-bead{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
  }
  .story-loom-bead-core{
    width:18px;
    height:18px;
  }
  .story-loom-bead--origin .story-loom-bead-core{
    width:20px;
    height:20px;
  }
  .story-loom-card{
    margin-top:0;
    padding:14px 12px;
  }
  .story-page-people-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }
  .story-page-people-grid::before{
    display:none;
  }
  .story-loom-heritage-mark{
    width:84px;
    opacity:.85;
  }
  .story-loom-heritage-mark--start{
    top:112px;
    left:2px;
  }
  .story-loom-heritage-mark--end{
    right:2px;
    bottom:88px;
  }
  .story-loom-heritage-year{
    font-size:32px;
  }
  .story-loom-milestone:nth-child(6){
    grid-column:1 / -1;
    width:min(100%, 320px);
    margin-inline:auto;
  }
}

@media (max-width: 560px){
  .hero-banner .hero-copy--luxury .h1,
  .hero-banner .hero-copy--luxury h1.h1{ font-size:26px; letter-spacing:.1em }
  .hero-banner .hero-copy--luxury .h1-script{
    font-size:56px;
    transform:translateX(-2px);
  }
  .hero-banner .hero-copy--luxury .h1-line--elegant::after{
    width:88px;
    margin-top:10px;
  }
  .hero-banner .hero-copy--luxury .lead{ font-size:14px }
  .h1{ font-size: 30px }
  .h1-script{ font-size: 52px }
  .hero-actions{ flex-direction:column; align-items:flex-start }
  .hero-banner{ min-height:480px }
  .hero-inner{ min-height:320px; padding-bottom:64px }
  .hero-features-wrap{ margin-top:22px }
  .features.hero-features{
    grid-template-columns:1fr;
    padding:20px 18px;
  }
  .features{ grid-template-columns: 1fr }
  .grid-4{ grid-template-columns: 1fr }
  .products-grid,
  .products-grid--catalog{ grid-template-columns:1fr }
  .collection-banner-body{ padding:18px 16px 22px }
  .collection-banner-actions{ flex-direction:column; align-items:stretch }
  .collection-banner-actions .btn{ width:100%; text-align:center }
  .lookbook-hero-body{ padding:18px 16px 22px }
  .lookbook-hero-media{ aspect-ratio:16/9; max-height:none }
  .kpi{ grid-template-columns: 1fr }
  .story-page-steps{ grid-template-columns:1fr }
  .story-page-letter-promise .story-loom-swatches--weaves{
    grid-template-columns:1fr;
  }
  .story-page-cta-inner{ flex-direction:column; align-items:flex-start }
  .story-loom-heritage-mark{
    width:96px;
  }
  .story-loom-heritage-mark--start{
    top:128px;
    left:4px;
  }
  .story-loom-heritage-mark--end{
    right:4px;
    bottom:100px;
  }
  .story-loom-heritage-year{
    font-size:36px;
    letter-spacing:1px;
  }
  .story-loom-heritage-caption{
    font-size:7px;
    letter-spacing:1.2px;
  }
  .story-loom-card-badge{
    font-size:8px;
    letter-spacing:1.2px;
    padding:4px 10px;
  }
  .story-loom-swatches{
    grid-template-columns:1fr;
  }
  .story-page-values-grid{ grid-template-columns:1fr }
  .story-page-value{
    border-right:none;
    border-bottom:1px solid rgba(185,133,42,.14);
  }
  .story-page-value:last-child{ border-bottom:none }
  .footer-grid{ grid-template-columns:1fr }
  .footer-main{ border-radius:0 0 18px 18px }
  .whatsapp-fab{ right:16px; bottom:16px; width:52px; height:52px }
  .whatsapp-fab svg{ width:26px; height:26px }
}

.auth-card{
  max-width: 560px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(27,27,27,.08);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.auth-tabs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(27,27,27,.08);
  background: rgba(255,255,255,.72);
}
.auth-tab{
  padding: 14px 10px;
  text-align: center;
  color: rgba(27,27,27,.62);
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid transparent;
}
.auth-tab:hover{ color: rgba(27,27,27,.88); background: rgba(185,133,42,.05) }
.auth-tab.is-active{
  color: rgba(27,27,27,.92);
  border-bottom-color: rgba(185,133,42,.85);
  background: rgba(185,133,42,.08);
}
.auth-panel{ padding: 24px }
.auth-title{ margin: 0 0 8px; font-size: 28px }
.auth-sub{ margin: 0 0 18px; color: rgba(27,27,27,.66); line-height: 1.6 }
.auth-foot{ margin: 16px 0 0; color: rgba(27,27,27,.68); font-size: 14px }
.notice-error{
  border: 1px solid rgba(239,68,68,.25);
  background: rgba(239,68,68,.08);
  color: rgba(127,29,29,.92);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.notice-warn{
  border: 1px solid rgba(234,179,8,.25);
  background: rgba(234,179,8,.10);
  color: rgba(120,83,0,.92);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.auth-card--customer .auth-panel{ padding-top: 28px }
.page-login .site-main,
.page-register .site-main,
.page-cart .site-main,
.page-checkout .site-main{
  padding-top:8px;
}
.page-head--auth{
  padding-top:28px;
  padding-bottom:12px;
}
.section-auth{
  padding-top:8px;
  padding-bottom:48px;
}
.section-auth .auth-card{
  box-shadow:0 18px 45px rgba(61,36,24,.10);
}
.auth-form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-start;
}
.site-footer--compact .footer-main{
  border-radius:18px 18px 0 0;
  margin-top:0;
  padding-top:24px;
}
.site-footer--compact .footer-copyright{
  margin-top:0;
  padding-top:0;
  border-top:0;
}
.site-footer--compact .whatsapp-fab{
  bottom:20px;
}
.auth-tabs--staff{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.auth-tabs--staff .auth-tab{
  color: rgba(255,255,255,.68);
  border-bottom: 2px solid transparent;
}
.auth-tabs--staff .auth-tab:hover{
  color: rgba(255,255,255,.92);
  background: rgba(214,179,106,.08);
}
.auth-tabs--staff .auth-tab.is-active{
  color: rgba(255,255,255,.95);
  border-bottom-color: rgba(185,133,42,.85);
  background: rgba(185,133,42,.12);
}
.checkout-steps{
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.checkout-step{
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(27,27,27,.10);
  background: rgba(255,255,255,.72);
  color: rgba(27,27,27,.55);
  font-weight: 700;
  font-size: 13px;
}
.checkout-step.is-active{
  border-color:rgba(185,133,42,.55);
  background:linear-gradient(135deg, rgba(230,198,120,.42), rgba(185,133,42,.2));
  color:#5c3f10;
  box-shadow:0 8px 20px rgba(185,133,42,.14);
}
.checkout-step.is-done{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
  color: rgba(27,27,27,.75);
}
.checkout-payment-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-bottom:18px;
}
.checkout-order-breakdown{
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(230,198,120,.34), rgba(185,133,42,.14));
  border:1px solid rgba(185,133,42,.32);
}
.checkout-order-breakdown-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
  color:rgba(27,27,27,.72);
}
.checkout-order-breakdown-row + .checkout-order-breakdown-row{
  margin-top:6px;
}
.checkout-order-breakdown-row--savings span:last-child{
  color:#7a5518;
  font-weight:800;
}
.checkout-order-item-was{
  margin-left:6px;
  text-decoration:line-through;
  color:rgba(27,27,27,.45);
}
.checkout-order-item-off{
  margin-left:6px;
  font-size:12px;
  font-weight:700;
  color:#8a6412;
}
.checkout-order-meta{
  color:rgba(27,27,27,.68);
  line-height:1.7;
  margin:10px 0 16px;
}
.checkout-panel-title{
  margin:0 0 10px;
  font-size:15px;
  font-weight:700;
}
.checkout-order-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checkout-order-list li{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(27,27,27,.08);
  background:rgba(255,255,255,.55);
}
.checkout-order-item-name{
  display:block;
  font-weight:700;
  margin-bottom:4px;
}
.checkout-order-item-meta{
  display:block;
  font-size:12px;
  color:rgba(27,27,27,.62);
}
.checkout-details-list{
  margin:12px 0 0;
  display:grid;
  gap:12px;
}
.checkout-details-row{
  display:grid;
  grid-template-columns:92px minmax(0, 1fr);
  gap:10px;
  align-items:start;
}
.checkout-details-row dt{
  margin:0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:rgba(27,27,27,.55);
}
.checkout-details-row dd{
  margin:0;
  color:rgba(27,27,27,.82);
  line-height:1.6;
  font-size:14px;
}
.checkout-details-row dd span{
  display:block;
}
.checkout-payment-actions{
  margin-top:0;
}
.checkout-payment-buttons{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.checkout-confirmation-hero{
  margin-bottom:18px;
  text-align:center;
}
.checkout-confirmation-title{
  margin:0 0 12px;
  font-family:var(--font-heading);
  font-size:clamp(28px, 3.4vw, 38px);
  font-weight:700;
  line-height:1.12;
}
.checkout-confirmation-lead{
  margin:0 auto 18px;
  max-width:58ch;
  color:rgba(27,27,27,.68);
  line-height:1.7;
  font-size:14px;
}
.checkout-confirmation-order-id{
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  padding:14px 22px;
  border-radius:16px;
  border:1px solid rgba(185,133,42,.24);
  background:rgba(185,133,42,.08);
}
.checkout-confirmation-order-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:rgba(27,27,27,.55);
}
.checkout-confirmation-order-no{
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 32px);
  color:var(--gold);
}
.checkout-confirmation-status{
  margin:14px 0 0;
  color:rgba(27,27,27,.68);
  font-size:14px;
}
.checkout-confirmation-email{
  margin:10px 0 0;
  color:rgba(27,27,27,.72);
  font-size:14px;
}
.checkout-tracking-panel{
  margin-bottom:24px;
}
.checkout-tracking-note{
  margin:16px 0 0;
  color:rgba(27,27,27,.68);
  font-size:14px;
}
.order-tracking-steps{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:0;
}
.order-tracking-step{
  display:grid;
  grid-template-columns:20px 1fr;
  gap:12px;
  padding:0 0 18px;
  position:relative;
}
.order-tracking-step:not(:last-child)::before{
  content:"";
  position:absolute;
  left:9px;
  top:18px;
  bottom:0;
  width:2px;
  background:rgba(27,27,27,.12);
}
.order-tracking-step.is-done:not(:last-child)::before{
  background:rgba(185,133,42,.45);
}
.order-tracking-marker{
  width:18px;
  height:18px;
  margin-top:2px;
  border-radius:50%;
  border:2px solid rgba(27,27,27,.18);
  background:#fff;
  position:relative;
  z-index:1;
}
.order-tracking-step.is-done .order-tracking-marker{
  border-color:var(--gold);
  background:var(--gold);
}
.order-tracking-step.is-active .order-tracking-marker{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(185,133,42,.18);
}
.order-tracking-label{
  display:block;
  font-size:15px;
}
.order-tracking-hint{
  display:block;
  margin-top:4px;
  color:rgba(27,27,27,.62);
  font-size:13px;
}
.order-tracking-step.is-upcoming .order-tracking-label{
  color:rgba(27,27,27,.45);
}
.order-tracking-current{
  margin:4px 0 0;
  font-size:14px;
  color:rgba(27,27,27,.72);
}
.order-tracking--cancelled{
  margin-top:12px;
}
.order-tracking-cancelled{
  margin:0;
  color:#8b2e2e;
  font-size:15px;
}
.admin-order-status-form{
  min-width:0;
}
.admin-order-status-select{
  width:100%;
  min-width:148px;
  max-width:100%;
  padding:8px 10px;
  font-size:13px;
  cursor:pointer;
  appearance:auto;
}
.admin-body .admin-order-status-select.admin-select-native{
  position:static;
  width:100%;
  height:auto;
  opacity:1;
  pointer-events:auto;
}
.admin-order-pending-top .admin-order-status-form{
  justify-content:flex-end;
}
.admin-order-section{
  margin-bottom:22px;
}
.admin-order-kicker{
  margin:0 0 6px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(201,162,77,.88);
}
.admin-order-kicker--warn{
  color:rgba(245,158,11,.92);
}
.admin-order-kicker--danger{
  color:rgba(248,113,113,.92);
}
.admin-order-tool-card{
  position:relative;
  margin-bottom:18px;
  padding:18px 20px 18px 24px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(900px 280px at 100% -20%, rgba(201,162,77,.14), transparent 58%),
    linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 10px 28px rgba(0,0,0,.14);
}
.admin-order-series-block{
  position:relative;
  overflow:hidden;
}
.admin-order-series-block::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:3px;
  border-radius:0 4px 4px 0;
  background:linear-gradient(180deg, rgba(201,162,77,.95), rgba(201,162,77,.35));
}
.admin-order-danger-zone{
  border-color:rgba(248,113,113,.22);
  background:
    radial-gradient(720px 240px at 0% 0%, rgba(248,113,113,.12), transparent 55%),
    linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.admin-order-danger-zone::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:3px;
  border-radius:0 4px 4px 0;
  background:linear-gradient(180deg, rgba(248,113,113,.9), rgba(248,113,113,.3));
}
.admin-order-danger-title{
  margin:0 0 8px;
  font-size:20px;
  font-weight:700;
  color:var(--admin-heading);
}
.admin-order-danger-lead,
.admin-order-danger-count{
  margin:0 0 8px;
  color:var(--admin-subtle);
  font-size:14px;
  line-height:1.6;
}
.admin-order-danger-count strong{
  color:rgba(248,113,113,.95);
}
.admin-order-delete-all-form{
  margin-top:14px;
  max-width:360px;
}
.admin-order-delete-all-btn{
  margin-top:12px;
  color:rgba(248,113,113,.95);
  border-color:rgba(248,113,113,.32);
  background:rgba(248,113,113,.08);
}
.admin-order-delete-all-btn:hover:not(:disabled){
  background:rgba(248,113,113,.14);
  border-color:rgba(248,113,113,.48);
  color:#fecaca;
}
.admin-order-delete-all-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.admin-order-series-head{
  margin-bottom:18px;
}
.admin-order-series-title{
  margin:0 0 8px;
  font-family:var(--font-heading);
  font-size:clamp(24px, 3vw, 30px);
  color:var(--admin-heading);
}
.admin-order-series-lead,
.admin-order-series-form-lead{
  margin:0;
  color:var(--admin-subtle);
  font-size:14px;
  line-height:1.6;
}
.admin-order-series-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:12px;
  margin:0;
}
.admin-order-series-stats div{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:rgba(255,255,255,.04);
}
.admin-order-series-stats dt{
  margin:0 0 4px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-order-series-stats dd{
  margin:0;
  font-size:15px;
  color:var(--admin-text);
}
.admin-order-series-preview{
  color:rgba(201,162,77,.95);
}
.admin-order-series-form-title{
  margin:0 0 8px;
  font-size:20px;
}
.admin-order-series-grid{
  margin-top:16px;
}
.admin-order-no-edit{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin:0;
}
.admin-order-no-input{
  min-width:min(100%, 10.5rem);
  max-width:14rem;
  font-weight:700;
}
.admin-order-pending-no .admin-order-no-input{
  font-size:18px;
}
.admin-order-no-cell{
  cursor:default;
}
.admin-order-series-live{
  margin:16px 0 0;
  font-size:15px;
  color:var(--admin-text);
}
.admin-order-series-live strong{
  color:rgba(201,162,77,.95);
}
.admin-order-series-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.admin-order-invoice-id-block{
  margin-bottom:22px;
}
.admin-invoice-no-cell{
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.admin-invoice-no-block{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  max-width:100%;
}
.admin-invoice-id-badge{
  display:inline-block;
  padding:3px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(201,162,77,.95);
  background:rgba(201,162,77,.12);
  border:1px solid rgba(201,162,77,.22);
}
.admin-invoice-id-badge--pending{
  color:var(--admin-muted);
  background:rgba(255,255,255,.04);
  border-color:var(--admin-divider);
}
.admin-invoice-id-badge--manual{
  color:rgba(147,197,253,.95);
  background:rgba(59,130,246,.12);
  border-color:rgba(59,130,246,.25);
}
.admin-invoice-no-display{
  font-weight:700;
  font-size:13px;
  word-break:break-all;
}
.admin-invoice-no-input{
  min-width:min(100%, 11rem);
  max-width:15rem;
}
.admin-invoice-random-form{
  margin:0;
}
.admin-order-pending-block{
  margin-bottom:22px;
  padding-top:4px;
}
.admin-order-pending-head{
  margin-bottom:16px;
  padding-bottom:14px;
  border-bottom:1px solid var(--admin-divider);
}
.admin-order-pending-title{
  margin:0 0 6px;
  font-size:20px;
  font-weight:700;
  color:var(--admin-heading);
}
.admin-order-pending-lead{
  margin:0;
  color:var(--admin-subtle);
  font-size:13px;
  line-height:1.55;
}
.admin-order-pending-list{
  display:grid;
  gap:12px;
}
.admin-order-pending-card{
  position:relative;
  padding:16px 18px 16px 24px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  display:grid;
  gap:14px;
}
.admin-order-pending-card::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  bottom:12px;
  width:3px;
  border-radius:0 4px 4px 0;
  background:linear-gradient(180deg, rgba(245,158,11,.95), rgba(245,158,11,.35));
}
.admin-order-pending-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
}
.admin-order-pending-kicker{
  margin:0 0 4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-order-pending-no{
  margin:0 0 6px;
  font-size:22px;
  font-weight:700;
  color:var(--admin-text-strong);
}
.admin-order-pending-meta{
  margin:0;
  color:var(--admin-subtle);
  font-size:13px;
}
.admin-order-pending-details{
  display:grid;
  gap:10px;
  margin:0;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.admin-order-pending-details > div{
  display:grid;
  grid-template-columns:92px minmax(0, 1fr);
  gap:10px;
}
.admin-order-pending-details dt{
  margin:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-order-pending-details dd{
  margin:0;
  color:var(--admin-text);
  line-height:1.55;
}
.admin-order-pending-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding-top:2px;
}
.admin-body[data-admin-theme="light"] .admin-order-tool-card{
  border-color:var(--admin-border);
  background:linear-gradient(165deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow:0 8px 22px rgba(15,23,42,.06);
}
.admin-body[data-admin-theme="light"] .admin-order-danger-zone{
  border-color:rgba(185,28,28,.18);
  background:
    radial-gradient(720px 240px at 0% 0%, rgba(248,113,113,.08), transparent 55%),
    linear-gradient(165deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
}
.admin-body[data-admin-theme="light"] .admin-order-series-stats div,
.admin-body[data-admin-theme="light"] .admin-order-pending-details{
  border-color:var(--admin-border);
  background:rgba(27,27,27,.03);
}
.admin-body[data-admin-theme="light"] .admin-order-pending-card{
  border-color:var(--admin-border);
  background:linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
  box-shadow:0 8px 20px rgba(27,27,27,.06);
}
.admin-body[data-admin-theme="light"] .admin-order-danger-count strong{
  color:#b91c1c;
}
.admin-body[data-admin-theme="light"] .admin-order-delete-all-btn{
  color:#b91c1c;
  border-color:rgba(185,28,28,.24);
  background:rgba(248,113,113,.08);
}

.contact-honeypot{
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}
.contact-form-notice{
  margin-bottom:14px;
}
.contact-result-modal{
  z-index:80;
}
.contact-result-card{
  width:min(480px, calc(100% - 24px));
  border-radius:18px;
  overflow:hidden;
}
.contact-result-head{
  align-items:flex-start;
  gap:12px;
  padding:20px 20px 12px;
  border-bottom:1px solid rgba(27,27,27,.08);
}
.contact-result-kicker{
  margin:0 0 6px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(185,133,42,.92);
}
.contact-result-modal--error .contact-result-kicker{
  color:rgba(185,60,42,.92);
}
.contact-result-title{
  margin:0;
  font-family:var(--font-title);
  font-size:clamp(22px, 2.4vw, 26px);
  line-height:1.2;
}
.contact-result-close{
  flex-shrink:0;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(27,27,27,.12);
  background:rgba(255,255,255,.72);
  font-size:24px;
  line-height:1;
  color:rgba(27,27,27,.72);
}
.contact-result-body{
  padding:18px 20px 22px;
}
.contact-result-message{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:rgba(27,27,27,.82);
}
.contact-result-errors{
  margin:14px 0 0;
  padding-left:18px;
  color:rgba(185,60,42,.92);
  font-size:14px;
  line-height:1.55;
}
.contact-result-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:20px;
}
.contact-result-modal--success .contact-result-card{
  border-top:3px solid var(--gold);
}
.contact-result-modal--error .contact-result-card{
  border-top:3px solid rgba(239,68,68,.55);
}
.contact-input.is-invalid{
  border-color:rgba(239,68,68,.45);
  box-shadow:0 0 0 2px rgba(239,68,68,.12);
}

.admin-enquiries-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.admin-enquiries-filters{
  margin-bottom:16px;
}
.admin-catalog-panel--orders .admin-catalog-filters{
  margin:0 0 18px;
}
.admin-enquiries-filter-search{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:stretch;
}
.admin-enquiries-filter-search .input[type="search"]{
  flex:1 1 220px;
  min-width:min(100%, 200px);
}
.admin-orders-filter-bar .select{
  flex:0 1 auto;
  min-width:min(100%, 11rem);
  max-width:100%;
}
.admin-enquiries-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.admin-enquiries-detail{
  margin-bottom:22px;
  padding:18px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid var(--admin-border);
  background:var(--admin-surface);
}
.admin-enquiries-detail-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.admin-enquiries-ref{
  margin:0 0 4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(201,162,77,.9);
}
.admin-enquiries-detail-title{
  margin:0 0 6px;
  font-size:22px;
  color:var(--admin-heading);
}
.admin-enquiries-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:12px 18px;
  margin:0 0 18px;
}
.admin-enquiries-meta div{
  margin:0;
}
.admin-enquiries-meta dt{
  margin:0 0 4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--admin-subtle);
}
.admin-enquiries-meta dd{
  margin:0;
  font-size:14px;
  color:var(--admin-text);
  word-break:break-word;
}
.admin-enquiries-message{
  margin-bottom:18px;
}
.admin-enquiries-section-title{
  margin:0 0 10px;
  font-size:15px;
  font-weight:800;
}
.admin-enquiries-message-body{
  padding:14px 16px;
  border-radius:12px;
  border:1px solid var(--admin-border);
  background:rgba(0,0,0,.12);
  line-height:1.65;
  white-space:normal;
  word-break:break-word;
}
.admin-enquiries-table tr.is-new td{
  background:rgba(201,162,77,.06);
}
.admin-enquiries-pagination{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:16px;
}
.admin-enquiries-status-form .form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.admin-enquiries-danger-zone{
  margin-top:24px;
}

/* ── Luxury typography (site-wide edge cases) ── */
h1, h2, h3, h4, h5, h6{
  font-family:var(--font-heading);
  font-weight:600;
  line-height:var(--leading-title);
}
h1, h2{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:var(--tracking-title);
}
.hero-copy h1.h1,
.hero-copy .h1{
  font-family:var(--font-heading);
  font-weight:600;
  letter-spacing:.1em;
}
.hero-banner .hero-copy--luxury .h1-line--elegant{
  background:none;
  -webkit-text-fill-color:initial;
}
.type-title,
.type-product-name,
.type-collection-name{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.type-body{
  font-family:var(--font-body);
  line-height:var(--leading-body);
}
.type-meta,
.product-card .meta,
.product-card-meta,
.card .body .meta,
.cart-item-main .meta,
.pdp-meta,
.spec,
.spec-list,
.admin-hint,
.field-hint{
  font-family:var(--font-body);
  font-size:14px;
  line-height:var(--leading-body);
  font-weight:500;
}
.product-card .meta{
  margin:0;
  color:rgba(27,27,27,.62);
}
.price,
.product-card-price .price,
.cart-item-price .price{
  font-family:var(--font-body);
  font-weight:700;
  font-size:15px;
  letter-spacing:.01em;
}
.input,
.textarea,
.select,
button,
.btn{
  font-family:var(--font-body);
}
.admin-body .panel-body > h3,
.admin-body .panel-body h4,
.admin-body .admin-form-panel h3,
.admin-body .panel-title,
.admin-body .dash-launch-title,
.admin-body .dash-launch-card-title,
.admin-body .dash-screens-title,
.admin-body .dash-overview-title,
.admin-body .dash-recent-title,
.admin-body .admin-media-title{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:var(--tracking-title);
}
.modal-card h2,
.modal-card .name,
.checkout-summary .name,
.order-summary .name{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:var(--tracking-title);
  line-height:var(--leading-title);
}
.footer-col h4{
  font-family:var(--font-title);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:13px;
}
.footer-col p,
.footer-col a,
.site-footer .meta{
  font-family:var(--font-body);
  font-size:15px;
  line-height:var(--leading-body);
}
@media (max-width:560px){
  :root{
    --text-base:15px;
  }
  .product-card .name,
  .card .body .name,
  .cart-item-main .name{
    font-size:15px;
  }
  .collection-page-title,
  .page-title,
  .lookbook-hero-title{
    letter-spacing:.01em;
  }
}
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto }
}
