:root{
  --bg:#f7f1ea;
  --paper:#fffaf5;
  --surface:#f1e7dc;
  --ink:#201915;
  --muted:#74685e;
  --line:rgba(58,42,31,.12);
  --accent:#7d6146;
  --accent-deep:#3b2c21;
  --shadow:0 22px 60px rgba(36,24,17,.12);
  --radius-xl:26px;
  --radius-lg:18px;
  --radius-md:12px;
  --shell:min(1280px,calc(100vw - 40px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:linear-gradient(180deg,#fbf7f1 0%,#f5ede3 50%,#efe5d8 100%);
  font-family:Manrope,system-ui,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
img{display:block;max-width:100%}

.shell{width:var(--shell);margin:0 auto}
.hidden{display:none!important}

.page-loader{
  position:fixed;
  inset:0;
  z-index:110;
  display:grid;
  place-items:center;
  background:rgba(255,250,245,.96);
  backdrop-filter:blur(10px);
  transition:opacity .45s ease, visibility .45s ease;
}
.page-loader__mark{
  font-family:"Playfair Display",serif;
  font-size:clamp(28px,4vw,52px);
  letter-spacing:.12em;
  animation:loaderPulse 1.3s ease-in-out infinite alternate;
}
.loaded .page-loader{opacity:0;visibility:hidden}

.announcement-bar{
  overflow:hidden;
  background:#171311;
  color:#f5ece0;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.announcement-track{
  display:flex;
  width:max-content;
  will-change:transform;
  animation:marquee 24s linear infinite;
}
.announcement-group{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.announcement-group span{
  position:relative;
  padding:12px 24px 12px 0;
  margin-right:24px;
  white-space:nowrap;
}
.announcement-group span::after{
  content:"•";
  position:absolute;
  right:0;
  color:#ceb190;
}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(251,247,241,.84);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(58,42,31,.08);
}
.site-header--scrolled{
  background:rgba(255,250,245,.94);
  box-shadow:0 10px 28px rgba(36,24,17,.08);
}
.header-shell{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  width:calc(100vw - 8px);
  margin-left:4px;
  margin-right:4px;
  min-height:88px;
}
.header-burger{justify-self:start}

.brand-wordmark{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}
.site-header > .header-shell > .brand-wordmark{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:2;
}
.brand-wordmark__main{
  font-family:"Playfair Display",serif;
  font-size:clamp(28px,3.4vw,48px);
  letter-spacing:.16em;
  line-height:1;
}
.brand-wordmark__image{
  display:block;
  width:clamp(112px,13vw,182px);
  height:auto;
  mix-blend-mode:normal;
  opacity:.9;
}
.brand-wordmark__sub{
  font-size:12px;
  letter-spacing:.3em;
  text-transform:uppercase;
}
.brand-wordmark--small .brand-wordmark__main{font-size:32px}
.brand-wordmark--small .brand-wordmark__image{width:138px}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#3b312b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.back-link svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.header-tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.icon-button,
.cart-button,
.login-link{
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  color:var(--ink);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-button{
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-button svg,
.cart-button svg,
.social-bubble svg,
.search-input svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon-button:hover,
.cart-button:hover,
.login-link:hover,
.button:hover,
.ghost-button:hover,
.solid-button:hover,
.filter-chip:hover{
  transform:translateY(-2px);
}
.login-link{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.cart-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
}
.cart-button strong{
  min-width:26px;
  height:26px;
  padding:0 8px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#171311;
  color:#fff;
  font-size:12px;
}
.cart-button__label{
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero-section{padding:0 0 18px}
.hero-stage,
.editorial-banner img{
  border-radius:0;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-stage{
  position:relative;
  width:100vw;
  min-height:calc(100vh - 118px);
  background:#d9cec2;
}
.hero-stage img,
.editorial-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-stage img{
  min-height:calc(100vh - 118px);
  object-fit:cover;
  object-position:center center;
}
.hero-overlay{
  position:absolute;
  left:clamp(28px,14vw,250px);
  top:68%;
  right:auto;
  bottom:auto;
  transform:translateY(-50%);
  max-width:min(38vw,520px);
}
.hero-overlay h1{
  margin:0 0 18px;
  color:rgba(34,28,24,.84);
  font-family:"Playfair Display",serif;
  font-size:clamp(62px,10vw,168px);
  font-weight:500;
  letter-spacing:.14em;
  line-height:.88;
  text-shadow:0 14px 44px rgba(255,248,238,.34);
}
.hero-wordmark{
  display:block;
  width:clamp(270px,42vw,620px);
  max-width:100%;
  height:auto;
  margin:0 0 20px;
  mix-blend-mode:multiply;
  opacity:.92;
  filter:drop-shadow(0 14px 36px rgba(255,248,238,.22));
}
.hero-overlay p{
  margin:0;
  max-width:440px;
  color:rgba(55,47,41,.82);
  font-size:clamp(19px,2.5vw,36px);
  font-weight:500;
  line-height:1.14;
  text-shadow:0 12px 32px rgba(255,248,238,.4);
}

.collection-section{margin-top:44px}
.collection-shell{
  width:min(1680px,calc(100vw - 28px));
  margin-left:auto;
  margin-right:auto;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:20px;
}
.eyebrow{
  margin:0 0 10px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.section-head h2,
.panel h1,
.legal-panel h1,
.admin-card h2,
.search-overlay__head h2,
.modal-content h2{
  margin:0;
  font-family:"Times New Roman",Times,serif;
}
.section-head h2{
  font-size:clamp(36px,4.6vw,64px);
}
.filter-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}
.filter-chip{
  border:1px solid var(--line);
  border-radius:4px;
  padding:11px 16px;
  background:rgba(255,255,255,.7);
  color:#4d4138;
  cursor:pointer;
  transition:all .2s ease;
}
.filter-chip.active{
  background:#171311;
  color:#fff;
  border-color:#171311;
}
.filter-chip--single{
  pointer-events:none;
  letter-spacing:.08em;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  column-gap:30px;
  row-gap:38px;
}
.product-card{
  overflow:visible!important;
  border-radius:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  transition:transform .28s ease, opacity .28s ease;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:none!important;
}
.product-card__link{
  display:block;
  height:100%;
}
.product-card__media{
  position:relative;
  aspect-ratio:3 / 4;
  overflow:hidden;
  background:#e7ddd0;
  box-shadow:0 12px 28px rgba(36,24,17,.07);
}
.product-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}
.product-card:hover .product-card__media img{transform:scale(1.03)}
.product-badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:1;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,250,245,.94);
  color:var(--accent-deep);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.product-badge.sold-out{
  background:#171311;
  color:#fff;
}
.product-card__body{
  padding:14px 1px 0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
.product-card h3{
  margin:0 0 7px;
  color:#191919;
  font-family:Manrope,Helvetica,Arial,sans-serif;
  font-size:14px;
  font-weight:600;
  letter-spacing:.01em;
  line-height:1.45;
}
.price-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 16px;
}
.price-line strong{font-size:18px}
.price-line del{color:#a39689}
.product-card__price{
  margin-bottom:0;
  color:#4b3026;
  font-family:"Playfair Display","Times New Roman",serif;
  letter-spacing:.01em;
}
.dual-price{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 14px;
}
.dual-price span{
  display:grid;
  min-width:0;
  gap:2px;
}
.dual-price small{
  color:#8b796c;
  font-family:Manrope,Helvetica,Arial,sans-serif;
  font-size:9px;
  font-weight:700;
  letter-spacing:.08em;
  line-height:1.25;
  text-transform:uppercase;
}
.dual-price strong{
  color:#4b3026;
  font-family:"Playfair Display","Times New Roman",serif;
  font-size:17px;
  font-weight:600;
  line-height:1.2;
  white-space:nowrap;
}
.product-card__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.product-page{
  margin-top:42px;
  margin-bottom:80px;
}
.product-detail{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
  gap:42px;
  align-items:start;
}
.product-gallery{
  display:grid;
  gap:14px;
}
.product-gallery__main{
  overflow:hidden;
  border:1px solid var(--line);
  background:#e7ddd0;
  aspect-ratio:4 / 5;
}
.product-gallery__main img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.product-gallery__thumbs{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}
.product-gallery__thumbs button{
  border:1px solid transparent;
  padding:0;
  background:#e7ddd0;
  aspect-ratio:1;
  overflow:hidden;
  cursor:pointer;
}
.product-gallery__thumbs button.active{
  border-color:#171311;
}
.product-gallery__thumbs img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-detail__info{
  position:sticky;
  top:118px;
  border:1px solid var(--line);
  background:rgba(255,250,245,.86);
  padding:34px;
  box-shadow:var(--shadow);
}
.product-detail__info h1{
  margin:0 0 18px;
  font-family:"Playfair Display",serif;
  font-size:clamp(42px,5vw,72px);
  line-height:1;
}
.product-detail__info p:not(.eyebrow){
  color:var(--muted);
  line-height:1.85;
}
.product-detail__price strong{
  font-size:26px;
}
.product-detail__price{
  max-width:430px;
  margin-bottom:20px;
}
.product-detail__price small{font-size:10px}
.stock-availability{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:8px 0 18px !important;
  font-size:13px;
  font-weight:800;
}
.stock-availability::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
}
.stock-availability.is-in-stock{color:#28724a}
.stock-availability.is-out-of-stock{color:#9a4538}
.stock-alert-form{
  display:grid;
  gap:14px;
  margin-top:8px;
  padding:20px 0 0;
  border-top:1px solid var(--line);
}
.stock-alert-form > div strong{
  display:block;
  margin-bottom:5px;
  font-family:"Playfair Display",serif;
  font-size:24px;
}
.stock-alert-form > div p{
  margin:0 !important;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.stock-alert-form label{
  display:grid;
  gap:7px;
  color:#5f5147;
  font-size:12px;
  font-weight:700;
}
.stock-alert-form input{
  width:100%;
  min-height:46px;
  border:1px solid var(--line);
  background:#fff;
  padding:0 13px;
  font:inherit;
}
.stock-alert-form [data-type="ok"]{color:#28724a}
.stock-alert-form [data-type="error"]{color:#9a3324}
.related-products{
  margin-top:70px;
}
.related-head{
  justify-content:center;
  text-align:center;
  margin-bottom:28px;
}
.related-head .eyebrow{
  color:rgba(125,97,70,.72);
  font-size:11px;
  letter-spacing:.28em;
}
.related-head h2{
  color:rgba(49,38,31,.78);
  font-family:"Playfair Display",serif;
  font-size:clamp(30px,4vw,52px);
  font-weight:500;
  letter-spacing:.02em;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:30px;
}
.related-card{
  display:block;
  overflow:visible;
  border:0;
  background:transparent;
  box-shadow:none;
  transition:transform .24s ease;
}
.related-card:hover{
  transform:translateY(-5px);
  box-shadow:none;
}
.related-card__media{
  aspect-ratio:3 / 4;
  overflow:hidden;
  background:#e7ddd0;
  box-shadow:0 12px 28px rgba(36,24,17,.07);
}
.related-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.related-card:hover .related-card__media img{
  transform:scale(1.03);
}
.related-card__body{
  padding:13px 0 0;
}
.related-card__body h3{
  margin:0 0 6px;
  color:#191919;
  font-family:Helvetica,Arial,sans-serif;
  font-size:14px;
  font-weight:400;
  letter-spacing:0;
  line-height:1.35;
}
.related-card__body .price-line{
  margin-bottom:0;
  align-items:baseline;
  color:#4b3026;
  font-family:"Playfair Display","Times New Roman",serif;
  letter-spacing:.01em;
}
.related-card__body .price-line strong{
  font-size:17px;
  font-weight:600;
}
.related-card__body .price-line del{
  color:rgba(25,25,25,.42);
  font-family:Manrope,Helvetica,Arial,sans-serif;
  font-size:11px;
  font-weight:500;
  letter-spacing:0;
}

.button,
.btn,
.ghost-button,
.solid-button{
  min-height:46px;
  border:1px solid #171311;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.button,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
}
.ghost-button,
.solid-button{
  border-radius:0;
}
.button--ghost,
.ghost-button,
.btn.ghost{
  background:rgba(255,255,255,.78);
  color:#171311;
}
.button--solid,
.solid-button,
.btn.burgundy{
  background:#171311;
  color:#fff;
}
.solid-button:disabled,
.btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
}
.collection-footer{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.site-footer{
  margin-top:76px;
  padding:48px 0 56px;
  background:#171311;
  color:#f7ede1;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr 1fr;
  gap:28px;
}
.site-footer h3{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-size:34px;
}
.site-footer p,
.site-footer a{
  color:#ddcfbf;
  line-height:1.8;
}

.search-overlay,
.mobile-menu,
.modal{
  position:fixed;
  inset:0;
  z-index:95;
}
.search-overlay__backdrop,
.mobile-menu__backdrop,
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,13,11,.58);
  backdrop-filter:blur(10px);
}
.search-overlay__panel,
.mobile-menu__panel,
.modal-card{
  position:relative;
  z-index:1;
}
.search-overlay{
  display:grid;
  place-items:center;
  padding:20px;
}
.search-overlay__panel{
  width:min(860px,100%);
  max-height:calc(100dvh - 40px);
  display:grid;
  grid-template-rows:auto auto minmax(0,1fr);
  overflow:hidden;
  padding:30px;
  border-radius:24px;
  background:#fffaf5;
  border:1px solid var(--line);
  box-shadow:0 30px 100px rgba(0,0,0,.22);
}
.search-overlay__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.search-overlay__head h2{font-size:42px}
.search-input{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:0 16px;
}
.search-input input{
  width:100%;
  border:0;
  background:transparent;
  padding:16px 0;
  outline:none;
}
.search-results{
  display:grid;
  min-height:0;
  max-height:min(58vh,620px);
  gap:10px;
  margin-top:18px;
  padding-right:8px;
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  -webkit-overflow-scrolling:touch;
}
.search-results::-webkit-scrollbar{width:7px}
.search-results::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:rgba(75,48,38,.28);
}
.search-result{
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:14px;
  align-items:center;
  padding:10px 4px 12px;
  border-bottom:1px solid rgba(70,55,44,.1);
  background:transparent;
  transition:background .2s ease, padding .2s ease;
}
.search-result:hover{
  padding-left:10px;
  padding-right:10px;
  background:rgba(236,225,212,.34);
}
.search-result img{
  width:72px;
  height:92px;
  object-fit:cover;
  border-radius:2px;
}
.search-result small{display:block;color:var(--muted)}
.search-result__link{
  color:#3b2c24;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-bottom:1px solid currentColor;
  padding-bottom:3px;
}
.search-result__link:hover{
  color:#7d4738;
}

.mobile-menu{
  display:grid;
  justify-items:start;
}
.mobile-menu__panel{
  width:min(420px,100%);
  height:100%;
  background:#fffaf5;
  border-right:1px solid var(--line);
  padding:22px;
  box-shadow:0 20px 70px rgba(0,0,0,.18);
}
.mobile-menu__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}
.mobile-menu__links{
  display:grid;
  gap:8px;
}
.mobile-menu__links a{
  padding:14px 0;
  border-bottom:1px solid rgba(58,42,31,.08);
  font-size:18px;
}

.page{
  width:min(980px,calc(100vw - 36px));
  margin:40px auto 70px;
}
.panel,
.legal-panel,
.admin-card{
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,250,245,.86);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow);
  padding:30px;
}
.panel h1,
.legal-panel h1{font-size:clamp(38px,5vw,68px)}
.small{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.cart-row{
  display:grid;
  grid-template-columns:88px 1fr auto;
  gap:16px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.cart-row img{
  width:88px;
  height:112px;
  object-fit:cover;
  border-radius:12px;
}
.cart-row h3{
  margin:0 0 8px;
  font-family:"Playfair Display",serif;
  font-size:28px;
}
.qty{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
}
.qty button{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.total-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:24px;
  font-size:20px;
  font-weight:800;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field.full,
.checkline.full{grid-column:1 / -1}
.field label{
  color:var(--muted);
  font-size:13px;
}
.field input,
.field textarea,
.field select{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:14px 15px;
  outline:none;
}
.field textarea{min-height:110px}
.checkline{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.checkline a{
  color:var(--accent);
  text-decoration:underline;
}

.checkout-page{
  width:min(1320px,calc(100vw - 36px));
  margin:40px auto 76px;
}
.checkout-hero{
  margin-bottom:24px;
}
.checkout-hero h1{
  margin:0 0 10px;
  font-family:"Playfair Display",serif;
  font-size:clamp(42px,5vw,72px);
  line-height:1;
}
.checkout-hero p:not(.eyebrow){
  max-width:760px;
  color:var(--muted);
  line-height:1.8;
}
.checkout-layout{
  display:grid;
  grid-template-columns:minmax(0,1.22fr) minmax(360px,.78fr);
  gap:22px;
  align-items:start;
}
.checkout-form-panel,
.checkout-summary{
  border-radius:18px;
}
.checkout-summary{
  position:sticky;
  top:102px;
  background:linear-gradient(180deg,#fffaf3 0%,#f6ecdf 100%);
  border-color:rgba(98,74,55,.18);
  box-shadow:0 22px 70px rgba(69,50,35,.12);
  align-self:start;
}
.checkout-summary__head{
  margin-bottom:18px;
}
.checkout-summary__head h2{
  margin:4px 0 0;
  font-family:"Playfair Display",serif;
  font-size:34px;
  line-height:1.05;
  color:#2f251f;
}
.checkout-form textarea[name="address"]{
  min-height:132px;
}
.checkout-submit{
  grid-column:1 / -1;
  min-height:54px;
}
.checkout-submit-note{
  grid-column:1 / -1;
  margin:0;
  color:var(--muted);
}
.payment-choice{
  grid-column:1 / -1;
  min-width:0;
  margin:4px 0 0;
  padding:0;
  border:0;
}
.payment-choice legend{
  margin-bottom:10px;
  color:var(--muted);
  font-size:13px;
}
.payment-choice__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.payment-option{
  position:relative;
  min-height:90px;
  display:grid;
  grid-template-columns:44px minmax(0,1fr) 18px;
  gap:12px;
  align-items:center;
  padding:16px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.payment-option:hover{
  border-color:rgba(84,58,42,.4);
}
.payment-option.is-selected{
  border-color:#3b2c24;
  background:#fffaf4;
  box-shadow:0 0 0 1px #3b2c24;
}
.payment-option input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.payment-option__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#2f251f;
  color:#fff;
  font-family:"Playfair Display",serif;
  font-size:21px;
}
.payment-option__icon--card svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
}
.payment-option__copy{
  min-width:0;
  display:grid;
  gap:5px;
}
.payment-option__copy strong{
  color:#2f251f;
  font-size:14px;
}
.payment-option__copy small{
  color:var(--muted);
  font-size:11px;
  line-height:1.5;
}
.payment-option__brands{
  width:min(260px,100%);
  height:20px;
  object-fit:contain;
  object-position:left center;
  display:block;
  margin-top:3px;
}
.payment-option__check{
  width:17px;
  height:17px;
  border:1px solid #a7988b;
  border-radius:50%;
}
.payment-option.is-selected .payment-option__check{
  border:5px solid #3b2c24;
}
.identity-field small{
  color:var(--muted);
  font-size:11px;
  line-height:1.55;
}
.secure-payment-box{
  display:grid;
  gap:12px;
  margin-top:24px;
  padding:18px;
  border:1px solid rgba(125,97,70,.16);
  background:rgba(255,255,255,.74);
}
.secure-payment-box img{
  width:min(240px,100%);
  height:auto;
  display:block;
}
.secure-payment-box p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.bank-transfer-box{
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  gap:14px;
  align-items:start;
  margin-top:24px;
  padding:18px;
  border:1px solid rgba(125,97,70,.16);
  background:rgba(255,255,255,.74);
}
.bank-transfer-box__icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#2f251f;
  color:#fff;
  font-family:"Playfair Display",serif;
  font-size:24px;
}
.bank-transfer-box strong{
  display:block;
  margin:2px 0 6px;
}
.bank-transfer-box p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.bank-account-card{
  display:grid;
  gap:0;
  margin-top:14px;
  border:1px solid rgba(74,55,39,.16);
  border-radius:8px;
  background:#fff;
  overflow:hidden;
  text-align:left;
}
.bank-account-row{
  display:grid;
  grid-template-columns:minmax(120px,.72fr) minmax(0,1.28fr);
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(74,55,39,.1);
  min-width:0;
}
.bank-account-row span{
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}
.bank-account-row strong{
  min-width:0;
  color:#2f251f;
  font-size:14px;
  line-height:1.55;
  overflow-wrap:anywhere;
}
.iban-value{
  font-family:"Manrope",sans-serif;
  font-variant-numeric:tabular-nums;
  letter-spacing:0;
}
.bank-copy-button{
  width:calc(100% - 28px);
  min-height:46px;
  margin:14px;
  gap:9px;
}
.bank-copy-button svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
}
.bank-account-note{
  margin:0;
  padding:0 16px 16px;
  color:var(--muted);
  font-size:12px;
  line-height:1.65;
}
.bank-account-note strong{
  color:#2f251f;
}
.bank-account-card--confirmation{
  margin:0 0 22px;
}
.bank-account-card--confirmation .bank-account-row--reference strong{
  color:var(--accent);
}
.order-confirmation{
  width:min(720px,calc(100vw - 32px));
  margin:0 auto;
  padding:48px 0 72px;
}
.order-confirmation__panel{
  margin-top:28px;
  padding:clamp(24px,5vw,48px);
  border:1px solid rgba(70,51,37,.14);
  background:#fffaf3;
  box-shadow:0 22px 70px rgba(69,50,35,.12);
  text-align:center;
}
.order-confirmation__panel h1{
  margin:8px 0 14px;
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,6vw,54px);
  line-height:1.05;
}
.order-confirmation__panel > p:not(.eyebrow):not(.small){
  color:var(--muted);
  line-height:1.75;
}
.order-number{
  display:grid;
  grid-template-columns:1fr auto;
  gap:4px 12px;
  align-items:center;
  margin:26px 0;
  padding:16px 18px;
  border:1px solid rgba(70,51,37,.16);
  background:#fff;
  text-align:left;
}
.order-number span{
  color:var(--muted);
  font-size:12px;
}
.order-number strong{
  grid-column:1;
  font-size:17px;
}
.order-number .icon-button{
  grid-column:2;
  grid-row:1 / 3;
}
.order-confirmation__steps{
  display:grid;
  gap:10px;
  margin:0 0 26px;
  text-align:left;
}
.order-confirmation__steps p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.order-confirmation__actions{
  justify-content:center;
}
.payment-methods{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.payment-badge{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border:1px solid rgba(43,34,29,.14);
  background:#fff;
  color:#201a16;
  font-family:Helvetica,Arial,sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
}
.payment-badge--visa{color:#1a4f9a}
.payment-badge--mastercard{color:#c6422d}
.payment-badge--troy{color:#125c8f}
.payment-badge--ssl{color:#26754b}
.payment-logo-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}
.payment-logo-grid img{
  width:100%;
  height:auto;
  display:block;
  min-height:44px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 8px 24px rgba(65,48,35,.06);
}
.payment-text-badges{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:10px;
}
.payment-text-badges span{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(43,34,29,.14);
  background:#fffaf7;
  color:#30251f;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.checkout-notes{
  display:grid;
  gap:8px;
  margin:18px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.card-payment-panel{
  margin-top:22px;
}
.official-payment-logos{
  display:grid;
  grid-template-columns:minmax(0,1fr) 158px;
  gap:10px;
  align-items:center;
  margin-top:12px;
}
.official-payment-logos img{
  width:100%;
  height:58px;
  object-fit:contain;
  padding:11px;
  border:1px solid rgba(43,34,29,.14);
  border-radius:6px;
  background:#fff;
}
.card-brand-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin-top:12px;
}
.card-brand{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(43,34,29,.14);
  border-radius:6px;
  background:#fff;
  font-family:Arial,Helvetica,sans-serif;
  font-weight:800;
}
.card-brand--visa{
  color:#153f8f;
  font-size:20px;
  font-style:italic;
}
.card-brand--mastercard{
  position:relative;
  flex-direction:column;
  gap:2px;
  font-size:8px;
}
.card-brand--mastercard i{
  position:relative;
  width:38px;
  height:20px;
}
.card-brand--mastercard i::before,
.card-brand--mastercard i::after{
  content:"";
  position:absolute;
  top:0;
  width:20px;
  height:20px;
  border-radius:50%;
}
.card-brand--mastercard i::before{left:2px;background:#eb001b}
.card-brand--mastercard i::after{right:2px;background:#f79e1b;mix-blend-mode:multiply}
.card-brand--mastercard b{
  color:#24201d;
  font-size:8px;
}
.card-brand--troy{
  color:#1671a6;
  font-size:17px;
  font-style:italic;
}
.checkout-order-box{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(74,55,39,.12);
}
.checkout-order-box [data-cart-items]{
  max-height:220px;
  overflow:auto;
  padding-right:4px;
}
.checkout-order-box .cart-row{
  grid-template-columns:64px 1fr auto;
  gap:12px;
  padding:12px 0;
}
.checkout-order-box .cart-row img{
  width:64px;
  height:78px;
}
.checkout-order-box .cart-row h3{
  font-size:20px;
}
.payment-price-difference{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed rgba(74,55,39,.2);
  color:var(--muted);
  font-size:12px;
}

.shipping-email-status{
  display:grid;
  gap:3px;
  padding:13px 15px;
  border:1px solid rgba(58,42,31,.12);
  background:#f8f3ed;
  font-size:12px;
}
.shipping-email-status span{color:var(--muted)}
.shipping-email-status.is-sent{
  border-color:rgba(45,118,76,.24);
  background:#f0f8f2;
  color:#276a44;
}
.shipping-email-status.is-failed{
  border-color:rgba(154,52,52,.22);
  background:#fff3f1;
  color:#8a3030;
}

.tracking-body{
  min-height:100vh;
  background:#f6efe7;
}
.tracking-shell{
  width:min(100vw - 32px,720px);
  margin:0 auto;
  padding:42px 0 72px;
}
.tracking-shell > .brand-wordmark{
  width:max-content;
  margin:0 auto 30px;
}
.tracking-panel{
  padding:clamp(24px,5vw,48px);
  border:1px solid rgba(58,42,31,.12);
  background:rgba(255,252,248,.92);
  box-shadow:0 22px 60px rgba(55,38,27,.08);
}
.tracking-panel h1{
  margin:0 0 12px;
  font-family:"Playfair Display","Times New Roman",serif;
  font-size:clamp(38px,7vw,58px);
  font-weight:500;
  line-height:1.05;
}
.tracking-panel > p:not(.eyebrow){
  margin:0 0 28px;
  color:var(--muted);
  line-height:1.7;
}
.tracking-result{
  display:grid;
  gap:18px;
  margin-top:26px;
  padding:22px;
  border:1px solid rgba(58,42,31,.12);
  background:#fff;
}
.tracking-result.is-error{
  border-color:rgba(154,52,52,.22);
  background:#fff3f1;
  color:#8a3030;
}
.tracking-result__head,
.tracking-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.tracking-result__head span{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.tracking-result__head strong{
  color:#4b3026;
  font-family:"Playfair Display","Times New Roman",serif;
  font-size:20px;
  text-align:right;
}
.tracking-result ul{
  display:grid;
  gap:8px;
  margin:0;
  padding:16px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  list-style:none;
}
.tracking-result li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:#51443b;
}
.tracking-shipping{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.tracking-shipping span{
  display:grid;
  gap:5px;
  padding:14px;
  background:#f7f1eb;
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
}
.tracking-shipping strong{
  color:var(--ink);
  font-size:14px;
  text-transform:none;
}
.payment-price-difference strong{
  color:#7d4738;
}
.footer-payment{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.footer-payment img{
  width:min(210px,100%);
  height:auto;
}
.payment-methods--footer{
  margin-top:0;
}
.payment-methods--footer .payment-badge{
  min-height:32px;
  padding:0 10px;
  font-size:11px;
  background:rgba(255,255,255,.72);
}
.payment-logo-grid--footer{
  grid-template-columns:repeat(2,minmax(0,92px));
  gap:8px;
  margin-top:0;
}

.payment-body{
  min-height:100vh;
  display:grid;
  place-items:start center;
  padding:20px;
}
.payment-body .order-confirmation{
  width:min(720px,100%);
}
.payment-brand{
  margin:0 auto 22px;
}
.pay-card{
  width:min(560px,100%);
  padding:34px;
  text-align:center;
  border-radius:28px;
  border:1px solid var(--line);
  background:#fffaf5;
  box-shadow:var(--shadow);
}
.secure-icon{
  width:76px;
  height:76px;
  margin:0 auto 18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(125,97,70,.12);
  font-size:34px;
}

.legal-page{
  width:min(980px,calc(100vw - 36px));
  margin:40px auto 72px;
}
.legal-panel p{
  color:var(--muted);
  line-height:1.85;
}
.legal-stack{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.legal-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.72);
}
.legal-card h2{
  margin:0 0 10px;
  font-family:"Playfair Display",serif;
  font-size:30px;
}
.legal-card h3{
  margin:20px 0 8px;
  font-size:17px;
}
.legal-info-list{
  display:grid;
  gap:10px;
  margin:14px 0 0;
}
.legal-info-list div{
  display:grid;
  grid-template-columns:minmax(150px,.34fr) 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(82,63,47,.1);
}
.legal-info-list dt{
  color:#312821;
  font-weight:800;
}
.legal-info-list dd{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.legal-table-wrap{
  overflow:auto;
  margin:16px 0;
  border:1px solid var(--line);
  background:#fffaf5;
}
.legal-table{
  width:100%;
  border-collapse:collapse;
  min-width:680px;
}
.legal-table th,
.legal-table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
.legal-table th{
  color:#2f251f;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.legal-table td{
  color:var(--muted);
  line-height:1.6;
}

.admin-body{
  background:linear-gradient(180deg,#f7f2ea 0%,#efe6da 100%);
}
.login{
  width:min(460px,calc(100vw - 36px));
  margin:70px auto;
}
.auth-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:34px 18px;
}
.auth-card{
  width:min(560px,100%);
  padding:34px;
  border:1px solid rgba(119,91,68,.14);
  background:rgba(255,250,245,.9);
  box-shadow:0 28px 90px rgba(62,45,31,.14);
}
.auth-brand{
  margin:0 auto 24px;
}
.auth-intro{
  text-align:center;
  margin-bottom:22px;
}
.auth-intro--compact{
  margin:0 0 8px;
}
.auth-intro h1{
  margin:4px 0 10px;
  font-family:"Playfair Display",serif;
  font-size:clamp(38px,6vw,58px);
  line-height:1;
}
.auth-intro h2{
  margin:4px 0 10px;
  font-family:"Playfair Display",serif;
  font-size:34px;
  line-height:1.05;
}
.auth-intro p:not(.eyebrow){
  margin:0 auto;
  max-width:430px;
  color:var(--muted);
  line-height:1.7;
}
.auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  padding:6px;
  margin:0 0 20px;
  border:1px solid var(--line);
  background:#fff;
}
.auth-tabs button{
  border:0;
  background:transparent;
  padding:13px 12px;
  color:#6f6257;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
}
.auth-tabs button.active{
  background:#2b211c;
  color:#fffaf5;
}
.auth-inline-link{
  justify-self:start;
  border:0;
  background:transparent;
  padding:0;
  color:#7d4738;
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:4px;
}
.btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.password-rules{
  display:grid;
  gap:6px;
  margin:10px 0 0;
  padding:0;
  list-style:none;
  color:#8b7b6f;
  font-size:12px;
}
.password-rules li{
  display:flex;
  align-items:center;
  gap:8px;
}
.password-rules li::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#c8b9aa;
}
.password-rules li.is-ok{
  color:#28724a;
}
.password-rules li.is-ok::before{
  background:#28724a;
}
.auth-message{
  min-height:22px;
  margin-top:16px;
  text-align:center;
}
.auth-message[data-type="ok"]{color:#23704a}
.auth-message[data-type="error"]{color:#9a3324}
.auth-message[data-type="warn"]{color:#8a6632}
.auth-session{
  padding:22px;
  border:1px solid var(--line);
  background:#fff;
  text-align:center;
}
.auth-session h2{
  margin:6px 0 8px;
  font-family:"Playfair Display",serif;
  font-size:34px;
}
.auth-admin-link{
  margin-top:8px;
  text-align:center;
}
.admin-shell{
  width:var(--shell);
  margin:28px auto 60px;
}
.admin-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.admin-grid{
  display:grid;
  grid-template-columns:minmax(380px,.86fr) minmax(0,1.14fr);
  gap:22px;
}
.admin-card h2{
  font-size:34px;
  margin-bottom:18px;
}
.product-list{
  display:grid;
  gap:12px;
}
.admin-product{
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:12px;
  align-items:center;
  padding:10px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.72);
}
.admin-help{
  display:grid;
  gap:10px;
  margin:0 0 18px;
  padding:16px;
  border:1px solid rgba(125,97,70,.14);
  background:rgba(255,255,255,.54);
}
.admin-help strong{
  color:#2f251f;
  font-size:14px;
}
.image-preview{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
  margin-top:10px;
}
.image-preview img{
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
  background:#e7ddd0;
}
.admin-switches{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.admin-switches .checkline{
  min-height:46px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  background:#fff;
}
.admin-product img{
  width:72px;
  height:92px;
  object-fit:cover;
  border-radius:12px;
}
.danger{
  border:1px solid #be445b;
  border-radius:999px;
  background:#fff;
  color:#be445b;
  padding:10px 13px;
  cursor:pointer;
}
.admin-nav{
  display:flex;
  gap:6px;
  margin-bottom:20px;
  padding:6px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.66);
  overflow-x:auto;
}
.admin-nav button{
  flex:0 0 auto;
  min-height:42px;
  border:0;
  background:transparent;
  color:#695a50;
  padding:0 16px;
  font:inherit;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.admin-nav button.active{background:#2f251f;color:#fff}
.admin-nav button span{
  display:inline-grid;
  min-width:22px;
  height:22px;
  place-items:center;
  margin-left:6px;
  border-radius:50%;
  background:#9a4538;
  color:#fff;
}
.admin-pane{min-width:0}
.admin-metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-bottom:22px;
}
.admin-metrics article{
  min-height:122px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.76);
}
.admin-metrics span{color:var(--muted);font-size:12px;font-weight:700}
.admin-metrics strong{
  font-family:"Playfair Display",serif;
  font-size:38px;
  line-height:1;
}
.admin-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.admin-card--wide{width:100%}
.admin-section-copy{
  margin:-8px 0 20px;
  max-width:760px;
  line-height:1.7;
}
.admin-product--stock{
  align-items:start;
  border-radius:8px;
  padding:14px;
}
.admin-product__content{min-width:0;display:grid;gap:4px}
.price-editor{
  display:grid;
  grid-template-columns:repeat(3,minmax(88px,1fr)) auto;
  gap:8px;
  align-items:end;
  margin-top:10px;
}
.price-editor label{
  min-width:0;
  display:grid;
  gap:5px;
}
.price-editor span{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
}
.price-editor input{
  width:100%;
  min-height:40px;
  border:1px solid var(--line);
  background:#fff;
  padding:0 9px;
  font:inherit;
}
.price-editor .btn{
  min-height:40px;
  padding:0 12px;
  white-space:nowrap;
}
.stock-editor{
  display:grid;
  grid-template-columns:90px minmax(70px,100px) auto;
  gap:8px;
  align-items:center;
  margin-top:10px;
}
.stock-editor label{color:var(--muted);font-size:12px;font-weight:700}
.stock-editor input{
  width:100%;
  min-height:40px;
  border:1px solid var(--line);
  background:#fff;
  padding:0 10px;
  font:inherit;
}
.stock-editor .btn{min-height:40px;padding:0 12px;white-space:nowrap}
.admin-mini-row{
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.admin-mini-row:last-child{border-bottom:0}
.admin-mini-row img{width:52px;height:62px;object-fit:cover}
.admin-mini-row div{min-width:0;display:grid;gap:4px}
.admin-mini-row span{color:var(--muted);font-size:12px}
.admin-mini-row--order{grid-template-columns:minmax(0,1fr) auto}
.admin-order{
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.36);
}
.admin-order-toolbar{
  display:grid;
  grid-template-columns:minmax(260px,1fr) minmax(190px,.45fr) auto;
  gap:12px;
  align-items:end;
  margin:18px 0 20px;
  padding:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.58);
}
.admin-order-search,
.admin-order-filter{
  display:grid;
  gap:7px;
}
.admin-order-search span,
.admin-order-filter span,
.admin-order-result span{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
}
.admin-order-search input,
.admin-order-filter select{
  width:100%;
  min-height:44px;
  border:1px solid var(--line);
  background:#fff;
  padding:0 12px;
  color:var(--ink);
  font:inherit;
}
.admin-order-result{
  min-height:44px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 12px;
  border:1px solid var(--line);
  background:#fff;
  white-space:nowrap;
}
.admin-order-result strong{
  font-family:"Playfair Display",serif;
  font-size:22px;
}
.admin-order:last-child{border-bottom:1px solid var(--line)}
.admin-order > summary{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px;
  cursor:pointer;
  list-style:none;
}
.admin-order > summary::-webkit-details-marker{display:none}
.admin-order > summary > div:first-child{display:grid;gap:5px}
.admin-order > summary span{color:var(--muted);font-size:12px}
.admin-order__summary-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}
.status-pill{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:#eee5dc;
  color:#66584e !important;
  font-size:11px !important;
  font-weight:800;
  white-space:nowrap;
}
.status-pill--paid,.status-pill--preparing{background:#e2efe7;color:#276846 !important}
.status-pill--shipped{background:#e5ebf3;color:#34587b !important}
.status-pill--cancelled{background:#f4e1df;color:#934133 !important}
.status-pill--payment_waiting,
.status-pill--payment_initializing{background:#fff0d6;color:#805b21 !important}
.status-pill--payment_failed{background:#f4e1df;color:#934133 !important}
.admin-order__body{padding:0 16px 20px}
.admin-order__section{padding:20px 0;border-top:1px solid var(--line)}
.admin-order__section h3{
  margin:0 0 14px;
  font-family:"Playfair Display",serif;
  font-size:24px;
}
.admin-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 20px;
}
.admin-info-grid div{display:grid;gap:4px}
.admin-info-grid .full{grid-column:1 / -1}
.admin-info-grid span{color:var(--muted);font-size:11px}
.admin-info-grid strong{font-size:13px;line-height:1.5}
.admin-order-items{display:grid;gap:8px}
.admin-order-item{
  display:grid;
  grid-template-columns:52px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  padding:8px 0;
}
.admin-order-item img{width:52px;height:64px;object-fit:cover}
.admin-order-item div{display:grid;gap:4px}
.admin-order-item span{color:var(--muted);font-size:12px}
.admin-order-total{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--line);
}
.admin-shipping-form{max-width:760px}
.admin-alert-group{border-top:1px solid var(--line)}
.admin-alert-group:last-child{border-bottom:1px solid var(--line)}
.admin-alert-group > summary{
  min-height:84px;
  display:grid;
  grid-template-columns:56px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:14px 10px;
  cursor:pointer;
  list-style:none;
}
.admin-alert-group > summary::-webkit-details-marker{display:none}
.admin-alert-group > summary img{width:56px;height:68px;object-fit:cover}
.admin-alert-group > summary div{display:grid;gap:4px}
.admin-alert-group > summary span{color:var(--muted);font-size:12px}
.admin-alert-list{padding:0 10px 14px 78px}
.admin-alert-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-top:1px solid var(--line);
}
.admin-alert-row > div{display:grid;gap:4px}
.admin-alert-row span{color:var(--muted);font-size:12px}

.cookie-banner{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:85;
  width:min(980px,calc(100vw - 36px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,250,245,.94);
  backdrop-filter:blur(16px);
  box-shadow:0 18px 60px rgba(36,24,17,.16);
}
.cookie-banner p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.modal{
  display:grid;
  align-items:center;
  justify-items:center;
  padding:24px;
}
.modal-card{
  width:min(1040px,calc(100vw - 32px));
  max-height:88vh;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.75fr);
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fffaf5;
  box-shadow:0 30px 100px rgba(0,0,0,.22);
}
.modal-media{
  height:min(78vh,680px);
  min-height:0;
  background:#e5dbcf;
}
.modal-card img{
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  object-position:center top;
}
.modal-content{
  max-height:88vh;
  overflow:auto;
  padding:32px;
}
.modal-content h2{
  font-size:clamp(36px,4vw,50px);
  line-height:1.04;
}
.modal-close{
  position:absolute;
  top:14px;
  right:14px;
}

.social-bubble{
  position:fixed;
  right:18px;
  bottom:110px;
  z-index:80;
  display:flex;
  flex-direction:column-reverse;
  align-items:flex-end;
  gap:10px;
}
.social-bubble__main,
.social-bubble__menu a{
  width:54px;
  height:54px;
  border:1px solid var(--line);
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.92);
  color:#171311;
  box-shadow:0 10px 28px rgba(36,24,17,.14);
}
.social-bubble__main{
  cursor:pointer;
}
.social-bubble__menu{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease;
}
.social-bubble.is-open .social-bubble__menu{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  z-index:100;
  border-radius:999px;
  background:#171311;
  color:#fff;
  padding:12px 18px;
  box-shadow:var(--shadow);
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.12s}
.stagger .product-card{
  opacity:0;
  transform:translateY(24px);
}
.stagger .product-card.in-view{
  opacity:1;
  transform:translateY(0);
}

@keyframes loaderPulse{
  from{transform:translateY(0);opacity:.72}
  to{transform:translateY(-8px);opacity:1}
}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-33.3333%)}
}

@media (max-width:1080px){
  .collection-shell{width:min(100vw - 32px,1280px)}
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .related-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .checkout-layout{grid-template-columns:1fr}
  .checkout-summary{
    position:static;
  }
  .product-detail{grid-template-columns:1fr}
  .product-detail__info{
    position:static;
  }
  .section-head,
  .footer-grid,
  .admin-grid{grid-template-columns:1fr}
  .admin-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-overview-grid{grid-template-columns:1fr}
  .section-head{align-items:flex-start;flex-direction:column}
}

@media (max-width:860px){
  .header-shell{
    grid-template-columns:96px minmax(0,1fr) 96px;
    gap:4px;
    width:calc(100vw - 16px);
    min-height:72px;
    margin:0 8px;
  }
  .site-header > .header-shell > .brand-wordmark{
    position:static;
    left:auto;
    top:auto;
    z-index:2;
    max-width:100%;
    justify-self:center;
    transform:none;
  }
  .brand-wordmark__main{font-size:32px}
  .site-header > .header-shell > .brand-wordmark .brand-wordmark__image{
    width:min(25vw,120px);
  }
  .site-header > .header-shell > .brand-wordmark .brand-wordmark__sub{
    font-size:9px;
    letter-spacing:.22em;
  }
  .header-tools{
    min-width:0;
    gap:5px;
  }
  .header-tools .icon-button,
  .header-burger{
    width:40px;
    height:40px;
  }
  .cart-button{
    position:relative;
    width:42px;
    height:40px;
    justify-content:center;
    padding:0;
  }
  .cart-button strong{
    position:absolute;
    top:-5px;
    right:-4px;
    min-width:18px;
    width:auto;
    height:18px;
    padding:0 5px;
    font-size:9px;
  }
  .cart-button__label{display:none}
  .collection-shell{width:min(100vw - 24px,1280px)}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .login-link{display:none}
  .footer-grid,
  .admin-grid,
  .modal-card{grid-template-columns:1fr}
  .modal-card{max-height:92vh}
  .modal-media{height:58vh}
  .modal-card img{height:100%}
  .modal-content{max-height:none}
}

@media (max-width:580px){
  .header-shell{
    grid-template-columns:90px minmax(0,1fr) 90px;
    gap:4px;
    width:calc(100vw - 16px);
    min-height:68px;
    margin:0 8px;
  }
  .site-header > .header-shell > .brand-wordmark{
    position:static;
    left:auto;
    top:auto;
    transform:none;
    justify-self:center;
    max-width:100%;
  }
  .site-header > .header-shell > .brand-wordmark .brand-wordmark__image{
    width:min(29vw,104px);
  }
  .site-header > .header-shell > .brand-wordmark .brand-wordmark__sub{
    font-size:8px;
    letter-spacing:.2em;
  }
  .header-tools{gap:5px}
  .header-tools .icon-button,
  .header-burger{
    width:40px;
    height:40px;
  }
  .cart-button{
    position:relative;
    width:42px;
    height:40px;
    justify-content:center;
    padding:0;
  }
  .cart-button strong{
    position:absolute;
    top:-5px;
    right:-4px;
    min-width:18px;
    width:auto;
    height:18px;
    padding:0 5px;
    font-size:9px;
  }
  .shell{width:min(100vw - 24px,1280px)}
  .collection-shell{width:min(100vw - 22px,1280px)}
  .hero-stage,
  .hero-stage img{min-height:72vh}
  .hero-stage img{object-position:58% center}
  .hero-overlay{
    left:22px;
    top:auto;
    bottom:34px;
    transform:none;
    max-width:78vw;
  }
  .hero-overlay h1{
    margin-bottom:10px;
    font-size:clamp(48px,18vw,82px);
  }
  .hero-wordmark{
    width:min(76vw,360px);
    margin-bottom:12px;
  }
  .hero-overlay p{
    font-size:28px;
    max-width:280px;
  }
  .form-grid,
  .footer-grid{grid-template-columns:1fr}
  .product-grid,
  .related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    column-gap:12px;
    row-gap:30px;
  }
  .product-card__body{padding-top:10px!important}
  .product-card h3{
    min-height:40px;
    font-size:13px;
    line-height:1.42;
  }
  .dual-price{gap:8px}
  .dual-price small{
    font-size:8px;
    letter-spacing:.04em;
  }
  .dual-price strong{font-size:14px}
  .product-detail__price{
    grid-template-columns:1fr;
    gap:12px;
  }
  .product-detail__price strong{font-size:22px}
  .tracking-shell{
    width:min(100vw - 20px,720px);
    padding:24px 0 48px;
  }
  .tracking-panel{padding:24px 18px}
  .tracking-result__head,
  .tracking-total{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }
  .tracking-result__head strong{text-align:left}
  .tracking-shipping{grid-template-columns:1fr}
  .search-overlay{
    place-items:stretch;
    padding:10px;
  }
  .search-overlay__panel{
    width:100%;
    max-height:calc(100dvh - 20px);
    padding:18px;
    border-radius:14px;
  }
  .search-overlay__head{
    gap:12px;
    margin-bottom:12px;
  }
  .search-overlay__head h2{
    font-size:30px;
    line-height:1.05;
  }
  .search-results{
    max-height:none;
    margin-top:12px;
    padding-right:5px;
  }
  .search-result{
    grid-template-columns:58px minmax(0,1fr) auto;
    gap:10px;
  }
  .search-result img{
    width:58px;
    height:74px;
  }
  .search-result__link{
    grid-column:auto;
    font-size:10px;
    letter-spacing:.06em;
  }
  .product-badge{
    top:9px;
    left:9px;
    padding:6px 8px;
    font-size:9px;
  }
  .checkout-page{
    width:min(100vw - 20px,1320px);
    margin:24px auto 52px;
  }
  .checkout-hero h1{
    font-size:36px;
    line-height:1.06;
  }
  .checkout-hero p:not(.eyebrow){
    line-height:1.65;
  }
  .checkout-summary,
  .checkout-form-panel{
    min-width:0;
    padding:20px;
  }
  .checkout-summary__head h2{
    font-size:30px;
  }
  .payment-choice__grid{
    grid-template-columns:1fr;
  }
  .payment-option{
    min-height:82px;
  }
  .payment-option__brands{
    height:18px;
  }
  .official-payment-logos{
    grid-template-columns:1fr;
  }
  .official-payment-logos img{
    height:54px;
  }
  .card-brand-row{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .bank-transfer-box{
    grid-template-columns:44px minmax(0,1fr);
    padding:14px;
  }
  .bank-transfer-box__icon{
    width:44px;
    height:44px;
    font-size:20px;
  }
  .bank-account-row{
    grid-template-columns:1fr;
    gap:4px;
    padding:13px 14px;
  }
  .iban-value{
    font-size:13px;
  }
  .bank-copy-button{
    width:calc(100% - 24px);
    margin:12px;
  }
  .order-confirmation{
    width:min(100vw - 20px,720px);
    padding:28px 0 52px;
  }
  .order-confirmation__panel{
    margin-top:20px;
    padding:22px 18px;
  }
  .order-confirmation__panel h1{
    font-size:36px;
  }
  .order-confirmation__actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .order-confirmation__actions .btn{
    width:100%;
  }
  .back-link span{
    display:none;
  }
  .back-link{
    width:44px;
    min-width:44px;
    justify-content:center;
    padding:0;
  }
  .product-grid{row-gap:28px}
  .admin-switches,
  .image-preview{grid-template-columns:1fr 1fr}
  .admin-metrics{grid-template-columns:1fr}
  .admin-metrics article{min-height:100px}
  .admin-top{align-items:flex-start}
  .admin-top .actions{justify-content:flex-end}
  .admin-product--stock{grid-template-columns:58px minmax(0,1fr)}
  .admin-product--stock > .danger{grid-column:2;justify-self:start}
  .admin-product--stock img{width:58px;height:74px}
  .stock-editor{grid-template-columns:1fr 80px}
  .stock-editor .btn{grid-column:1 / -1}
  .price-editor{grid-template-columns:1fr 1fr}
  .price-editor .btn{grid-column:1 / -1}
  .admin-order > summary{align-items:flex-start;flex-direction:column}
  .admin-order-toolbar{grid-template-columns:1fr}
  .admin-order-result{justify-content:center}
  .admin-order__summary-right{width:100%;justify-content:space-between}
  .admin-info-grid{grid-template-columns:1fr}
  .admin-info-grid .full{grid-column:auto}
  .admin-order-item{grid-template-columns:46px minmax(0,1fr)}
  .admin-order-item > b{grid-column:2}
  .admin-alert-list{padding-left:10px}
  .admin-alert-row{align-items:flex-start;flex-direction:column}
  .product-page{
    margin-top:24px;
  }
  .product-detail{
    gap:22px;
  }
  .product-detail__info{
    padding:24px;
  }
  .product-gallery__thumbs{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .search-overlay__panel,
  .panel,
  .legal-panel,
  .admin-card{padding:22px}
  .mobile-menu__panel{width:min(100vw - 40px,420px)}
  .search-result{grid-template-columns:64px 1fr}
  .search-result__link{grid-column:2}
  .cookie-banner{grid-template-columns:1fr}
  .cart-row{grid-template-columns:72px 1fr}
  .cart-row .right{grid-column:2}
  .modal{
    align-items:end;
    padding:0;
  }
  .modal-card{
    width:100%;
    border-radius:22px 22px 0 0;
  }
  .modal-media{height:56vh}
  .modal-card img{height:100%}
  .modal-content h2{font-size:38px}
}

@media (prefers-reduced-motion:reduce){
  *{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
  .reveal,
  .stagger .product-card{
    opacity:1!important;
    transform:none!important;
  }
}
