/* ===== Modern Luxury Editorial (v7) ===== */
*{margin:0;padding:0;box-sizing:border-box}

html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  overscroll-behavior-x:none;
}
img, svg, video, canvas{
  max-width:100%;
  height:auto;
}


:root{
  --bg:#000000;
  --text:#f5f5f5;
  --muted:rgba(245,245,245,.65);
  --line:rgba(245,245,245,.12);
  --gold:#b79a63;
  --gold-soft:rgba(183,154,99,.14);
  --wrap: min(1140px, 88%);
}

/* ==============================
   Cookie consent
   ============================== */
.cookie-consent{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-consent.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent.is-hiding{
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.cookie-consent__inner{
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(20,20,20,.92);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.cookie-consent__text{min-width: 0;}
.cookie-consent__desc{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--muted);
}
.cookie-consent__desc a{
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(183,154,99,.55);
}
.cookie-consent__actions{
  display:flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-consent__btn{
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.cookie-consent__btn:hover{ transform: translateY(-1px); border-color: rgba(183,154,99,.45); }
.cookie-consent__btn:active{ transform: translateY(0); opacity: .9; }
.cookie-consent__btn--accept{
  background: linear-gradient(135deg, var(--gold), #e6d2a5);
  color: #000;
  border-color: rgba(0,0,0,.12);
}
.cookie-consent__btn--accept:hover{ border-color: rgba(0,0,0,.18); }

@media (max-width: 720px){
  .cookie-consent__inner{
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__actions{
    width: 100%;
  }
  .cookie-consent__btn{
    flex: 1;
    justify-content: center;
  }
}

html{scroll-behavior:smooth}

[id]{scroll-margin-top:120px}
@media (max-width:900px){[id]{scroll-margin-top:96px}}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'DM Sans', sans-serif;
  line-height:1.55;
}

h1,h2{
  font-family:'Marcellus', serif;
  font-weight:400;
  letter-spacing:.01em;
}

a{color:inherit;text-decoration:none}
.muted{color:var(--muted)}
.wrap{width:var(--wrap); margin:0 auto}
.micro{font-size:12px; letter-spacing:.08em}

.kicker{
  display:inline-block;
  font-size:11px;
  letter-spacing:.30em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:22px;
}

/* ===== BLOG ===== */
.blog-page{
  padding:150px 0 80px;
}
.blog-hero{
  margin-bottom:42px;
}
.blog-hero h1{
  font-size:clamp(38px, 7vw, 82px);
  line-height:.95;
  margin-bottom:18px;
}
.blog-hero p{
  max-width:680px;
}
.blog-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-bottom:30px;
}
.blog-card{
  text-align:left;
  background:rgba(255,255,255,.04);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:8px;
  padding:16px;
  cursor:pointer;
  min-height:180px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.blog-card:hover,
.blog-card.is-active{
  border-color:rgba(183,154,99,.65);
  background:rgba(183,154,99,.10);
}
.blog-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:6px;
}
.blog-card-date,
.blog-detail-meta{
  font-size:12px;
  letter-spacing:.14em;
  color:var(--gold);
  text-transform:uppercase;
}
.blog-card strong{
  font-family:'Marcellus', serif;
  font-size:22px;
  line-height:1.15;
}
.blog-card span:last-child{
  color:var(--muted);
  font-size:14px;
}
.blog-detail{
  border-top:1px solid var(--line);
  padding-top:32px;
  max-width:880px;
}
.blog-detail-img{
  width:100%;
  aspect-ratio:16/8;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:24px;
}
.blog-detail h2{
  font-size:clamp(30px, 5vw, 56px);
  line-height:1.05;
  margin:8px 0 18px;
}
.blog-detail .editorial-copy{
  color:rgba(245,245,245,.86);
}
.blog-detail .editorial-copy p,
.blog-detail .editorial-copy ul,
.blog-detail .editorial-copy ol{
  margin-bottom:16px;
}

@media (max-width: 900px){
  .blog-list{grid-template-columns:1fr;}
  .blog-page{padding-top:120px;}
}

/* ===== HEADER ===== */
.header{
  position:fixed;
  top:0; left:0;
  width:100%;
  padding:28px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:20;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,245,245,.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.logo-img{
  height:70px;
  width:auto;
  display:block;
}
.logo-text{
  font-size:12px;
  letter-spacing:.35em;
  font-weight:500;
  text-transform:uppercase;
  display:none; /* keep layout clean; still in DOM for accessibility */
}

.nav{
  display:flex;
  gap:28px;
  align-items:center;
}

.nav a{
  font-size:11px;
  letter-spacing:.25em;
  color:var(--muted);
}

.nav-cta{
  padding:10px 18px;
  border:1px solid var(--gold);
  color:var(--gold)!important;
  text-decoration:none;
  border-radius:999px;
}
.nav-cta:hover{
  background:rgba(193,154,99,.08);
}

/* ===== MOBILE HAMBURGER MENU ===== */
.hamburger{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  border-radius:12px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background:var(--gold);
  border-radius:2px;
  transition: transform .28s ease, opacity .20s ease;
}
.hamburger.active span:nth-child(1){transform: translateY(8px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform: translateY(-8px) rotate(-45deg)}

/* Mobile cart icon next to hamburger */
.mobile-cart{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  border-radius:12px;
  position:relative;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.mobile-cart svg{ width:20px; height:20px; fill:none; stroke:var(--gold); stroke-width:1.8; }
.mobile-cart .cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:600;
  color:#000;
  background:var(--gold);
  border:1px solid rgba(0,0,0,.4);
}

.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  opacity:0;
  pointer-events:none;
  transition: opacity .28s ease;
  z-index:60;
}
.mobile-overlay.show{
  opacity:1;
  pointer-events:auto;
}

.mobile-nav{
  position:fixed;
  top:0;
  right:0;
  transform: translateX(110%);
  width:min(86vw, 360px);
  height:100vh;
  background:rgba(0,0,0,.92);
  border-left:1px solid rgba(245,245,245,.10);
  padding:26px 22px;
  z-index:70;
  transition: transform .34s ease;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav a{
  color:var(--text);
  text-decoration:none;
  letter-spacing:.22em;
  font-size:12px;
  padding:12px 10px;
  border-radius:12px;
  border:1px solid rgba(245,245,245,.08);
  background:rgba(245,245,245,.02);
}
.mobile-nav a:active{ transform: translateY(1px); }
.mobile-nav a.mobile-cta{
  border-color: var(--gold);
  color: var(--gold);
}

body.no-scroll{ overflow:hidden; }

@media (max-width:900px){
  .nav{ display:none; }
  .hamburger{ display:flex; }
  .mobile-cart{ display:flex; }
  .header{ padding:18px 6%; }
  main.section{ padding-top:140px; }
}
/* ===== HERO ===== */
.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero-image{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.65) 45%,
      rgba(0,0,0,.25) 70%),
    url("../images/hero.jpg") center right / cover no-repeat;
  transform:scale(1.02);
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:6%;
  max-width:660px;
}

.eyebrow{
  font-size:11px;
  letter-spacing:.3em;
  color:var(--muted);
  margin-bottom:28px;
}

.hero h1{
  font-size:clamp(48px,6vw,86px);
  line-height:1.05;
  margin-bottom:24px;
}

.hero p{
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:38px;
}

/* CTAs */
.hero-actions{display:flex; gap:14px; flex-wrap:wrap}
.cta{
  display:inline-block;
  padding:18px 42px;
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:11px;
  letter-spacing:.35em;
  text-transform:uppercase;
  width:max-content;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.cta:hover{transform:translateY(-1px); border-color:rgba(183,154,99,.85)}
.cta.full{width:100%; flex:1 1 100%; text-align:center}
.cta.ghost{
  border-color:rgba(245,245,245,.22);
  color:rgba(245,245,245,.78);
}
.cta.ghost:hover{border-color:rgba(183,154,99,.55); color:var(--gold)}

/* Proof row */
.proof-row{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.proof{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  color:rgba(245,245,245,.72);
  font-size:13px;
}
.proof img{width:18px;height:18px; opacity:.9}

/* ===== STRIP ===== */
.strip{
  border-top:1px solid rgba(245,245,245,.06);
  border-bottom:1px solid rgba(245,245,245,.06);
  background:rgba(255,255,255,.01);
  overflow:hidden;
}
.strip-inner{
  display:flex;
  gap:16px;
  padding:12px 0;
  white-space:nowrap;
  animation: scroll 18s linear infinite;
  text-transform:uppercase;
  letter-spacing:.34em;
  font-size:11px;
  color:rgba(245,245,245,.48);
}
.strip .dot{opacity:.5}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ===== SECTIONS ===== */
.section{padding:92px 0}
/*
  Pages like cart/checkout use <main class="section"> directly under the fixed header.
  Give them extra top padding so titles never slide under the header.
*/
main.section{padding-top:160px}
.section-head{max-width:820px}
.section-head h2{font-size:clamp(28px,3.2vw,44px); line-height:1.12; margin-bottom:10px}
.section-head p{max-width:68ch}

/* Grid tiles */
.grid-3{
  margin-top:34px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.tile{
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  padding:22px;
  min-height:190px;
}
.tile .icon{
  width:44px;height:44px;
  border:1px solid rgba(183,154,99,.28);
  background:rgba(183,154,99,.08);
  display:grid;
  place-items:center;
  margin-bottom:14px;
}
.tile .icon img{width:18px;height:18px}
.tile .title{font-weight:600; letter-spacing:.06em; margin-bottom:8px}
.tile .text{color:rgba(245,245,245,.70); font-size:14px}

/* Editorial product block */
.editorial{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.editorial-copy{
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  padding:26px;
}
.editorial-copy h2{font-size:clamp(26px,2.6vw,40px); line-height:1.12; margin-bottom:10px}
.lines{margin-top:20px; display:grid; gap:14px}
.features{margin-top:20px; line-height:1.7}
.features ul{margin:0; padding-left:18px}
.features li{margin:0 0 8px 0}
.features p{margin:0 0 10px 0}
.line{border-top:1px solid rgba(245,245,245,.10); padding-top:14px}
.line-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
.name{font-weight:600; letter-spacing:.04em}
.tag{
  font-size:10px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(245,245,245,.75);
  padding:8px 10px;
  border:1px solid rgba(183,154,99,.30);
  background:rgba(183,154,99,.08);
}
.desc{color:rgba(245,245,245,.70); font-size:14px; margin-top:6px}
.buy-row{margin-top:22px; display:flex; align-items:center; gap:16px; flex-wrap:wrap}
.cta-ghost{
  background:transparent;
  color:var(--gold);
  border:1px solid rgba(183,154,99,.5);
}
.coupon-box{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:min(100%, 420px);
}
.coupon-panel{
  display:grid;
  gap:10px;
  padding:14px;
  border:1px solid rgba(245,245,245,.1);
  background:rgba(255,255,255,.03);
}
.coupon-label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(245,245,245,.7);
}
.coupon-controls{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.coupon-input{
  flex:1 1 220px;
  min-height:48px;
  padding:0 14px;
  border:1px solid rgba(245,245,245,.14);
  background:rgba(0,0,0,.35);
  color:var(--text);
}
.coupon-apply{
  min-height:48px;
  padding:0 18px;
  border:1px solid rgba(183,154,99,.5);
  background:rgba(183,154,99,.12);
  color:var(--gold);
  cursor:pointer;
}
.coupon-feedback.is-success{color:#b7d99a}
.coupon-feedback.is-error{color:#ffb1a8}
.current-price{font-weight:600}
.original-price{
  margin-left:10px;
  color:rgba(245,245,245,.55);
  text-decoration:line-through;
  font-size:14px;
}

.editorial-media{
  border:1px solid rgba(245,245,245,.10);
  background:
    radial-gradient(500px 320px at 30% 30%, rgba(183,154,99,.12), transparent 60%),
    url("../images/hero.jpg") center right / cover no-repeat;
  opacity:.95;
  min-height:520px;
}

/* Mini cards under product */
.mini-cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mini{
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  padding:20px;
}
.mini-kicker{font-size:10px; letter-spacing:.32em; text-transform:uppercase; color:rgba(245,245,245,.55); margin-bottom:10px}
.mini-title{font-weight:600; letter-spacing:.06em; margin-bottom:6px}
.mini-text{font-size:14px}

/* About */
.about{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.about-copy{
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  padding:26px;
}
.about-copy h2{font-size:clamp(26px,2.6vw,40px); line-height:1.12; margin-bottom:10px}
.bullets{margin:18px 0 22px; display:grid; gap:10px}
.bullet{display:flex; align-items:center; gap:10px; color:rgba(245,245,245,.78)}
.b-dot{width:8px;height:8px; background:var(--gold); box-shadow:0 0 0 10px var(--gold-soft)}
.about-media{
  border:1px solid rgba(245,245,245,.10);
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25)),
    url("../images/hero.jpg") center / cover no-repeat;
  min-height:520px;
  opacity:.85;
}

/* ===== PRODUCT SLIDER ===== */
/* Slider wrapper and slider */
/* Slider wrapper */
.product-slider-wrapper{
  margin-top:32px;
  width:100%;
}

/* Slider itself */
.product-slider{
  display:flex;
  overflow:hidden;
  scroll-behavior:smooth;
  width:100%;
}

/* Each slide */
.product-slider .slide{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
  min-width:100%;
}

/* Navigation arrows below slider */
/* Product list navigation */
.product-list{
  display:flex;
  gap:0;
  margin-bottom:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.product-list::-webkit-scrollbar{ display:none; }

.product-page{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:repeat(var(--pp, 4), 1fr);
  gap:16px;
  padding-bottom:6px;
  scroll-snap-align:start;
}

.product-item{
  flex:0 0 auto;
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  padding:16px 12px;
  text-align:center;
  cursor:pointer;
  transition:border-color .2s ease, color .2s ease;
}
.product-item img{
  width:100%;
  height:100px;
  object-fit:cover;
  margin-bottom:10px;
}
.product-item span{
  font-size:14px;
  letter-spacing:.02em;
  display:block;
}

.product-item .meta{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.product-item .name{
  font-size:14px;
  letter-spacing:.02em;
}
.product-item .price-tag{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  opacity:.95;
}

.product-price{
  margin:10px 0 8px;
  display:inline-flex;
  align-items:baseline;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(183,154,99,.35);
  background:rgba(183,154,99,.10);
  color:var(--gold);
  border-radius:12px;
  font-family:'DM Sans', sans-serif;
  font-weight:700;
  font-size:20px;
  letter-spacing:.02em;
}
.product-item.active{
  border-color:var(--gold);
  color:var(--gold);
}

/* Gallery styles */
/* Gallery fills the entire right column
 * Set position relative so nav arrows can be absolutely positioned. Set
 * a fixed aspect ratio and min-height to keep image containers from
 * jumping when switching between photos of different proportions. A
 * border is applied to the main image area to clearly frame the image.
 */
.editorial-gallery{
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  display:flex;
  flex-direction:column;
  position:relative;
  /* fixed height so all product images display consistently without jumping */
  height: 552px; /* 480 * 1.15 */
  overflow: hidden;
  transition: height 0.55s ease;
}


/* main image fills available space and stays within border */
.editorial-gallery .gallery-main{
  flex:1 1 auto;
  width:100%;
  object-fit:cover;
  border-bottom:1px solid rgba(245,245,245,.10);
  display:block;
}

/* thumbnails bar */
.editorial-gallery .gallery-thumbs{
  display:flex;
  gap:6px;
  padding:12px;
  border-top:1px solid rgba(245,245,245,.10);
  flex:0 0 auto;
  background:rgba(255,255,255,.02);
}

/* each thumb image gets a consistent size and border */
.editorial-gallery .gallery-thumb{
  width:60px;
  height:60px;
  object-fit:cover;
  cursor:pointer;
  border:1px solid rgba(245,245,245,.10);
  transition:opacity .2s ease;
  flex-shrink:0;
}

.editorial-gallery .gallery-thumb:hover{
  opacity:.7;
}

/* Navigation buttons for the gallery. These appear when there are
 * multiple images. They are positioned over the main image area and
 * allow users to cycle through photos. We make them larger and more
 * obvious with a circular background and gold text. */
.editorial-gallery .gallery-prev,
.editorial-gallery .gallery-next {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.4);
  color:var(--gold);
  border:none;
  font-size:28px;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:3;
}
.editorial-gallery .gallery-prev{left:10px;}
.editorial-gallery .gallery-next{right:10px;}
.editorial-gallery .gallery-prev:hover,
.editorial-gallery .gallery-next:hover{
  background:rgba(255,255,255,0.3);
}
/* FAQ accordion */
.faq-layout{
  display:grid;
  grid-template-columns:minmax(360px, .82fr) minmax(0, 1.18fr);
  gap:46px;
  align-items:start;
}

.faq-intro{
  position:sticky;
  top:118px;
}

.faq-intro h2{
  font-size:clamp(34px, 4.1vw, 54px);
  line-height:1.02;
  margin-bottom:18px;
  max-width:8.8ch;
  letter-spacing:-.03em;
}

.faq-intro > p{
  max-width:32ch;
  font-size:17px;
  line-height:1.78;
}

.faq-note{
  margin-top:30px;
  padding:22px 22px 22px 24px;
  border-left:1px solid rgba(183,154,99,.34);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.faq-note__label{
  display:block;
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(214,187,129,.84);
}

.faq-note strong{
  display:block;
  margin-bottom:10px;
  font-family:'Marcellus', serif;
  font-size:26px;
  line-height:1.08;
  color:#f6efe6;
}

.faq-note p{
  color:rgba(245,245,245,.64);
  font-size:15px;
  line-height:1.8;
}

.acc{
  margin-top:4px;
  border-top:1px solid rgba(245,245,245,.10);
}

.acc-item{
  position:relative;
  border-bottom:1px solid rgba(245,245,245,.10);
  transition:border-color .24s ease, background .24s ease;
}

.acc-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:1px;
  background:rgba(183,154,99,0);
  transition:background .24s ease;
}

.acc-item:hover,
.acc-item.is-open{
  background:linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-bottom-color:rgba(183,154,99,.18);
}

.acc-item:hover::before,
.acc-item.is-open::before{
  background:rgba(183,154,99,.48);
}

.acc-btn{
  width:100%;
  padding:22px 0 22px 26px;
  background:transparent;
  border:0;
  color:#f3ede4;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 28px;
  align-items:start;
  gap:16px;
  text-align:left;
  font-size:18px;
  line-height:1.38;
  letter-spacing:-.01em;
  cursor:pointer;
}

.acc-btn img{
  width:18px;
  height:18px;
  opacity:.86;
  margin-top:6px;
  transition:transform .24s ease, opacity .24s ease;
}

.acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .34s ease, padding .34s ease, opacity .34s ease;
  padding:0 56px 0 26px;
  opacity:0;
  font-size:15px;
  line-height:1.84;
}

.acc-panel p,
.acc-panel ul,
.acc-panel ol{
  margin-bottom:14px;
}

.acc-panel ul,
.acc-panel ol{
  padding-left:18px;
}

.acc-item.is-open .acc-panel{
  max-height:420px;
  padding:0 56px 24px 26px;
  opacity:1;
}

.acc-item.is-open .acc-btn img{
  transform:rotate(45deg);
  opacity:1;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-copy h2{font-size:clamp(26px,2.6vw,40px); line-height:1.12; margin-bottom:10px}
.contact-lines{margin-top:18px; display:grid; gap:10px}
.cl{color:rgba(245,245,245,.78)}
.cl span{display:block; font-size:10px; letter-spacing:.30em; text-transform:uppercase; color:rgba(245,245,245,.52); margin-bottom:3px}

.form{
  border:1px solid rgba(245,245,245,.10);
  background:rgba(255,255,255,.02);
  padding:22px;
  display:grid;
  gap:12px;
}
label{
  display:grid;
  gap:6px;
  font-size:10px;
  letter-spacing:.30em;
  text-transform:uppercase;
  color:rgba(245,245,245,.55);
}
input,textarea{
  width:100%;
  padding:14px 12px;
  border:1px solid rgba(245,245,245,.12);
  background:rgba(255,255,255,.01);
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(183,154,99,.55)}

/* Footer */
.footer{
  border-top:1px solid rgba(245,245,245,.08);
  padding:46px 0 22px;
  background: rgba(0,0,0,.96);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:28px;
  align-items:start;
}
.footer-brand{}
.footer-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.footer-logo-img{
  height:146px;
  width:auto;
  display:block;
}
.footer-logo-text{
  font-size:12px;
  letter-spacing:.35em;
  font-weight:500;
  text-transform:uppercase;
}
.footer-tagline{margin-top:10px; max-width:34ch; line-height:1.55}
.footer-title{
  font-size:10px;
  letter-spacing:.30em;
  text-transform:uppercase;
  color:rgba(245,245,245,.75);
  margin-bottom:12px;
}
.footer-contact-list{display:flex; flex-direction:column; gap:12px}
.footer-contact-item{
  display:flex;
  flex-direction:column;
  gap:4px;
  text-decoration:none;
  color:rgba(245,245,245,.9);
}
.footer-contact-item:hover{color:rgba(245,245,245,1)}
.footer-contact-label{font-size:10px; letter-spacing:.22em; text-transform:uppercase}
.footer-links{display:flex; flex-direction:column; gap:10px}
.footer-links a{
  font-size:10px;
  letter-spacing:.30em;
  text-transform:uppercase;
  color:rgba(245,245,245,.55);
  text-decoration:none;
}
.footer-links a:hover{color:rgba(245,245,245,.90)}

/* ===== SEO SUBPAGES ===== */
.subpage-main{
  padding: 150px 0 90px;
}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.breadcrumbs a:hover{color:var(--gold)}
.subpage-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(280px, .85fr);
  gap:28px;
  align-items:stretch;
  margin-bottom:42px;
}
.subpage-hero-copy,
.subpage-hero-card,
.seo-copy,
.cta-panel,
.blog-card-link,
.related-links,
.faq-rich,
.contact-panel,
.legal-panel{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:20px;
}
.subpage-hero-copy{
  padding:34px;
}
.subpage-hero-copy h1{
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.02;
  margin-bottom:16px;
}
.subpage-hero-copy p{
  max-width:62ch;
}
.subpage-hero-card{
  position:relative;
  overflow:hidden;
  min-height:340px;
}
.subpage-hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.subpage-hero-card::after,
.about-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.36));
}
.chip-row,
.link-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.chip-row span,
.link-pills a{
  border:1px solid rgba(183,154,99,.3);
  background:rgba(183,154,99,.08);
  border-radius:999px;
  padding:10px 14px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.link-pills a:hover{
  border-color:rgba(183,154,99,.7);
  color:#fff;
}
.seo-copy{
  padding:30px;
  margin-top:30px;
}
.seo-copy{
  position:relative;
  overflow:hidden;
  padding:34px 30px 30px;
  background:
    radial-gradient(circle at top right, rgba(183,154,99,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
}
.seo-copy::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:160px;
  height:1px;
  background:linear-gradient(90deg, rgba(183,154,99,.9), rgba(183,154,99,0));
}
.seo-copy .kicker{
  color:rgba(214,187,129,.92);
  margin-bottom:16px;
}
.seo-copy h2,
.content-article h2,
.faq-rich h2,
.contact-panel h2,
.legal-panel h2{
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.08;
  margin-bottom:14px;
}
.seo-copy h2{
  max-width:15ch;
  margin-bottom:18px;
}
.seo-copy p,
.content-article p,
.faq-rich p,
.contact-panel p,
.legal-panel p{
  color:rgba(245,245,245,.84);
}
.seo-copy > p{
  max-width:64ch;
  font-size:18px;
  line-height:1.72;
}
.seo-copy > p:first-of-type{
  color:rgba(255,255,255,.94);
  font-size:22px;
  line-height:1.55;
  max-width:50ch;
}
.seo-copy > p + p{
  margin-top:14px;
}
.seo-copy > p:last-of-type{
  max-width:none;
  margin-top:26px;
  padding:22px 24px 22px 82px;
  border:1px solid rgba(183,154,99,.22);
  border-radius:20px;
  background:linear-gradient(135deg, rgba(183,154,99,.12), rgba(255,255,255,.03));
  position:relative;
  color:rgba(255,255,255,.9);
  font-size:17px;
}
.seo-copy > p:last-of-type::before{
  content:"PMU\A FOCUS";
  white-space:pre;
  position:absolute;
  left:24px;
  top:24px;
  font-size:11px;
  line-height:1.15;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(214,187,129,.9);
}
.info-grid,
.link-grid,
.blog-card-grid,
.contact-grid{
  display:grid;
  gap:18px;
}
.info-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  margin-top:28px;
}
.info-card,
.link-grid a,
.blog-card-link,
.contact-panel,
.legal-panel{
  padding:24px;
}
.info-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:18px;
}
.info-card strong,
.blog-card-link strong{
  display:block;
  font-family:'Marcellus', serif;
  font-size:24px;
  line-height:1.15;
  margin-bottom:10px;
}
.seo-copy .link-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:28px;
}
.seo-copy .link-grid a{
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  transition:border-color .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
  min-height:184px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:12px;
  position:relative;
  overflow:hidden;
}
.seo-copy .link-grid a:hover{
  border-color:rgba(183,154,99,.72);
  background:linear-gradient(180deg, rgba(183,154,99,.15), rgba(255,255,255,.04));
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,.26);
}
.seo-copy .link-grid a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(183,154,99,.12), transparent 45%);
  opacity:.85;
  pointer-events:none;
}
.seo-copy .link-grid a strong,
.seo-copy .link-grid a span{
  position:relative;
  z-index:1;
}
.seo-copy .link-grid a strong{
  font-size:28px;
  line-height:1.08;
  margin-bottom:0;
  max-width:14ch;
}
.seo-copy .link-grid a .muted{
  color:rgba(245,245,245,.72);
  font-size:16px;
  line-height:1.6;
  max-width:34ch;
}
.seo-copy .link-grid a::after{
  content:"MEGNYITÁS →";
  margin-top:auto;
  position:relative;
  z-index:1;
  color:rgba(255,255,255,.96);
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.article-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:24px;
  align-items:start;
}
.content-article{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:22px;
  padding:32px;
}
.content-article h2{
  margin-top:30px;
}
.content-article p + p{
  margin-top:14px;
}
.content-article ul{
  margin:16px 0 0 18px;
  color:rgba(245,245,245,.84);
}
.content-article li + li{
  margin-top:8px;
}
.cta-panel{
  padding:24px;
  position:sticky;
  top:124px;
}
.cta-panel h3,
.related-links h3{
  font-family:'Marcellus', serif;
  font-size:28px;
  line-height:1.1;
  margin-bottom:12px;
}
.cta-panel .cta,
.contact-panel .cta{
  width:100%;
  justify-content:center;
  text-align:center;
  margin-top:16px;
}
.related-links{
  margin-top:18px;
  padding:22px;
}
.related-links ul{
  list-style:none;
  margin:0;
  padding:0;
}
.related-links li + li{
  margin-top:12px;
}
.related-links a{
  color:rgba(245,245,245,.84);
}
.related-links a:hover{
  color:#fff;
}
.blog-card-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.blog-card-link{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:220px;
  transition:border-color .2s ease, transform .2s ease, background .2s ease;
}
.blog-card-link:hover{
  border-color:rgba(183,154,99,.65);
  background:rgba(183,154,99,.08);
  transform:translateY(-2px);
}
.blog-card-link .meta{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.blog-card-link .more{
  margin-top:auto;
  color:var(--gold);
  letter-spacing:.18em;
  font-size:11px;
  text-transform:uppercase;
}
.faq-rich{
  padding:30px;
}
.faq-rich .acc{
  margin-top:24px;
}
.contact-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.contact-panel form{
  display:grid;
  gap:14px;
}
.contact-panel label{
  display:grid;
  gap:8px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}
.contact-panel input,
.contact-panel textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:14px 16px;
  font:inherit;
}
.contact-panel textarea{
  resize:vertical;
  min-height:160px;
}
.seo-inline-links{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.seo-inline-links a{
  color:var(--gold);
}
.legal-list{
  margin:16px 0 0 18px;
  color:rgba(245,245,245,.84);
}

@media (max-width: 980px){
  .subpage-hero,
  .article-layout,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .cta-panel{
    position:static;
  }
}

@media (max-width: 780px){
  .subpage-main{
    padding-top:122px;
  }
  .subpage-hero-copy,
  .content-article,
  .seo-copy,
  .faq-rich,
  .contact-panel,
  .legal-panel{
    padding:24px;
  }
  .info-grid,
  .link-grid,
  .blog-card-grid{
    grid-template-columns:1fr;
  }
  .seo-copy{
    padding:26px 22px 22px;
  }
  .seo-copy h2{
    max-width:none;
  }
  .seo-copy > p{
    font-size:17px;
  }
  .seo-copy > p:first-of-type{
    font-size:20px;
  }
  .seo-copy > p:last-of-type{
    padding:74px 18px 18px;
  }
  .seo-copy > p:last-of-type::before{
    left:18px;
    top:18px;
  }
  .seo-copy .link-grid a{
    min-height:unset;
  }
  .seo-copy .link-grid a strong{
    max-width:none;
    font-size:24px;
  }
  .subpage-hero-card{
    min-height:240px;
  }
}
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(245,245,245,.08);
}
.footer-copy{
  font-size:11px;
  color:rgba(245,245,245,.55);
  letter-spacing:.06em;
}

/* ===== SEO COPY REDESIGN OVERRIDE ===== */
.seo-copy{
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:18px 0 0 !important;
  margin-top:42px !important;
  overflow:visible !important;
}
.seo-copy::before{
  width:118px !important;
}
.seo-copy h2{
  max-width:13ch !important;
  margin-bottom:22px !important;
}
.seo-copy > p{
  max-width:72ch !important;
  font-size:18px !important;
  line-height:1.76 !important;
}
.seo-copy > p:first-of-type{
  max-width:54ch !important;
  font-size:21px !important;
  line-height:1.6 !important;
  color:rgba(255,255,255,.94) !important;
}
.seo-copy > p + p{
  margin-top:16px !important;
}
.seo-copy > p:last-of-type{
  max-width:58ch !important;
  margin-top:24px !important;
  padding:0 0 0 22px !important;
  border:none !important;
  border-left:1px solid rgba(183,154,99,.28) !important;
  border-radius:0 !important;
  background:transparent !important;
  font-size:17px !important;
}
.seo-copy > p:last-of-type::before{
  content:"PMU FOKUSZ" !important;
  white-space:normal !important;
  left:0 !important;
  top:-26px !important;
  font-size:10px !important;
  line-height:1 !important;
}
.seo-copy .link-grid{
  margin-top:38px !important;
  gap:0 34px !important;
  border-top:1px solid rgba(245,245,245,.08);
}
.seo-copy .link-grid a{
  min-height:unset !important;
  display:grid !important;
  gap:8px !important;
  padding:26px 0 24px !important;
  border:none !important;
  border-bottom:1px solid rgba(245,245,245,.08) !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
  transition:padding-left .22s ease, color .22s ease !important;
}
.seo-copy .link-grid a:hover{
  transform:none !important;
  background:transparent !important;
  border-color:rgba(245,245,245,.08) !important;
  box-shadow:none !important;
  padding-left:10px !important;
}
.seo-copy .link-grid a::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:26px !important;
  inset:auto !important;
  width:14px !important;
  height:1px !important;
  background:rgba(183,154,99,.75) !important;
  opacity:1 !important;
}
.seo-copy .link-grid a:hover::before{
  width:24px !important;
}
.seo-copy .link-grid a::after{
  content:none !important;
}
.seo-copy .link-grid a strong{
  max-width:18ch !important;
  padding-left:24px !important;
  font-size:24px !important;
  line-height:1.12 !important;
}
.seo-copy .link-grid a .muted{
  max-width:38ch !important;
  padding-left:24px !important;
  font-size:15px !important;
  line-height:1.65 !important;
  color:rgba(245,245,245,.72) !important;
}

@media (max-width: 780px){
  .seo-copy{
    padding-top:16px !important;
  }
  .seo-copy h2{
    max-width:none !important;
  }
  .seo-copy > p{
    font-size:17px !important;
  }
  .seo-copy > p:first-of-type{
    font-size:20px !important;
  }
  .seo-copy > p:last-of-type{
    max-width:none !important;
    padding-left:18px !important;
  }
  .seo-copy > p:last-of-type::before{
    top:-22px !important;
  }
  .seo-copy .link-grid{
    gap:0 !important;
  }
  .seo-copy .link-grid a{
    padding:22px 0 20px !important;
  }
  .seo-copy .link-grid a strong,
  .seo-copy .link-grid a .muted{
    padding-left:20px !important;
  }
  .seo-copy .link-grid a strong{
    max-width:none !important;
    font-size:21px !important;
  }
}
@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr; gap:20px}
  .footer-logo-img{height:120px}
}

