/* ==========================================================================
   AURELIS — Luxury Home Diagnostics | style.css
   0. Tokens  1. Reset  2. Layout  3. Type  4. Buttons/forms  5. Header
   6. Hero  7. Cards/grids  8. Editorial  9. Shop  10. PDP  11. Cart/checkout
   12. Contact  13. Footer  14. Utilities  15. Responsive
   ========================================================================== */

/* 0. DESIGN TOKENS ======================================================== */
:root {
  --bone: #f6f3ee;
  --bone-deep: #ece7df;
  --paper: #fffdfa;
  --ink: #16181a;
  --ink-soft: #3d4144;
  --muted: #7b807f;
  --line: #e0d9cf;
  --brass: #9a7b45;
  --brass-light: #c2a874;
  --clay: #b8674f;

  --bg: var(--bone);
  --surface: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--line);

  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --tracking-wide: 0.18em;

  --s-1: 0.5rem;  --s-2: 0.875rem; --s-3: 1.25rem; --s-4: 2rem;
  --s-5: clamp(20px,4vw,  48px);    --s-6: 4.5rem;   --s-7: clamp(45px,10vw, 112px);

  --maxw: 1280px;
  --gutter: 2rem;
  --radius: 2px;
  --radius-lg: 4px;

  --shadow-soft: 0 18px 50px -30px rgba(22,24,26,.45);
  --shadow-lift: 0 30px 70px -40px rgba(22,24,26,.55);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* 1. RESET & BASE ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none; margin: 0; padding: 0;}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit;}
input,textarea,select{font:inherit;color:inherit;}
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
::selection { background: var(--brass-light); color: #fff; }

.hide-desk,.show-mob{display:none;}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }
/********************************/
.age-pop-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0
}
.pop-up-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0px;
    z-index: 9999600;
    background: rgba(0, 0, 0, 0.5);
}
.pop-up-bg-in {
	position: fixed;
    bottom: 0px;
    background: #00000094;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: left 1s ease 0s;
    z-index: 10000010;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
}
.pop-up-left {
	width: 100% ;
	height: 100% ;
	position: fixed ;
	left: 0px ;
	top: 0px ;
	border: 0px;
	background-color: rgb(0, 0, 0) ;
	display: none ;
	opacity: 0.8 ;
	z-index: 10000001 ;
}
.pop-up-left-txt {
    font-size: clamp(12px, 3vw, 14px);
    line-height: clamp(18px, 3vw, 24px);
    box-sizing: initial;
    overflow-wrap: break-word;
    transition: left 1s ease 0s;
    display: flex;
    text-align: center;
    padding: 20px;
    color: var(--paper);
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    flex-wrap: wrap;
}
.pop-innr p {
    color: var(--paper);
}
.pop-innr {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 200px);
}
.pop-btn {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}
.pop-up-left-txt span{
    font-size: clamp(14px, 3vw, 16px);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
	}
