@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --bg:#0a0a0a;
  --bg-soft:#111111;
  --panel:#151515;
  --panel-2:#1b1b1b;
  --text:#f4f1ea;
  --muted:#b8afa4;
  --soft:#8d8478;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.14);
  --gold:#d2b48c;
  --gold-soft:#b89667;
  --white:#ffffff;
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --radius:22px;
  --radius-sm:14px;
  --wrap:1200px;
}

:root{
  --anchor-offset: 140px;
}
#top{
  scroll-margin-top:120px;
}
#featured,
#gucci-collection,
#about,
#catalog,
#how-it-works{
  scroll-margin-top: var(--anchor-offset);
}
section[id]{
  scroll-margin-top: 140px;
}
select {
  color: #111;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  min-width:320px;
  background:
    radial-gradient(circle at top, rgba(210,180,140,0.08), transparent 30%),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  color:var(--text);
  font-family:"Inter", sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, select{ font:inherit; }
.wrap{ width:min(calc(100% - 40px), var(--wrap)); margin:0 auto; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:82px;
}
.brand{ display:inline-flex; align-items:center; }
.brand img{ height:40px; width:auto; object-fit:contain; }
.header-nav{
  display:flex;
  align-items:center;
  gap:26px;
}
.header-nav a{
  position:relative;
  color:var(--panel);
  font-size:0.95rem;
  font-weight:500;
  transition:color .25s ease;
}
.header-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:1px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.header-nav a:hover,
.header-nav a:focus-visible{ color:var(--muted); }
.header-nav a:hover::after,
.header-nav a:focus-visible::after{ transform:scaleX(1); }

.hero{ padding:60px 0 28px 0; }
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, .8fr);
  gap:32px;
  align-items:stretch;
}

.eyebrow,
.section-label,
.hero-panel-label{
  margin:0 0 12px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.74rem;
  font-weight:600;
}
.hero-copy h1{
  margin:0;
  max-width:11ch;
  font-family:"Playfair Display", serif;
  font-size:clamp(2.1rem, 5vw, 4rem);
  line-height:1.1;
  letter-spacing:-0.03em;
  color:var(--white);
}
.hero-text{
  margin:22px 0 0;
  max-width:620px;
  color:var(--muted);
  font-size:1.06rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:.96rem;
  font-weight:600;
  transition:transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn:hover,
.btn:focus-visible{ transform:translateY(-1px); }
.btn-primary{
  background:linear-gradient(180deg, #ddc19d 0%, #b89667 100%);
  color:#111;
  box-shadow:0 10px 28px rgba(184,150,103,0.22);
}
.btn-primary:hover,
.btn-primary:focus-visible{ box-shadow:0 16px 38px rgba(184,150,103,0.28); }
.btn-secondary{
  border-color:var(--line-strong);
  color:var(--text);
  background:rgba(255,255,255,0.02);
}
.btn-secondary:hover,
.btn-secondary:focus-visible{
  border-color:rgba(210,180,140,0.5);
  background:rgba(255,255,255,0.04);
}
.hero-panel{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 4px);
  background:linear-gradient(180deg, rgba(210,180,140,0.06), rgba(255,255,255,0.02)), var(--panel);
  padding:30px;
  box-shadow:var(--shadow);
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:auto -30px -30px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(210,180,140,0.16), transparent 65%);
  pointer-events:none;
}
.hero-panel h2{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size:2rem;
  line-height:1.05;
}
.hero-panel p{ margin:0; color:var(--muted); }
.hero-stat-list{ display:grid; gap:14px; margin-top:24px; }
.hero-stat{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,0.02);
}
.hero-stat span{
  display:block;
  color:var(--soft);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.hero-stat strong{
  display:block;
  margin-top:6px;
  color:var(--white);
  font-size:1rem;
  font-weight:600;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:12px;
  margin-bottom:72px;
}
.trust-strip div{
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.02);
  color:var(--muted);
  text-align:center;
  font-size:.92rem;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:26px;
}
.section-head h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.04;
  color:var(--white);
}
.section-copy{ max-width:560px; margin:0; color:var(--muted); }
.catalog-meta{ margin:10px 0 0; color:var(--soft); font-size:.92rem; }