/* Reveal */
html.js [data-reveal]{opacity:0; transform:translateY(16px); transition: opacity .7s ease, transform .7s ease}
[data-reveal]{opacity:1; transform:none}
html.js [data-reveal].is-visible{opacity:1; transform:none}

/* Responsive */
@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr}
  .editorial{grid-template-columns:1fr}
  .editorial-media{min-height:360px}
  .mini-cards{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .about-media{min-height:360px}
  .faq-layout{grid-template-columns:1fr; gap:26px}
  .faq-intro{position:static}
  .faq-intro h2{max-width:none}
  .faq-intro > p{max-width:none}
  .contact{grid-template-columns:1fr}
}

@media (max-width:900px){
  .nav{display:none}
  .hero-content{padding:0 8%}
}

@media (max-width:520px){
  .cta{padding:16px 28px; letter-spacing:.28em}
}







/* Product details absolute slide */
.product-details {
  position: relative;
  /*
    IMPORTANT:
    We must NOT clip overflow here.
    When "További részletek" expands, the page should grow and push
    the content below downward. If overflow is hidden + a fixed height
    is applied via JS, the expanded text gets cut off.
  */
  overflow: visible;
  /* Let the height be driven by the active .detail (which becomes relative). */
  min-height: 0;
}
.product-details .detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* start hidden and slightly shifted */
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease;
  display: grid;
  /* IMPORTANT: prevent hidden slides from stealing clicks
     (fixes gallery thumbnails + main image/lightbox opening the wrong product) */
  pointer-events: none;
}
.product-details .detail.active {
  opacity: 1;
  transform: translateX(0);
  /* The active slide must participate in document flow so the container can grow */
  position: relative;
  pointer-events: auto;
}