.pop-up-left-txt a{ text-decoration:underline;     display: inline-block; color: #fff}
.yes-btn, .no-btn {
    cursor: pointer;
    margin-top: 10px;
    height: 40px;
    color: var(--paper);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    text-align: center;
    outline: none;
    box-shadow: none;
    background: var(--brass);
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 0;
    border: none;
}
.no-btn{background: var(--text);}
.no-btn:hover { /*background: #514131;*/}
.yes-btn:hover {   /* background: #8c7535;*/}

/* 2. LAYOUT PRIMITIVES ==================================================== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }

.section { padding-block: var(--s-7); }
.section--tight { padding-block: var(--s-6);}
.section--paper { background: var(--surface); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--deep { background: var(--bone-deep); }

.grid { display: grid; gap: var(--s-4); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap; }
.rule { height: 1px; background: var(--border); border: 0; margin: 0; }

/* 3. TYPOGRAPHY =========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.01em; margin: 0 0 var(--s-3);
}
.display { font-size: clamp(40px, 6.5vw, 84px);line-height: clamp(50px, 6.5vw, 92px); letter-spacing: -.02em; text-transform: capitalize;}
.display em, h2 em, .h2 em {color: var(--brass-light);}
h2, .h2 { font-size: clamp(29px, 4vw, 47px);text-transform: capitalize; line-height: clamp(41px, 4vw, 57px);}

h3, .h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p { margin: 0 0 var(--s-3); color: var(--text-soft); }
.lead { font-size: clamp(16px, 3vw, 18px);line-height: clamp(24px, 3vw, 28px); max-width: 58ch; }

.eyebrow {
  display: inline-block; font-size: clamp(12px, 3vw, 13px); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--brass); margin-bottom: clamp(10px, 2vw, 20px); font-weight: 400;
}
.section--ink .eyebrow { color: var(--brass-light); }
.section--ink p { color: rgba(246,243,238,.72); }
.section-head { max-width: 62ch; margin-bottom: var(--s-5); }
.section-head--center { margin-inline: auto; text-align: center; }

.price { font-family: var(--font-display); font-size: 1.35rem; }
.price del { color: var(--muted); font-size: .85em; margin-right: .4rem; }

/* 4. BUTTONS & FORMS ====================================================== */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--bone); --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2.1rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  font-size: .72rem; font-weight: 400; letter-spacing: var(--tracking-wide); text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--brass { --btn-bg: var(--brass); --btn-bd: var(--brass); --btn-fg: #fff; }
.btn--brass:hover { --btn-bg: #86682f; --btn-bd: #86682f; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--bone); }
.btn--light { --btn-bg: transparent; --btn-fg: var(--bone); --btn-bd: rgba(246,243,238,.45); }
.btn--light:hover { --btn-bg: var(--bone); --btn-fg: var(--ink); --btn-bd: var(--bone); }
.btn--block { width: 100%; }

.link-underline {
  display: inline-block; font-size: .82rem; letter-spacing: var(--tracking-wide);
   padding-bottom: 4px; border-bottom: 1px solid var(--brass);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-underline:hover { color: var(--brass); border-color: var(--ink); }

label { display: block; font-size: .68rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="search"], select, textarea {
  width: 100%; padding: .95rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font: inherit; font-size: .95rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brass); box-shadow: 0 0 0 3px rgba(154,123,69,.12); outline: none;
}
textarea { min-height: 160px; resize: vertical; }
.field { margin-bottom: var(--s-3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

/* 5. HEADER =============================================================== */
.announce {
  background: var(--ink); color: rgba(246,243,238,.85); text-align: center;
  font-size: .68rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; padding: .7rem 1rem;
}
.top-fix-bar{margin-bottom: clamp(50px, 6vw, 80px);}
.site-header {
  position: relative;z-index: 50;
  background: rgba(246,243,238,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);height: clamp(50px, 6vw, 80px);top: clamp(50px, 6vw, 80px);margin-top: clamp(-80px, -6vw, -50px);    display: flex;align-items: center;width: 100%;
}
.fixed-nav .site-header{
	position: fixed;
	z-index: 99;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--s-3); }
.brand {
    grid-column: 2;width: clamp(140px, 17vw, 210px);
}
.brand small {
  display: block; font-family: var(--font-body); font-size: .52rem;
  letter-spacing: .4em; color: var(--muted); text-indent: .4em; margin-top: -2px;
}
.nav { display: flex; gap: var(--s-2); align-items: center; }
.nav--right { grid-column: 3; justify-content: flex-end; }
.nav a {
  font-size: .7rem; letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--text-soft); position: relative; padding-block: 4px; transition: color .3s var(--ease);font-weight: 400;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--brass); transition: width .35s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.cart-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--border); border-radius: 999px; padding: .45rem .95rem; background: var(--surface);
}
.cart-pill .count { background: var(--brass); color: #fff; border-radius: 999px; font-size: .62rem; padding: .05rem .42rem; }

/* 6. HERO ================================================================= */
.hero {
  position: relative; min-height: 88vh; display: grid; place-items: center;
  text-align: center; overflow: hidden; background: var(--bone-deep);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18, 19, 20, .85) 0%, rgba(18, 19, 20, .62) 45%, rgba(18, 19, 20, .88) 100%);
    -webkit-backdrop-filter: blur(10px);backdrop-filter: blur(10px);
}
.hero__inner { position: relative; z-index: 2; padding: var(--s-6) 0 var(--s-7); color: var(--bone); max-width: 900px; }
.hero__inner .eyebrow { color: var(--brass-light); }
.hero__inner p { color: rgba(246,243,238,.82); margin-inline: auto; }
.hero__actions { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; margin-top: var(--s-4); }
.hero__meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(246,243,238,.22); color: rgba(246,243,238,.85);
}
.hero__meta div {
  padding: clamp(13px,3vw, 18px) var(--gutter); font-size: 10.5px; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; text-align: center; border-left: 1px solid rgba(246,243,238,.18);
}
.hero__meta div:first-child { border-left: 0; }