.featured-grid,
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}
.catalog-grid{ margin-top:0; margin-bottom:84px; }
.featured-grid{ margin-bottom:84px; }

.product-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow:var(--shadow);
  min-height:100%;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover,
.product-card:focus-within{
  transform:translateY(-4px);
  border-color:rgba(210,180,140,0.28);
  box-shadow:0 24px 60px rgba(0,0,0,0.45);
}
.product-card-media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1 / 1.05;
  overflow:hidden;
  background:#fff;
  padding:26px;
}
.product-card-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .55s ease;
}
.product-card:hover .product-card-media img,
.product-card:focus-within .product-card-media img{
  transform:scale(1.09);
}
.product-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:20px 20px 22px;
}
.product-card-title{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:1.18rem;
  line-height:1.2;
  color:var(--white);
}
.product-card-meta{ margin:8px 0 0; color:var(--soft); font-size:.88rem; }
.product-card-desc{ margin:12px 0 0; color:var(--muted); font-size:.94rem; }
.product-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:auto;
  padding-top:18px;
}
.product-price{
  color:var(--white);
  font-size:1rem;
  font-weight:600;
  white-space:nowrap;
}
.product-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border:1px solid var(--line-strong);
  border-radius:999px;
  color:var(--text);
  font-size:.92rem;
  font-weight:600;
  transition:all .22s ease;
}
.product-link:hover,
.product-link:focus-visible{
  border-color:rgba(210,180,140,0.45);
  color:#111;
  background:var(--gold);
}

.collection-banner{
  position:relative;
  overflow:hidden;
  margin-bottom:84px;
  padding:44px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(120deg, rgba(210,180,140,0.12), rgba(255,255,255,0.02) 45%, rgba(255,255,255,0.01)), var(--panel);
  box-shadow:var(--shadow);
}
.collection-banner::after{
  content:"";
  position:absolute;
  top:-30px;
  right:-30px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(210,180,140,0.12), transparent 70%);
  pointer-events:none;
}
.collection-banner-copy{ position:relative; z-index:1; max-width:720px; }
.collection-banner h2{
  margin:0 0 14px;
  font-family:"Playfair Display", serif;
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  line-height:1.02;
}
.collection-banner p{ margin:0 0 24px; color:var(--muted); font-size:1rem; }

.control-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.control-row input,
.control-row select{
  min-height:50px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:#111;
  padding:0 18px;
  outline:none;
  transition:border-color .2s ease, background .2s ease;
}

.control-row input{ min-width:280px; }
.control-row input::placeholder{ color:var(--soft); }
.control-row input:focus,
.control-row select:focus{
  border-color:rgba(210,180,140,0.4);
  background:#fff;
}

.about-section{ margin-bottom:88px; }
.about-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(280px, .9fr);
  gap:28px;
  padding:38px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), var(--panel);
  box-shadow:var(--shadow);
}
.about-copy h2{
  margin:0 0 16px;
  font-family:"Playfair Display", serif;
  font-size:clamp(2rem, 3vw, 2.8rem);
  line-height:1.06;
}
.about-copy p{ margin:0 0 16px; color:var(--muted); }
.about-notes{ display:grid; gap:16px; }
.about-note{
  padding:20px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,0.02);
}
.about-note h3{ margin:0 0 8px; font-size:1rem; color:var(--white); }
.about-note p{ margin:0; color:var(--muted); font-size:.95rem; }

.site-footer{
  border-top:1px solid var(--line);
  background:rgba(0,0,0,0.18);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px 0;
}
.footer-brand{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:1.25rem;
  color:var(--white);
}
.footer-copy{ margin:4px 0 0; color:var(--soft); font-size:.92rem; }
.footer-nav{ display:flex; flex-wrap:wrap; gap:18px; }
.footer-nav a{ color:var(--muted); font-size:.94rem; }
.footer-nav a:hover,
.footer-nav a:focus-visible{ color:var(--text); }