/* ===== CART & CHECKOUT STYLES ===== */
/* Container for cart items on cart and checkout pages */
.cart-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Single cart item row */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.cart-item .name {
  font-size: 14px;
  font-weight: 500;
}
.cart-item-meta{
  margin-top:6px;
  font-size:12px;
  color:rgba(245,245,245,.62);
}
.cart-item-meta-price{
  text-align:right;
}
.cart-item .qty-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cart-item .qty {
  min-width: 32px;
  text-align: center;
}
.cart-item button {
  background: none;
  border: 0;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  padding: 2px 8px;
}
.cart-summary {
  margin-top: 32px;
}
.cart-summary .total {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.cart-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cart-actions .cta {
  text-align: center;
}
/* Checkout summary & form */
.checkout-summary {
  margin-top: 32px;
  margin-bottom: 32px;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
}
.checkout-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
}
.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=tel] {
  padding: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}
.checkout-form .radio-group {
  display: flex;
  gap: 20px;
}
.checkout-form .form-actions {
  margin-top: 16px;
}
.checkout-form .cta {
  width: max-content;
}

/*
 * Button hover effects
 * Apply a subtle lift and golden glow on hover for buttons and CTA links.
 */
.btn,
.button,
a.btn,
a.button,
.cta {
  transition: all 0.25s ease;
}