.trust-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-3);
  padding-block: clamp(15px, 3vw, 32px); border-bottom: 1px solid var(--border); text-align: center;
}
.trust-strip span { font-size: .66rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); font-weight: 600;}

/* 7. CARDS & PRODUCT GRIDS ================================================ */
.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.product-card .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--brass-light); }
.product-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone-deep); display: flex;
    justify-content: center;align-items: center;}
.product-card__media img { width: 100%; /*height: 100%; object-fit: cover;*/ transition: transform 1.2s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.badge {
  
  background: rgba(255,253,250,.94); color: var(--ink);
  font-size: .6rem; letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: .4rem .7rem; border-radius: 999px;display: inline-block;margin-bottom: 1rem;
}
.badge--brass { background: var(--brass); color: #fff; }
.product-card__body { padding: var(--s-3) var(--s-3) var(--s-4); display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.product-card__body h3 { margin: 0; font-size: clamp(20px, 4vw, 24px);    line-height: clamp(28px, 4vw, 32px); }
.product-card__cat { font-size: .62rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); }
.product-card__desc { font-size: clamp(14px, 3vw, 15px);line-height: clamp(20px, 3vw, 24px); margin: 0; }
.product-card__foot { margin-top: auto; padding-top: var(--s-2); display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); }
.stars { color: var(--brass); font-size: .8rem; letter-spacing: .15em; }
.stars small { color: var(--muted); letter-spacing: 0; margin-left: .45rem; }

.showcase { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--s-4); align-items: stretch; }
.showcase__hero {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 560px; display: flex; align-items: flex-end; color: var(--bone);border: 1px solid var(--border);
}
.showcase__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,19,20,0) 35%, rgba(18,19,20,.95) 100%); }
.showcase__caption { position: relative; z-index: 2; padding: var(--s-4); }
.showcase__caption h3 { color: var(--bone); }
.showcase__caption p { color: rgba(246,243,238,.78); max-width: 40ch; }

.stack { display: grid; gap: var(--s-3);  }
.stack-item {
  display: grid; grid-template-columns:220px 1fr; gap: var(--s-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .4s var(--ease), transform .4s var(--ease);align-items: center;
}
.stack-item:hover { border-color: var(--brass-light); transform: translateX(4px); }
.stack-item img { height: 100%; width: calc(100% - 0px); object-fit: cover; background: var(--bone-deep);padding-right: 10px;}
.stack-item__body { padding: var(--s-3) var(--s-3) var(--s-3) 0; }
.stack-item__body h4 { font-size: clamp(17px, 3vw, 20px);line-height: clamp(24px, 3vw, 28px);margin-bottom: 8px;}
.stack-item__body p { font-size: .88rem; margin-bottom: .5rem; }

/* 8. EDITORIAL SECTIONS =================================================== */
.steps { counter-reset: step; }
.step { padding-top: var(--s-3); border-top: 1px solid var(--border); }
.section--ink .step { border-color: rgba(246,243,238,.2); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--font-display); font-size: 2.4rem;
  color: var(--brass); line-height: 1; margin-bottom: var(--s-2);
}
.step h3 { font-size: 1.4rem; }
.step p { font-size: .92rem; margin: 0; }

.quote-band { text-align: center; }
.quote-band blockquote {
  margin: 0 auto; max-width: 26ch; font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.2;
}
.quote-band cite {
  display: block; margin-top: var(--s-3); font-family: var(--font-body); font-style: normal;
  font-size: .68rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted);
}
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s-4); }
.testimonial p { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); line-height: 1.45; }
.testimonial footer { font-size: .66rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); }

.editorial { display: grid; grid-template-columns: .85fr 1.05fr; align-items: center; gap: var(--s-3); }
.editorial__figure {  position: relative; margin: 0; aspect-ratio: 4 / 5.8;box-shadow: var(--shadow-soft);overflow: hidden;}
.editorial__figure img { border-radius: var(--radius-lg); height: 100%;width: 100%;object-fit: cover;}
.editorial__figure figcaption {
  position: absolute; bottom: -1px; left: -1px; background: var(--bone);
  padding: 1rem 1.4rem 0 0; font-size: .64rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--muted);
}
.editorial__body {
   background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s-5); box-shadow: var(--shadow-soft);
}
.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li { display: flex; justify-content: space-between; gap: var(--s-3); padding: .85rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; font-weight: 400;}
.spec-list li span:first-child { color: var(--muted); }
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: var(--s-2); max-width: 520px; }