.empty-state{
  grid-column:1 / -1;
  padding:28px;
  border:1px dashed var(--line-strong);
  border-radius:20px;
  color:var(--muted);
  text-align:center;
  background:rgba(255,255,255,0.02);
}

/* Product page */
.product-page{ padding:48px 0 34px; }
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
  color:var(--soft);
  font-size:.72rem;
  line-height: 0.7;
}
.breadcrumb a{ color:var(--muted); }
.breadcrumb a:hover,
.breadcrumb a:focus-visible{ color:var(--text); }
.product-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 520px);
  gap:34px;
  align-items:start;
}
.product-gallery{
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow:var(--shadow);
  padding:22px;
}
.gallery-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.gallery-kicker{
  margin:0;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.72rem;
  font-weight:700;
}
.gallery-zoom-toggle{
  min-height:38px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.03);
  color:var(--muted);
  font-size:.82rem;
  font-weight:600;
  cursor:pointer;
  transition:border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease;
}
.gallery-zoom-toggle:hover,
.gallery-zoom-toggle:focus-visible,
.gallery-zoom-toggle[aria-pressed="true"]{
  border-color:rgba(210,180,140,0.42);
  background:rgba(210,180,140,0.08);
  color:var(--text);
  transform:translateY(-1px);
}
.product-main-image{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.05);
  background:
    radial-gradient(circle at 50% 18%, rgba(210,180,140,0.18), transparent 34%),
    linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  aspect-ratio:1 / 1;
}
.gallery-ambient-ring{
  position:absolute;
  inset:12%;
  border-radius:50%;
  border:1px solid rgba(210,180,140,0.10);
  box-shadow:0 0 0 18px rgba(210,180,140,0.04), 0 0 60px rgba(210,180,140,0.08);
  pointer-events:none;
  transition:transform .6s ease, opacity .4s ease;
}
.gallery-zoom-indicator{
  position:absolute;
  left:18px;
  bottom:18px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  background:rgba(10,10,10,0.62);
  color:var(--muted);
  font-size:.78rem;
  letter-spacing:.02em;
  backdrop-filter:blur(10px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.product-main-image:hover .gallery-zoom-indicator,
.product-main-image.is-zoom-active .gallery-zoom-indicator{
  opacity:.95;
  transform:translateY(-1px);
}
.product-main-image img{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .65s ease, opacity .35s ease, filter .35s ease;
  will-change:transform;
}
.product-main-image:hover img,
.product-main-image:focus-within img{
  transform:scale(1.08);
}
.product-gallery-strip{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.gallery-thumb{
  position:relative;
  width:78px;
  height:78px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  cursor:pointer;
  transition:border-color .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.gallery-thumb:hover,
.gallery-thumb:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(210,180,140,0.34);
}
.gallery-thumb.is-active{
  border-color:rgba(210,180,140,0.52);
  background:rgba(210,180,140,0.09);
  box-shadow:0 10px 28px rgba(0,0,0,0.24);
}
.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.product-details{
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow:var(--shadow);
  padding:30px;
}
.product-kicker{
  margin:0 0 12px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.75rem;
  font-weight:600;
}
.product-details h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  line-height:1.02;
  color:var(--white);
}
.product-meta-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.product-meta-line span{
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.02);
  color:var(--muted);
  font-size:.86rem;
}
.product-price-block{
  margin-top:24px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,0.02);
}
.product-price-large{
  color:var(--white);
  font-size:2rem;
  font-weight:700;
  line-height:1;
}
.product-price-note{ margin:10px 0 0; color:var(--soft); font-size:.92rem; }
.product-description{ margin-top:24px; }
.product-description p{ margin:0 0 14px; color:var(--muted); }
.product-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.product-specs {
  display: block !important;
}
.product-extra{ padding:0 0 84px; }
.product-extra-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}
.product-note-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow:var(--shadow);
}
.product-note-card h2{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size:1.35rem;
  line-height:1.1;
  color:var(--white);
}
.product-note-card p{ margin:0; color:var(--muted); }