.btn:hover,
.button:hover,
a.btn:hover,
a.button:hover,
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.6), 0 8px 20px rgba(212, 175, 55, 0.15);
}

/* Dark buttons hover variation */
.btn-dark:hover {
  background: linear-gradient(135deg, #111, #1a1a1a);
}

/* Gold buttons hover variation */
.btn-gold:hover {
  background: linear-gradient(135deg, #d4af37, #f0d67c);
  color: #000;
}


/* Ensure gallery nav buttons sit above the image */
.editorial-gallery .gallery-prev,
.editorial-gallery .gallery-next{
  z-index: 3;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.lightbox.is-open{display:block;}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.85);
}
.lightbox-inner{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox-img{
  max-width:92vw;
  max-height:88vh;
  width:auto;
  height:auto;
  border:1px solid rgba(245,245,245,.12);
  box-shadow:0 10px 40px rgba(0,0,0,.55);
  background:rgba(0,0,0,0.2);
}
.lightbox-close{
  position:absolute;
  top:14px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(245,245,245,.18);
  background:rgba(0,0,0,0.35);
  color:var(--gold);
  font-size:28px;
  cursor:pointer;
}
.lightbox-prev,
.lightbox-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(245,245,245,.18);
  background:rgba(0,0,0,0.35);
  color:var(--gold);
  font-size:34px;
  cursor:pointer;
}
.lightbox-prev{left:18px;}
.lightbox-next{right:18px;}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
  background:rgba(255,255,255,0.18);
}