/* 9. SHOP & FILTERS ======================================================= */
.page-head { padding-block: var(--s-5) var(--s-5); border-bottom: 1px solid var(--border); text-align: center; }
.page-head .h2 {    margin: 0;}
.breadcrumbs { font-size: .65rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); }
.breadcrumbs a:hover { color: var(--brass); }
.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  flex-wrap: wrap; padding-block: var(--s-3); border-bottom: 1px solid var(--border); margin-bottom: var(--s-5);
}
.chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--border); background: transparent; border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .66rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--text-soft); transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--brass); color: var(--brass); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.select-inline { max-width: 240px; }

/* 10. PRODUCT DETAIL ====================================================== */
.pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-6); align-items: start; }
.gallery { display: grid; gap: var(--s-2); }
.gallery__main { border-radius: var(--radius-lg); overflow: hidden; background: var(--bone-deep); aspect-ratio: 4 / 5; display: flex;justify-content: center;align-items: center;}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
.gallery__thumbs img {
  border-radius: var(--radius); aspect-ratio: 1; object-fit: cover;
  border: 1px solid var(--border); opacity: .85;
  transition: border-color .3s var(--ease), opacity .3s var(--ease);
}
.gallery__thumbs a:hover img, .gallery__thumbs a:focus-visible img { border-color: var(--brass); opacity: 1; }
.pdp__panel { position: sticky; top: 110px; }
.pdp__price { display: flex; align-items: baseline; gap: var(--s-2); margin-bottom: var(--s-3); justify-content: space-between;}
.pdp__price dd {background: var(--clay);color: var(--paper);padding: 1px 6px;}
.option-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: var(--s-3); }
.option {
  border: 1px solid var(--border); border-radius: var(--radius); padding: .85rem 1.1rem;
  background: var(--surface); font-size: .75rem; letter-spacing: .08em; text-align: left;
  transition: all .3s var(--ease);
}
.option strong { display: block; font-weight: 400; }
.option small { color: var(--muted); }
.option:hover { border-color: var(--brass); }
.option[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); justify-content: center;}
.qty button { background: none; border: 0; padding: .85rem 1.1rem; color: var(--text-soft); }
.qty span { padding-inline: .4rem; min-width: 2rem; text-align: center; }
.buy-row { display: grid; grid-template-columns: auto 1fr; gap: var(--s-2); margin-bottom: var(--s-3); }
.assurance {
  list-style: none; padding: var(--s-3) 0; margin: var(--s-3) 0 var(--s-4);
  border-top: 1px solid var(--border); display: grid; gap: .55rem; font-size: .9rem; color: var(--text-soft);
    border-bottom: 1px solid var(--border);
}
.assurance li::before { content: "—"; color: var(--brass); margin-right: .6rem; }
details.accordion { border-top: 1px solid var(--border); padding-block: var(--s-2); }
details.accordion summary {
  cursor: pointer; list-style: none; font-size: .72rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; padding-block: .65rem; display: flex; justify-content: space-between;
}
details.accordion summary::-webkit-details-marker { display: none; }
details.accordion summary::after { content: "+"; color: var(--brass); }
details.accordion[open] summary::after { content: "\2013"; }
details.accordion p { font-size: .92rem; margin-bottom: .5rem; }