/* Collection page */
.collection-hero{ padding:48px 0 26px; }
.collection-hero-panel{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(280px, .65fr);
  gap:28px;
  padding:36px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(135deg, rgba(210,180,140,0.1), rgba(255,255,255,0.02) 45%, rgba(255,255,255,0.01)), var(--panel);
  box-shadow:var(--shadow);
}
.collection-hero-copy h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:clamp(2.6rem, 5vw, 4.5rem);
  line-height:.98;
  color:var(--white);
}
.collection-hero-text{
  max-width:700px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:1.04rem;
}
.collection-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.collection-hero-side{ display:grid; gap:14px; }
.collection-side-card{
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,0.03);
}
.collection-side-card span{
  display:block;
  color:var(--soft);
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.collection-side-card strong{
  display:block;
  margin-top:8px;
  color:var(--white);
  font-size:1rem;
  font-weight:600;
}
.collection-intro{
  margin-top:18px;
  margin-bottom:36px;
}
.collection-intro-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:24px;
  align-items:end;
}
.collection-intro-grid h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.04;
  color:var(--white);
}
.collection-intro-grid p:last-child{ margin:0; color:var(--muted); }
.collection-controls-section{ margin-bottom:78px; }
.collection-section-head{ margin-bottom:24px; }
.collection-story{ margin-bottom:88px; }
.collection-story-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}
.collection-story-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow:var(--shadow);
}
.collection-story-card h3{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size:1.3rem;
  line-height:1.1;
  color:var(--white);
}
.collection-story-card p{ margin:0; color:var(--muted); }

@media (max-width: 1100px){
  .featured-grid,
  .catalog-grid{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
  .hero-grid,
  .about-grid{ grid-template-columns:1fr; }
  .hero-copy{ padding-right:0; }
}
@media (max-width: 980px){
  .product-layout{ grid-template-columns:1fr; }
  .product-extra-grid,
  .collection-story-grid{ grid-template-columns:1fr; }
  .collection-hero-panel,
  .collection-intro-grid{ grid-template-columns:1fr; }
}
@media (max-width: 820px){
  .header-inner{
    min-height:auto;
    padding:18px 0;
    flex-direction:column;
    align-items:flex-start;
  }
  .header-nav{ gap:18px; flex-wrap:wrap; }
  .trust-strip{ grid-template-columns:1fr; margin-bottom:56px; }
  .section-head{ align-items:flex-start; flex-direction:column; }
  .featured-grid,
  .catalog-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .collection-banner,
  .about-grid,
  .hero-panel,
  .collection-hero-panel{ padding:26px; }
  .control-row{ width:100%; }
  .control-row input,
  .control-row select{ width:100%; }
}
@media (max-width: 560px){
  .wrap{ width:min(calc(100% - 28px), var(--wrap)); }
  .hero{ padding-top:40px; }
  .hero-copy h1{ max-width:100%; font-size:2.5rem; }
  .hero-actions,
  .collection-hero-actions,
  .product-actions{ flex-direction:column; }
  .btn,
  .collection-hero-actions .btn,
  .product-actions .btn{ width:100%; }
  .featured-grid,
  .catalog-grid{ grid-template-columns:1fr; }
  .product-card-footer{ align-items:flex-start; flex-direction:column; }
  .footer-inner{ align-items:flex-start; flex-direction:column; }
  .product-page{ padding-top:34px; }
  .product-details,
  .product-gallery{ padding:20px; }
  .product-main-image{ padding:24px; }
  .gallery-topline{ align-items:flex-start; flex-direction:column; }
  .gallery-zoom-toggle{ width:100%; justify-content:center; }
  .product-gallery-strip{ gap:10px; }
  .gallery-thumb{ width:68px; height:68px; }
  .product-specs{ grid-template-columns:1fr; }
  .collection-hero{ padding-top:34px; }
}


.product-card-badge{
  margin:0 0 10px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  font-weight:700;
}

.product-main-image-zoom{ cursor:crosshair; }
.product-main-image img.is-zoomed{ transform:scale(1.55); }
.product-main-image.is-zoom-active .gallery-ambient-ring{ transform:scale(1.04); opacity:1; }
.product-main-image.is-zoom-active img{ filter:saturate(1.04); }

.product-meta-line span{
  display:inline-flex;
  align-items:center;
}

.empty-state{
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.03);
  color:var(--muted);
}