/* ---- Custom product detail layout adjustments ---- */
.product-details .detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: start;
}
.editorial-gallery{
  height: 552px;
}
/* Force the summary card to match the gallery height and arrange content vertically */
.product-details .summary {
  min-height: 552px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}

/* Clamp the summary text to three lines */
.product-details .summary .short-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Expandable summary ("Tovább") inside the product card */
.product-details .summary .more-toggle{
  color:#caa75a;
  font-family: Inter;
  text-decoration: underline;
  display: inline-block;
  margin: 6px 0 12px;
}
.product-details .summary .summary-full{
  overflow: visible;
  margin-top: 10px;
}
.product-details .summary .buy-row{
  margin-top: 18px;
}

/*
 * The detail-bottom area expands naturally when the description is opened.
 * There is intentionally no height limit so that the full description is
 * revealed and the page grows accordingly.
 */
/* (no explicit max-height is set on .detail-bottom) */

/*
 * Reduce the heading size within the product summary to ensure the short
 * description and price have more room. This overrides the default h2
 * sizing only inside the `.summary` container in product details.
 */
.product-details .summary h2 {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 12px;
}


.product-pagination{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin: 0 0 26px;
  user-select:none;
}
.product-pagination button{
  min-width:34px;
  height:30px;
  padding:0 10px;
  border-radius:10px;
  border:1px solid rgba(245,245,245,.14);
  background:rgba(255,255,255,.02);
  color:rgba(245,245,245,.75);
  cursor:pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}
.product-pagination button:hover{
  border-color: rgba(214,171,82,.55);
  color:#fff;
  transform: translateY(-1px);
}
.product-pagination button.active{
  border-color: rgba(214,171,82,.85);
  background: rgba(214,171,82,.12);
  color:#fff;
}