/* 11. CART & CHECKOUT ===================================================== */
.split { display: grid; grid-template-columns: 1.5fr .9fr; gap: var(--s-5); align-items: start; }
.line-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: var(--s-3);
  padding-block: var(--s-3); border-bottom: 1px solid var(--border); align-items: center;
}
.line-item img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.line-item h3 { font-size: 1.25rem; margin-bottom: .15rem; }
.line-item__meta { font-size: .78rem; color: var(--muted); }
.line-item__right { text-align: right; display: grid; gap: .5rem; justify-items: end; }
.remove {
  background: none; border: 0; padding: 0; font-size: .64rem;
  letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.remove:hover { color: var(--clay); border-color: var(--clay); }
.summary {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--s-4); position: sticky; top: 110px; box-shadow: var(--shadow-soft);
}
.summary h2 { font-size: 1.6rem; }
.summary .row { display: flex; justify-content: space-between; padding-block: .55rem; font-size: .92rem; color: var(--text-soft); }
.summary .row--total {
  border-top: 1px solid var(--border); margin-top: .5rem; padding-top: var(--s-2);
  color: var(--text); font-family: var(--font-display); font-size: 1.5rem;
}
.promo { display: grid; grid-template-columns: 1fr auto; gap: .5rem; margin-bottom: var(--s-3); }
.checkout-steps {
  display: flex; gap: var(--s-3); flex-wrap: wrap; padding: 0; margin: 0 0 var(--s-4);
  font-size: .66rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted);
}
.checkout-steps li { list-style: none; }
.checkout-steps li[aria-current="step"] { color: var(--ink); }
.checkout-steps li[aria-current="step"]::before { content: "\25CF  "; color: var(--brass); }
fieldset { border: 0; padding: 0; margin: 0 0 var(--s-5); }
legend { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: var(--s-3); padding: 0; }
.radio-card {
  display: flex; gap: .9rem; align-items: flex-start; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface); padding: 1rem 1.1rem;
  margin-bottom: .6rem; cursor: pointer; transition: border-color .3s var(--ease);
}
.radio-card:hover { border-color: var(--brass); }
.radio-card input { margin-top: .35rem; accent-color: var(--brass); }
.radio-card span { font-size: .92rem; color: var(--text-soft); }
.radio-card strong { display: block; color: var(--text); font-weight: 400; }

/* 12. CONTACT ============================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--s-6); align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s-4); margin-bottom: var(--s-3); }
.contact-card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.contact-card p { font-size: .9rem; margin: 0; font-weight: 500;}
.contact-model {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3.6;
}

/* 13. FOOTER ============================================================== */
.site-footer { background: var(--ink); color: rgba(246,243,238,.72); padding-block: var(--s-6) var(--s-4); }
.site-footer h4 {
  font-family: var(--font-body); font-size: .66rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--bone); margin-bottom: var(--s-3);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--s-4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer a { font-size: .88rem; transition: color .3s var(--ease); }
.site-footer a:hover { color: var(--brass-light); }
.site-footer .brand { text-align: left; grid-column: auto; color: var(--bone); display: block; margin-bottom: var(--s-3); }
.site-footer .brand img {filter: brightness(0) invert(1);opacity: 0.5;}
.footer-bottom {
  margin-top: var(--s-5); padding-top: var(--s-3); border-top: 1px solid rgba(246,243,238,.16);
  display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap; font-size: .7rem;text-transform: uppercase;
}
.ftr-desclmr {
    background: var(--text-soft);
    padding: clamp(10px, 2vw,20px);
}
.site-footer .small {
    color: var(--paper);
}
/* 14. UTILITIES =========================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--s-4); }
.muted { color: var(--muted); }
.small { font-size: .82rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* 15. RESPONSIVE ========================================================== */
@media (max-width: 1080px) {
    .editorial__figure { /*grid-column: 1 / span 12;*/ }
    .editorial__body { /*grid-column: 1 / span 12;*/ }
    .showcase { grid-template-columns: 1fr; }
    .pdp { grid-template-columns: 1fr; gap: var(--s-5); }
    .pdp__panel, .summary { position: static; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    
    .editorial{grid-template-columns:1fr;}
    .editorial__figure {aspect-ratio: 4 / 3.8;}
    
    :root { --gutter: 1.25rem; /*--s-7: 4.5rem;*/ --s-6: 2.55rem; }
    
    .site-header{backdrop-filter: unset;}
    .hero{min-height:auto;}
    .header-inner { grid-template-columns: 1fr auto; row-gap: .75rem; }
    .hero__inner{margin-bottom: 70px;}
    .brand { grid-column: 1; text-align: left; text-indent: 0; }
    .nav--right { grid-column: 2; }
    .nav--left { grid-column: 1 / -1; order: 3; justify-content: flex-start; gap: var(--s-3); overflow-x: auto; padding-bottom: .35rem; }
    .grid--3, .split, .contact-grid { grid-template-columns: 1fr; }
    .hero__meta { grid-template-columns: repeat(2, 1fr); }
    .hero__meta div { /*border-left: 0;*/ border-bottom: 1px solid rgba(246, 243, 238, .18); }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    
    .spec-list li{display: grid;grid-template-columns: .85fr 1.7fr;}
}
@media (max-width: 560px) {
    
    .grid--2, .grid--4, .field-row, .buy-row, .newsletter { grid-template-columns: 1fr; }
    .line-item { grid-template-columns: 84px 1fr; }
    .line-item__right { grid-column: 1 / -1; justify-items: start; text-align: left; }
    .stack-item { grid-template-columns: 130px 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