.product-spec-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.product-spec-label {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.45;
  min-width: 0;
}

.product-spec-value {
  color: var(--white);
  font-size: .95rem;
  line-height: 1.55;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 640px) {
  .product-spec-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}

@media (max-width: 640px) {
  .product-spec-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}
.legal-page {
  padding-top: 0;
}

.legal-hero {
  padding: 72px 0 28px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0 0 12px;
}

.legal-hero p {
  margin: 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto; /* centers the block */
}

.legal-content h2 {
  margin: 40px 0 14px;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-content li {
  margin: 0 0 10px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Subtle product + checkout notes */

.product-note,
.checkout-note {
  font-size: 0.85rem;          /* smaller text */
  line-height: 1.4;
  color: rgba(255,255,255, 0.6);   /* softer gray */
  margin-top: 10px;
  margin-bottom: 0;
}

.product-note a,
.checkout-note a {
  color: inherit;              /* no bright link color */
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}

.product-note a:hover,
.checkout-note a:hover {
  opacity: 1;
}

.product-note {
  display: block;
  width: 100%;
}

/* Optional: even more subtle on desktop */
@media (min-width: 768px) {
  .product-note,
  .checkout-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .product-layout,
  .product-grid,
  .product-detail,
  .product-page,
  .product-wrap {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .product-media,
  .product-image-col,
  .product-left,
  .product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .product-content,
  .product-info,
  .product-right,
  .product-summary {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .product-media img,
  .product-image,
  .product-gallery img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .product-container,
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 480px) {

  /* ===== HEADER / NAV ===== */
  header,
  .site-header,
  .nav,
  .navbar {
    text-align: center;
  }

  .nav-inner,
  .header-inner,
  .nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Logo */
  .logo,
  .site-logo {
    margin: 0 auto 12px auto;
    display: block;
    text-align: center;
  }

  /* Nav links */
  .nav-links,
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    list-style: none;
  }

  nav ul a {
    display: block;
    text-align: center;
  }

}
/* iPhone landscape */
@media (max-width: 932px) and (orientation: landscape) {

  .nav-inner,
  .header-inner,
  .nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo stays left */
  .logo,
  .site-logo {
    margin: 0;
    text-align: left;
  }

  /* Nav links go right */
  .nav-links,
  nav ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
  }

  nav ul li {
    list-style: none;
  }

  nav ul a {
    display: inline-block;
    text-align: right;
  }
}
.collection-page {
  background: #fcfbf8;
}

.collection-hero {
  padding: 108px 24px 48px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(138, 122, 92, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ed 100%);
}

.collection-hero__inner,
.collection-grid-wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.collection-hero__eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #8a7a5c;
}

.collection-hero h1 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
  color: #161616;
}

.collection-hero p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.collection-grid-wrap {
  padding: 0 24px 88px;
}

.collection-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
}

.product-card--luxury {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card--luxury:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  border-color: rgba(138, 122, 92, 0.28);
}

.product-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 22px;
}

.product-card__body {
  padding: 20px 20px 22px;
}

.product-card__brand {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a5c;
}

.product-card__title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
  color: #161616;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__price {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #242424;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #161616;
  color: #161616;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.product-card__cta:hover {
  background: #161616;
  color: #ffffff;
}

@media (max-width: 1080px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collection-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__title {
    font-size: 1.35rem;
  }
}