/* ===== MOBILE: product detail stack (text first, gallery below) ===== */
@media (max-width: 768px){
  .product-details .detail-top{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-details .summary{
    min-height: 0;
  }
  .editorial-gallery{
    height: auto;
    min-height: 380px;
  }
  .product-details .summary{ order: 1; }
  .product-details .editorial-gallery{ order: 2; }
}

/* ===== SEO FULLWIDTH BAND ===== */
.seo-fullband{
  position:relative;
  margin:72px 0 24px;
  padding:84px 0 96px;
  overflow:hidden;
}
.seo-fullband::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:100vw;
  transform:translateX(-50%);
  background:
    radial-gradient(circle at 12% 18%, rgba(183,154,99,.18), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(183,154,99,.10), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border-top:1px solid rgba(245,245,245,.08);
  border-bottom:1px solid rgba(245,245,245,.08);
  pointer-events:none;
}
.wrap--seo-fullband{
  width:min(1320px, 94%);
}
.seo-fullband .seo-copy{
  position:relative;
  z-index:1;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
  overflow:visible !important;
}
.seo-fullband .seo-copy::before{
  content:"";
  position:absolute;
  left:0;
  top:-26px;
  width:132px;
  height:1px;
  background:linear-gradient(90deg, rgba(183,154,99,.95), rgba(183,154,99,0));
}
.seo-fullband .seo-copy .kicker{
  margin-bottom:18px;
  color:rgba(214,187,129,.94);
}
.seo-fullband .seo-copy h2{
  max-width:12ch;
  font-size:clamp(44px, 5vw, 74px);
  line-height:.98;
  margin-bottom:28px;
}
.seo-fullband .seo-copy > p{
  font-size:19px;
  line-height:1.82;
  max-width:62ch;
  color:rgba(245,245,245,.82);
}
.seo-fullband .seo-copy > p:first-of-type{
  font-size:24px;
  line-height:1.55;
  max-width:42ch;
  color:#fff;
}
.seo-fullband .seo-copy > p + p{
  margin-top:18px;
}
.seo-fullband .seo-copy > p:last-of-type{
  max-width:38ch;
  margin:8px 0 0 auto;
  padding:8px 0 0 26px;
  border:none;
  border-left:1px solid rgba(183,154,99,.32);
  color:rgba(255,255,255,.9);
  font-size:17px;
}
.seo-fullband .seo-copy > p:last-of-type::before{
  content:"PMU FOKUSZ";
  position:absolute;
  left:26px;
  top:-18px;
  font-size:10px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(214,187,129,.88);
}
.seo-fullband .seo-copy .link-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:0 56px;
  margin-top:54px;
  border-top:1px solid rgba(245,245,245,.08);
}
.seo-fullband .seo-copy .link-grid a{
  display:grid;
  grid-template-columns:48px minmax(0, 1fr);
  gap:0 18px;
  align-items:start;
  min-height:unset !important;
  padding:24px 0 22px !important;
  border:none !important;
  border-bottom:1px solid rgba(245,245,245,.08) !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
  position:relative;
  transition:transform .2s ease, opacity .2s ease;
}
.seo-fullband .seo-copy .link-grid a:hover{
  transform:translateX(8px);
  padding-left:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
.seo-fullband .seo-copy .link-grid a::before{
  content:counter(seo-links, decimal-leading-zero);
  counter-increment:seo-links;
  position:static !important;
  width:auto !important;
  height:auto !important;
  background:none !important;
  inset:auto !important;
  opacity:1 !important;
  color:rgba(214,187,129,.92);
  font-size:12px;
  line-height:1;
  letter-spacing:.24em;
  text-transform:uppercase;
  padding-top:6px;
}
.seo-fullband .seo-copy .link-grid{
  counter-reset:seo-links;
}
.seo-fullband .seo-copy .link-grid a::after{
  content:"";
}
.seo-fullband .seo-copy .link-grid a strong{
  max-width:20ch;
  padding-left:0 !important;
  font-size:28px;
  line-height:1.08;
  margin-bottom:8px;
}
.seo-fullband .seo-copy .link-grid a .muted{
  max-width:38ch;
  padding-left:0 !important;
  font-size:15px;
  line-height:1.68;
  color:rgba(245,245,245,.72) !important;
}

@media (max-width: 1100px){
  .seo-fullband{
    padding:72px 0 82px;
  }
  .seo-fullband .seo-copy h2{
    max-width:none;
    font-size:clamp(38px, 7vw, 60px);
  }
  .seo-fullband .seo-copy > p:last-of-type{
    max-width:44ch;
    margin:26px 0 0;
  }
  .seo-fullband .seo-copy .link-grid{
    gap:0 28px;
  }
}

@media (max-width: 780px){
  .seo-fullband{
    margin:54px 0 12px;
    padding:58px 0 68px;
  }
  .wrap--seo-fullband{
    width:min(94%, 94%);
  }
  .seo-fullband .seo-copy::before{
    top:-20px;
    width:92px;
  }
  .seo-fullband .seo-copy h2{
    font-size:clamp(32px, 10vw, 46px);
    margin-bottom:20px;
  }
  .seo-fullband .seo-copy > p{
    font-size:17px;
    line-height:1.72;
  }
  .seo-fullband .seo-copy > p:first-of-type{
    font-size:20px;
    max-width:none;
  }
  .seo-fullband .seo-copy > p:last-of-type{
    max-width:none;
    padding-left:18px;
    margin-top:24px;
  }
  .seo-fullband .seo-copy > p:last-of-type::before{
    left:18px;
  }
  .seo-fullband .seo-copy .link-grid{
    grid-template-columns:1fr;
    gap:0;
    margin-top:40px;
  }
  .seo-fullband .seo-copy .link-grid a{
    grid-template-columns:38px minmax(0, 1fr);
    gap:0 14px;
    padding:20px 0 18px !important;
  }
  .seo-fullband .seo-copy .link-grid a strong{
    max-width:none;
    font-size:22px;
  }
}

/* ===== FINAL SEO FULLWIDTH RESET ===== */
.seo-fullband{
  margin:64px 0 20px;
  padding:72px 0 80px;
}

.seo-fullband::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012)),
    radial-gradient(circle at 14% 18%, rgba(183,154,99,.10), transparent 24%),
    radial-gradient(circle at 84% 28%, rgba(183,154,99,.06), transparent 20%);
}

.wrap--seo-fullband{
  width:min(1240px, 92%);
}

.seo-fullband .seo-copy{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(280px, .72fr);
  column-gap:64px;
  row-gap:0;
  align-items:start;
}

.seo-fullband .seo-copy::before{
  top:-18px;
  width:88px;
  background:linear-gradient(90deg, rgba(183,154,99,.9), rgba(183,154,99,0));
}

.seo-fullband .seo-copy .kicker,
.seo-fullband .seo-copy h2,
.seo-fullband .seo-copy > p:nth-of-type(1),
.seo-fullband .seo-copy > p:nth-of-type(2){
  grid-column:1;
}

.seo-fullband .seo-copy .kicker{
  margin-bottom:14px;
}

.seo-fullband .seo-copy h2{
  max-width:15ch;
  margin-bottom:22px;
  font-size:clamp(38px, 4.3vw, 62px);
  line-height:1.02;
  letter-spacing:-.03em;
}

.seo-fullband .seo-copy > p{
  max-width:60ch;
  font-size:18px;
  line-height:1.82;
  color:rgba(245,245,245,.78);
}

.seo-fullband .seo-copy > p:first-of-type{
  max-width:54ch;
  font-size:21px;
  line-height:1.62;
  color:#f4eee6;
}

.seo-fullband .seo-copy > p + p{
  margin-top:16px;
}

.seo-fullband .seo-copy > p:last-of-type{
  grid-column:2;
  grid-row:2 / span 3;
  align-self:start;
  max-width:none;
  margin:12px 0 0;
  padding:0 0 0 24px;
  border-left:1px solid rgba(183,154,99,.24);
  font-size:16px;
  line-height:1.92;
  color:rgba(245,245,245,.72);
}

.seo-fullband .seo-copy > p:last-of-type::before{
  content:none;
}

.seo-fullband .seo-copy .link-grid{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px 52px;
  margin-top:44px;
  padding-top:26px;
  border-top:1px solid rgba(245,245,245,.08);
  counter-reset:none;
}

.seo-fullband .seo-copy .link-grid a{
  display:block;
  min-height:0 !important;
  padding:0 0 20px !important;
  border:none !important;
  border-bottom:1px solid rgba(245,245,245,.08) !important;
  background:transparent !important;
  border-radius:0 !important;
  box-shadow:none !important;
  transform:none !important;
}

.seo-fullband .seo-copy .link-grid a:hover{
  padding-left:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  opacity:.9;
}

.seo-fullband .seo-copy .link-grid a::before,
.seo-fullband .seo-copy .link-grid a::after{
  content:none !important;
}

.seo-fullband .seo-copy .link-grid a strong{
  display:block;
  max-width:11ch;
  margin:0 0 10px;
  padding-left:0 !important;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.02em;
  color:#f6efe6;
}

.seo-fullband .seo-copy .link-grid a .muted{
  display:block;
  max-width:30ch;
  padding-left:0 !important;
  font-size:14px;
  line-height:1.74;
  color:rgba(245,245,245,.58) !important;
}

@media (max-width: 1100px){
  .seo-fullband .seo-copy{
    grid-template-columns:1fr;
    row-gap:0;
  }

  .seo-fullband .seo-copy h2{
    max-width:13ch;
    font-size:clamp(34px, 6vw, 52px);
  }

  .seo-fullband .seo-copy > p:last-of-type{
    grid-column:1;
    grid-row:auto;
    max-width:58ch;
    margin-top:24px;
  }

  .seo-fullband .seo-copy .link-grid{
    gap:20px 28px;
    margin-top:36px;
  }
}

@media (max-width: 780px){
  .seo-fullband{
    margin:48px 0 12px;
    padding:54px 0 60px;
  }

  .wrap--seo-fullband{
    width:min(92%, 92%);
  }

  .seo-fullband .seo-copy::before{
    top:-14px;
    width:72px;
  }

  .seo-fullband .seo-copy h2{
    max-width:none;
    font-size:clamp(30px, 9vw, 40px);
    margin-bottom:18px;
  }

  .seo-fullband .seo-copy > p{
    font-size:16px;
    line-height:1.74;
  }

  .seo-fullband .seo-copy > p:first-of-type{
    font-size:18px;
    line-height:1.62;
  }

  .seo-fullband .seo-copy > p:last-of-type{
    margin-top:20px;
    padding-left:18px;
    font-size:15px;
    line-height:1.8;
  }

  .seo-fullband .seo-copy .link-grid{
    grid-template-columns:1fr;
    gap:18px 0;
    margin-top:32px;
    padding-top:20px;
  }

  .seo-fullband .seo-copy .link-grid a{
    padding:0 0 16px !important;
  }

  .seo-fullband .seo-copy .link-grid a strong{
    max-width:none;
    font-size:24px;
    line-height:1.08;
    margin-bottom:8px;
  }

  .seo-fullband .seo-copy .link-grid a .muted{
    max-width:none;
    font-size:14px;
    line-height:1.66;
  }
}

/* ===== SEO SPOTLIGHT ===== */
.seo-spotlight{
  position:relative;
  margin:68px 0 28px;
  padding:18px 0 0;
}

.seo-spotlight::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:100vw;
  height:100%;
  transform:translateX(-50%);
  background:
    radial-gradient(circle at 16% 18%, rgba(183,154,99,.12), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(183,154,99,.09), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.01));
  border-top:1px solid rgba(245,245,245,.08);
  border-bottom:1px solid rgba(245,245,245,.06);
  pointer-events:none;
}

.seo-spotlight__wrap{
  position:relative;
  z-index:1;
  width:min(1280px, 92%);
}

.seo-spotlight__intro{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(360px, .92fr);
  gap:52px;
  align-items:center;
  padding:58px 0 34px;
}

.seo-spotlight__copy{
  position:relative;
  max-width:700px;
}

.seo-spotlight__copy::before{
  content:"";
  position:absolute;
  left:0;
  top:-18px;
  width:92px;
  height:1px;
  background:linear-gradient(90deg, rgba(183,154,99,.95), rgba(183,154,99,0));
}

.seo-spotlight__copy .kicker{
  color:rgba(214,187,129,.92);
  margin-bottom:16px;
}

.seo-spotlight__copy h2{
  max-width:11ch;
  font-size:clamp(42px, 5vw, 76px);
  line-height:.96;
  letter-spacing:-.035em;
  margin-bottom:24px;
}

.seo-spotlight__copy p{
  max-width:62ch;
  color:rgba(245,245,245,.78);
  font-size:18px;
  line-height:1.82;
}

.seo-spotlight__copy p + p{
  margin-top:14px;
}

.seo-spotlight__lead{
  color:#f4ede4 !important;
  font-size:21px !important;
  line-height:1.64 !important;
}

.seo-spotlight__metrics{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.seo-metric{
  min-width:150px;
  padding:14px 18px;
  border:1px solid rgba(245,245,245,.08);
  border-radius:0;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  backdrop-filter:blur(8px);
}

.seo-metric strong{
  display:block;
  margin-bottom:4px;
  font-family:'Marcellus', serif;
  font-size:24px;
  line-height:1;
  color:#f6efe6;
}

.seo-metric span{
  display:block;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(245,245,245,.56);
}

.seo-spotlight__visual{
  display:flex;
  justify-content:flex-end;
}

.seo-orbit{
  position:relative;
  width:min(100%, 480px);
  aspect-ratio:1 / 1;
  border-radius:50%;
  display:grid;
  place-items:center;
}

.seo-orbit::before{
  content:"";
  position:absolute;
  inset:10%;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(214,187,129,.18), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.05), transparent 66%);
  filter:blur(2px);
}

.seo-orbit__ring{
  position:absolute;
  border:1px solid rgba(183,154,99,.18);
  border-radius:50%;
}

.seo-orbit__ring--outer{
  inset:0;
  box-shadow:0 0 0 1px rgba(255,255,255,.04) inset;
}

.seo-orbit__ring--inner{
  inset:12%;
}

.seo-orbit__core{
  position:relative;
  z-index:1;
  width:min(78%, 320px);
  padding:36px 30px;
  border:1px solid rgba(183,154,99,.18);
  border-radius:0;
  background:
    linear-gradient(180deg, rgba(25,25,25,.92), rgba(11,11,11,.88));
  box-shadow:
    0 28px 60px rgba(0,0,0,.36),
    0 0 0 1px rgba(255,255,255,.02) inset;
  text-align:left;
}

.seo-orbit__eyebrow{
  display:block;
  margin-bottom:12px;
  font-size:10px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(214,187,129,.86);
}

.seo-orbit__core strong{
  display:block;
  margin-bottom:12px;
  font-family:'Marcellus', serif;
  font-size:34px;
  line-height:1.02;
  color:#fbf4ec;
}

.seo-orbit__core p{
  color:rgba(245,245,245,.72);
  font-size:15px;
  line-height:1.76;
}

.seo-chip{
  position:absolute;
  z-index:1;
  padding:11px 16px;
  border:1px solid rgba(183,154,99,.18);
  border-radius:999px;
  background:rgba(9,9,9,.88);
  color:#f3eadf;
  font-size:12px;
  line-height:1;
  letter-spacing:.06em;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

.seo-chip--top{
  top:7%;
  left:9%;
}

.seo-chip--right{
  top:24%;
  right:-2%;
}

.seo-chip--bottom{
  bottom:11%;
  left:2%;
}

.seo-spotlight__rail{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  padding:12px 0 66px;
}

.seo-spotlight__link{
  position:relative;
  min-height:220px;
  padding:24px 22px 22px;
  border:1px solid rgba(245,245,245,.08);
  border-radius:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  overflow:hidden;
  transition:transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.seo-spotlight__link::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 100% 0%, rgba(183,154,99,.18), transparent 34%);
  opacity:.75;
  pointer-events:none;
}

.seo-spotlight__link:hover{
  transform:translateY(-4px);
  border-color:rgba(183,154,99,.34);
  background:
    linear-gradient(180deg, rgba(183,154,99,.11), rgba(255,255,255,.02));
  box-shadow:0 20px 38px rgba(0,0,0,.2);
}

.seo-spotlight__index{
  display:block;
  margin-bottom:26px;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(214,187,129,.88);
}

.seo-spotlight__link strong{
  display:block;
  max-width:10ch;
  margin-bottom:12px;
  font-family:'Marcellus', serif;
  font-size:31px;
  line-height:1.04;
  color:#fbf4ec;
}

.seo-spotlight__link .muted{
  display:block;
  max-width:24ch;
  color:rgba(245,245,245,.62) !important;
  font-size:14px;
  line-height:1.72;
}

@media (max-width: 1180px){
  .seo-spotlight__intro{
    grid-template-columns:1fr;
    gap:34px;
  }

  .seo-spotlight__copy{
    max-width:none;
  }

  .seo-spotlight__copy h2{
    max-width:12ch;
    font-size:clamp(38px, 6vw, 62px);
  }

  .seo-spotlight__visual{
    justify-content:flex-start;
  }

  .seo-orbit{
    width:min(100%, 440px);
  }

  .seo-spotlight__rail{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px){
  .seo-spotlight{
    margin:50px 0 14px;
  }

  .seo-spotlight__wrap{
    width:min(92%, 92%);
  }

  .seo-spotlight__intro{
    padding:50px 0 28px;
    gap:28px;
  }

  .seo-spotlight__copy::before{
    top:-14px;
    width:72px;
  }

  .seo-spotlight__copy h2{
    max-width:none;
    font-size:clamp(30px, 10vw, 42px);
    margin-bottom:18px;
  }

  .seo-spotlight__copy p{
    font-size:16px;
    line-height:1.74;
  }

  .seo-spotlight__lead{
    font-size:18px !important;
  }

  .seo-spotlight__metrics{
    gap:10px;
    margin-top:22px;
  }

  .seo-metric{
    min-width:calc(50% - 5px);
    padding:12px 14px;
    border-radius:0;
  }

  .seo-orbit{
    width:100%;
    aspect-ratio:auto;
    min-height:420px;
  }

  .seo-orbit__core{
    width:min(84%, 320px);
    padding:28px 22px;
    border-radius:0;
  }

  .seo-orbit__core strong{
    font-size:28px;
  }

  .seo-chip{
    font-size:11px;
    padding:10px 13px;
  }

  .seo-chip--top{
    top:6%;
    left:4%;
  }

  .seo-chip--right{
    top:auto;
    right:4%;
    bottom:18%;
  }

  .seo-chip--bottom{
    bottom:6%;
    left:6%;
  }

  .seo-spotlight__rail{
    grid-template-columns:1fr;
    gap:14px;
    padding:4px 0 54px;
  }

  .seo-spotlight__link{
    min-height:0;
    padding:20px 18px 18px;
    border-radius:0;
  }

  .seo-spotlight__index{
    margin-bottom:16px;
  }

  .seo-spotlight__link strong{
    max-width:none;
    font-size:26px;
    margin-bottom:8px;
  }

  .seo-spotlight__link .muted{
    max-width:none;
  }
}

/* ===== MOTION SYSTEM ===== */
:root{
  --ease-luxury:cubic-bezier(.22, 1, .36, 1);
}

body{
  opacity:0;
  transition:opacity .55s var(--ease-luxury);
}

body.page-loaded{
  opacity:1;
}

.header{
  transition:
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    padding .3s ease,
    transform .3s ease;
}

.header.is-scrolled{
  background:rgba(0,0,0,.96);
  box-shadow:0 18px 44px rgba(0,0,0,.28);
}

.nav a,
.footer-links a,
.footer-contact-item,
.breadcrumbs a{
  transition:color .24s ease, opacity .24s ease;
}

.nav a{
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(183,154,99,0), rgba(183,154,99,.92), rgba(183,154,99,0));
  transform:scaleX(.35);
  opacity:0;
  transform-origin:center;
  transition:transform .28s var(--ease-luxury), opacity .28s ease;
}

.nav a:hover::after{
  transform:scaleX(1);
  opacity:1;
}

.nav-cta::after{
  content:none;
}

.cta,
.nav-cta,
.cookie-consent__btn,
.product-pagination button,
.editorial-gallery .gallery-prev,
.editorial-gallery .gallery-next{
  transition:
    transform .26s var(--ease-luxury),
    border-color .26s ease,
    background .26s ease,
    color .26s ease,
    box-shadow .26s ease,
    opacity .26s ease;
}

.cta:hover,
.nav-cta:hover,
.cookie-consent__btn:hover,
.product-pagination button:hover{
  box-shadow:0 16px 26px rgba(0,0,0,.16);
}

.proof,
.tile,
.editorial-copy,
.editorial-media,
.mini,
.about-copy,
.about-media,
.form,
.product-item,
.info-card,
.blog-card-link,
.subpage-hero-card,
.faq-rich,
.seo-spotlight__link,
.seo-metric{
  transition:
    transform .34s var(--ease-luxury),
    border-color .28s ease,
    background .28s ease,
    box-shadow .34s ease,
    opacity .28s ease;
  will-change:transform;
}

.proof:hover,
.tile:hover,
.mini:hover,
.product-item:hover,
.info-card:hover,
.blog-card-link:hover,
.seo-metric:hover{
  transform:translateY(-4px);
  border-color:rgba(183,154,99,.28);
  box-shadow:0 18px 34px rgba(0,0,0,.14);
}

.editorial-copy:hover,
.about-copy:hover,
.form:hover,
.faq-rich:hover,
.subpage-hero-card:hover{
  transform:translateY(-3px);
  border-color:rgba(183,154,99,.26);
  box-shadow:0 18px 36px rgba(0,0,0,.14);
}

.editorial-media,
.about-media,
.hero-image,
.seo-orbit{
  --mx:0px;
  --my:0px;
  transition:transform .55s var(--ease-luxury), filter .45s ease;
}

.hero-image{
  transform:scale(1.03) translate3d(var(--mx), var(--my), 0);
}

.editorial-media,
.about-media{
  transform:translate3d(calc(var(--mx) * .45), calc(var(--my) * .45), 0);
}

.seo-orbit{
  transform:translate3d(calc(var(--mx) * .42), calc(var(--my) * .42), 0);
}

.hero-content > *{
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .8s var(--ease-luxury),
    transform .8s var(--ease-luxury);
}

body.page-loaded .hero-content > *{
  opacity:1;
  transform:none;
}

body.page-loaded .hero-content > *:nth-child(1){transition-delay:.05s}
body.page-loaded .hero-content > *:nth-child(2){transition-delay:.12s}
body.page-loaded .hero-content > *:nth-child(3){transition-delay:.19s}
body.page-loaded .hero-content > *:nth-child(4){transition-delay:.26s}
body.page-loaded .hero-content > *:nth-child(5){transition-delay:.33s}

html.js [data-reveal]{
  opacity:0;
  transform:translateY(26px) scale(.985);
  transition:
    opacity .9s var(--ease-luxury),
    transform .9s var(--ease-luxury);
  transition-delay:var(--reveal-delay, 0ms);
}

[data-reveal]{
  opacity:1;
  transform:none;
}

html.js [data-reveal].is-visible{
  opacity:1;
  transform:none;
}

.seo-orbit__ring{
  animation:orbitPulse 9s ease-in-out infinite;
}

.seo-orbit__ring--inner{
  animation-delay:-2.6s;
}

.seo-chip{
  animation:floatChip 7.5s ease-in-out infinite;
}

.seo-chip--right{
  animation-delay:-2.4s;
}

.seo-chip--bottom{
  animation-delay:-4.8s;
}

.seo-spotlight__link:hover{
  transform:translateY(-6px);
}

.blog-card,
.product-item,
.tile,
.mini,
.seo-spotlight__link{
  position:relative;
  overflow:hidden;
}

.blog-card::after,
.product-item::after,
.tile::after,
.mini::after,
.seo-spotlight__link::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(115deg, transparent 0%, rgba(255,255,255,.08) 48%, transparent 72%);
  transform:translateX(-130%);
  transition:transform .75s var(--ease-luxury);
  pointer-events:none;
}

.blog-card:hover::after,
.product-item:hover::after,
.tile:hover::after,
.mini:hover::after,
.seo-spotlight__link:hover::after{
  transform:translateX(130%);
}

@keyframes orbitPulse{
  0%, 100%{ transform:scale(1); opacity:.72; }
  50%{ transform:scale(1.025); opacity:1; }
}

@keyframes floatChip{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
  body{
    opacity:1;
  }
  html.js [data-reveal],
  [data-reveal]{
    opacity:1 !important;
    transform:none !important;
  }
}

@media (max-width: 780px){
  .faq-layout{
    gap:22px;
  }

  .faq-intro h2{
    font-size:clamp(30px, 10vw, 40px);
    line-height:1.04;
    margin-bottom:14px;
  }

  .faq-intro > p{
    font-size:16px;
    line-height:1.7;
  }

  .faq-note{
    margin-top:22px;
    padding:18px 0 0 18px;
    background:transparent;
  }

  .faq-note strong{
    font-size:22px;
  }

  .acc-btn{
    padding:18px 0 18px 18px;
    font-size:16px;
    line-height:1.34;
    gap:12px;
  }

  .acc-panel{
    padding:0 12px 0 18px;
    font-size:14px;
    line-height:1.74;
  }

  .acc-item.is-open .acc-panel{
    padding:0 12px 20px 18px;
  }
}
