:root{
  --bg:#e7f2ec;
  --bg2:#f4fbf7;
  --text:#0f172a;
  --muted:#334155;
  --gold:#d6b15c;
  --gold2:#b8923c;
  --card:#ffffff;
  --line:rgba(214,177,92,.25);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, "Noto Sans Hebrew", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(214,177,92,.10), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(214,177,92,.08), transparent 55%),
              var(--bg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, calc(100% - 32px)); margin-inline:auto}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding:.72rem 1.05rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
  font-weight:700;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(214,177,92,.55); background:rgba(214,177,92,.10)}
.btn--gold{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color:#111;
  border-color: rgba(0,0,0,.15);
}
.btn--gold:hover{background: linear-gradient(180deg, #e3c57a 0%, var(--gold2) 100%); border-color: rgba(0,0,0,.25)}
.btn--ghost{background:rgba(255,255,255,.06)}
.btn--lg{padding: .9rem 1.25rem; font-size:1.02rem}
.topbar{
  position:sticky; top:0; z-index:30;
  /* Light bottle-green top bar (less heavy than black) */
  background: rgba(231,242,236,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{display:flex; align-items:baseline; gap:.45rem; font-weight:900; letter-spacing:.2px}
.brand__mark{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:34px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(214,177,92,.25), rgba(214,177,92,.10));
  border:1px solid rgba(214,177,92,.35);
  color:var(--gold);
}
.brand__name{opacity:.92}
.nav__toggle{
  display:none; width:44px; height:40px;
  border-radius:12px; border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06); cursor:pointer;
}
.nav__toggle span{display:block; height:2px; margin:6px 10px; background:rgba(255,255,255,.75)}
.nav__list{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.nav__list a{color:var(--muted); font-weight:700}
.nav__list a:hover{color:var(--text)}
.topbar__cta{display:flex; gap:10px}
.hero{
  position:relative;
  min-height: 380px;
  height: 46vh;
  max-height: 520px;
  
  display:flex;
  align-items:center;
  isolation:isolate;
  background:
    radial-gradient(600px 260px at 30% 10%, rgba(214,177,92,.22), transparent 70%),
    linear-gradient(90deg, rgba(11,11,15,.92) 0%, rgba(11,11,15,.62) 45%, rgba(11,11,15,.28) 100%),
    var(--hero-img) center/cover no-repeat;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero::after{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(700px 280px at 85% 40%, rgba(214,177,92,.18), transparent 55%);
  z-index:-1;
}
.hero__inner{padding:72px 0}
.eyebrow{
  display:inline-flex;
  padding:.35rem .75rem;
  border-radius:999px;
  background:rgba(214,177,92,.10);
  border:1px solid rgba(214,177,92,.25);
  color:#f5e8c8;
  font-weight:800;
  font-size:.92rem;
}
.hero h1{font-size: clamp(2.2rem, 4vw, 3.4rem); margin:.7rem 0 .25rem}
.hero__subtitle{max-width: 52ch; color:rgba(255,255,255,.86); font-size:1.08rem}
.hero__actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.trust{display:flex; gap:14px; flex-wrap:wrap; margin-top:22px}
.trust__item{
  padding:.45rem .7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  color:rgba(255,255,255,.88);
  font-weight:700;
  font-size:.95rem;
}
.trust__icon{color:var(--gold); margin-left:.35rem}
.section{padding:72px 0}
.section--dark{background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section--cta{padding:64px 0}
.section__head{margin-bottom:22px}
.section__head h2{font-size: clamp(1.6rem, 2.3vw, 2.1rem); margin:0 0 6px}
.section__head p{margin:0; color:var(--muted)}
.features{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.feature{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.feature__icon{font-size:1.35rem}
.feature h3{margin:.35rem 0 .2rem}
.feature p{margin:0; color:var(--muted)}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  position:relative;
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: var(--card);
  box-shadow: var(--shadow);
  min-height: 210px;
}
.card img{width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.02); transition: transform .25s ease}
.card:hover img{transform:scale(1.06)}
.card__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.62) 70%, rgba(0,0,0,.80) 100%);
}
.card__meta{
  position:absolute; inset:auto 0 0 0;
  padding:16px;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:10px;
}
.card__meta h3{margin:0; font-size:1.1rem}
.card__cta{
  color: #111;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  padding:.45rem .75rem;
  border-radius:999px;
  font-weight:900;
}
.products{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.product{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.product__media img{width:100%; height:230px; object-fit:cover; display:block}
.product__body{padding:16px}
.product__body h3{margin:0 0 6px}
.product__body p{margin:0; color:var(--muted)}
.product__foot{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:14px}
.price{
  font-weight:950;
  color: #111;
  background: linear-gradient(180deg, rgba(214,177,92,.95), rgba(214,177,92,.75));
  padding:.45rem .75rem;
  border-radius:999px;
}
.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: var(--radius);
  background: rgba(214,177,92,.10);
  border:1px solid rgba(214,177,92,.22);
  color: rgba(255,255,255,.90);
}
.masonry{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.masonry__item{
  border:0;
  padding:0;
  border-radius: 16px;
  overflow:hidden;
  cursor:pointer;
  background: transparent;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.masonry__item img{width:100%; height: 230px; object-fit:cover; display:block; transition: transform .25s ease}
.masonry__item:hover img{transform: scale(1.04)}
.about{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:center;
}
.about__media img{
  width:100%; height: 420px; object-fit:cover;
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.about__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.cta__box{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: calc(var(--radius) + 10px);
  padding:26px;
  box-shadow: var(--shadow);
  text-align:center;
}
.cta__box h2{margin:0 0 6px}
.cta__box p{margin:0; color:var(--muted)}
.cta__actions{display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:14px}
.cta__meta{display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:14px; color:var(--muted)}
.cta__meta a{color: #f3e4bd; border-bottom:1px dashed rgba(214,177,92,.45)}
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:24px 0;
  background: rgba(0,0,0,.25);
}
.footer__inner{
  display:flex; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  gap:12px;
}
.footer__brand{font-weight:950}
.footer__sub{color:var(--muted); font-size:.95rem}
.footer__links{display:flex; gap:12px; flex-wrap:wrap; color:#f3e4bd}
.footer__links a{border-bottom:1px dashed rgba(214,177,92,.35)}
.footer__small{display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:.9rem}
.dot{opacity:.5}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.85);
  display:none;
  align-items:center; justify-content:center;
  padding:24px;
  z-index:60;
}
.lightbox.is-open{display:flex}
.lightbox__img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute;
  top:14px; left:14px;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-size:28px;
  cursor:pointer;
}
@media (max-width: 980px){
  .features{grid-template-columns: repeat(2, 1fr)}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .products{grid-template-columns: repeat(2, 1fr)}
  .masonry{grid-template-columns: repeat(3, 1fr)}
  .about{grid-template-columns: 1fr}
  .about__media img{height: 340px}
}
@media (max-width: 640px){
  .topbar__cta{display:none}
  .nav__toggle{display:inline-block}
  .nav__list{
    display:none;
    position:absolute;
    top:64px; right:16px; left:16px;
    background: rgba(11,11,15,.96);
    border:1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding:10px;
    flex-direction:column;
    gap:8px;
    box-shadow: var(--shadow);
  }
  .nav__list.is-open{display:flex}
  .nav__list a{padding:10px 12px; border-radius:14px}
  .nav__list a:hover{background: rgba(214,177,92,.10)}
  .hero{min-height: 74vh; background:
    radial-gradient(520px 260px at 20% 10%, rgba(214,177,92,.22), transparent 70%),
    linear-gradient(180deg, rgba(11,11,15,.86) 0%, rgba(11,11,15,.56) 60%, rgba(11,11,15,.26) 100%),
    var(--hero-img) center/cover no-repeat;
  }
  .hero__inner{padding:58px 0}
  .masonry{grid-template-columns: repeat(2, 1fr)}
  .masonry__item img{height: 190px}
  .products{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .feature{padding:16px}
}


/* Forms */
.form__row{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
.form__row label{font-weight:800}
.form input, .form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{border-color:rgba(214,177,92,.55); box-shadow:0 0 0 4px rgba(214,177,92,.12)}
.paymethods{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:10px}
.paymethod{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.paymethod input{accent-color: var(--gold)}
@media (max-width:780px){
  .paymethods{grid-template-columns:1fr}
}



/* Brand logo */
.brand{align-items:center}
.brand__logo{height:44px; width:auto; display:block; object-fit:contain}
@media (max-width:720px){
  .brand__logo{height:38px}
}
/* Home extras */
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:1rem}
.step{background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:18px; padding:1rem}
.step__num{width:38px; height:38px; border-radius:999px; display:grid; place-items:center; font-weight:900; color:#0b0b0f; background:linear-gradient(135deg,#c8a44d,#f1d88a)}
.section--dark .h2, .section--dark .text{color:#fff}
.cta{margin-top:1.25rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem; border-radius:18px; background:rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.12)}
.cta__actions{display:flex; gap:.6rem; flex-wrap:wrap}
.gallery-strip{display:grid; grid-template-columns:repeat(5,1fr); gap:.6rem; margin-top:1rem}
.gallery-strip img{width:100%; height:160px; object-fit:cover; border-radius:16px; border:1px solid rgba(255,255,255,.12)}
.center{text-align:center; margin-top:1rem}
@media (max-width:900px){
  .steps{grid-template-columns:1fr}
  .gallery-strip{grid-template-columns:repeat(2,1fr)}
  .gallery-strip img{height:150px}
  .cta{flex-direction:column; align-items:flex-start}
}


/* === v3 tweaks: centered logo above nav + light bottle-green theme === */
body{ background: var(--bg); color: var(--text); }
.topbar{ position: sticky; top:0; background: rgba(231,242,236,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--stroke); }
.topbar__inner{ display:flex; flex-direction:column; align-items:center; gap:10px; padding:14px 0; }
.brand{ display:flex; justify-content:center; }
.brand__logo{ width:min(280px, 70vw); height:auto; display:block; filter: drop-shadow(0 8px 18px rgba(0,0,0,.10)); }
.nav{ width:100%; }
.nav__list{ justify-content:center; }
.nav__link{ color: var(--text); }
.nav__link:hover{ color: var(--gold); }
.topbar__actions{ justify-content:center; }
.page-home .topbar__actions{ display:none !important; }

.container{ text-align:center; }
.hero{ background: radial-gradient(1000px 600px at 20% -10%, rgba(214,177,92,.12), transparent 60%), radial-gradient(900px 600px at 80% 0%, rgba(16,185,129,.10), transparent 55%); }
.hero__content{ text-align:center; margin-inline:auto; }
.lead{ color: var(--muted); }
.section-title, h1, h2, h3{ text-align:center; }
.grid, .products{ justify-content:center; }

.product{ border:1px solid var(--stroke); background: var(--card); box-shadow: 0 10px 25px rgba(15,23,42,.06); }
.product__body{ padding:14px 14px 16px; }
.product__media img{ border-bottom:1px solid var(--stroke); }
.product__foot{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.product .btn{ padding:10px 14px; font-size:0.95rem; }
.products{ gap:14px; }
@media (min-width: 900px){
  .products{ grid-template-columns: repeat(4, minmax(0, 260px)); }
}

/* Product card badge */
.product{ position:relative; overflow:hidden; }
.product__badge{
  position:absolute;
  top:12px;
  inset-inline-start:12px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:.82rem;
  background: rgba(214,177,92,.22);
  border:1px solid rgba(214,177,92,.45);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.video-hero{
  position:relative;
  border:1px solid var(--stroke);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  background:#0b0b0f;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio:16/9;
  max-height: 320px;
}

/* Background fill (covers the entire frame) */
.video-hero__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: blur(14px) saturate(1.05) brightness(.75);
  transform: scale(1.06);
}

/* Foreground video (shows the full frame – no cropping) */
.video-hero__frame{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}
.video-hero__video{
  width:100%;
  height:100%;
  object-fit:contain;
  background:rgba(0,0,0,.25);
  border-radius:14px;
}

/* Small screens */
@media (max-width: 640px){
  .video-hero{ max-height: 240px; }
  .video-hero__frame{ padding:8px; }
}

/* --- Header stacked logo --- */
.topbar--stacked { position: sticky; top:0; z-index:50; }
.topbar__inner--stacked { display:block; padding-top:14px; padding-bottom:12px; }
.topbar__logoRow { display:flex; justify-content:center; align-items:center; padding:8px 0 10px; }
.brand__logo--header { height:64px; width:auto; display:block; filter: drop-shadow(0 10px 22px rgba(0,0,0,.18)); }
@media (max-width:520px){ .brand__logo--header{ height:54px; } }
.topbar__navRow { display:flex; align-items:center; justify-content:space-between; gap:14px; border-top:1px solid rgba(255,255,255,.08); padding-top:10px; }

/* --- Hero video --- */
.hero{ position:relative; overflow:hidden; }
.hero__video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero__overlay{
  position:absolute; inset:0;
  /* Softer overlay for light bottle‑green theme */
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(214,177,92,.18), transparent 62%),
    linear-gradient(180deg, rgba(231,242,236,.70), rgba(231,242,236,.92));
}
.hero__inner{ position:relative; z-index:1; }
.hero .hero__content{ text-align:center; margin:0 auto; }
.hero .muted{ opacity:.9; }

/* Make the opening text more "wow" and readable */
.hero .kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(214,177,92,.18);
  border:1px solid rgba(214,177,92,.30);
  font-weight:800;
}
.hero h1{
  font-weight:900;
  letter-spacing:.2px;
  margin:.7rem auto .4rem;
}
.hero .lead{
  max-width: 72ch;
  margin: 0.6rem auto 0;
  font-size:1.08rem;
  font-weight:650;
  color: rgba(15,23,42,.92);
}

/* --- Category tiles --- */
.cats{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px; }
@media (max-width:900px){ .cats{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .cats{ grid-template-columns:1fr;} }
.cat{ position:relative; border-radius:18px; overflow:hidden; border:1px solid rgba(15,23,42,.08); background:rgba(255,255,255,.55); box-shadow:0 10px 30px rgba(15,23,42,.08); }
.cat img{ width:100%; height:160px; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.03); }
.cat__label{ position:absolute; inset:auto 10px 10px 10px; background:rgba(0,0,0,.55); color:#fff; padding:10px 12px; border-radius:14px; font-weight:700; font-size:.98rem; line-height:1.2; backdrop-filter: blur(10px); }

/* --- Compact product grid --- */
.products--compact{ grid-template-columns:repeat(4,1fr); gap:14px; }
@media (max-width:1100px){ .products--compact{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:820px){ .products--compact{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .products--compact{ grid-template-columns:1fr;} }
.product--small .product__media img{ height:140px; }
.product__actions{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.btn--small{ padding:10px 12px; font-size:.92rem; border-radius:12px; }

/* --- Floating stack + panels --- */
.float-stack{ position:fixed; right:16px; bottom:18px; z-index:80; display:flex; flex-direction:column; gap:10px; }
.fab{ border:none; cursor:pointer; padding:12px 14px; border-radius:999px; font-weight:800; box-shadow:0 14px 40px rgba(0,0,0,.18); }
.fab--access{ background:rgba(255,255,255,.85); border:1px solid rgba(15,23,42,.12); }
.fab--chat{ background:var(--gold); color:#111; }
.panel{ position:fixed; right:16px; bottom:78px; width:min(360px, calc(100vw - 32px)); max-height:70vh; background:rgba(255,255,255,.92); border:1px solid rgba(15,23,42,.12); border-radius:18px; box-shadow:0 18px 60px rgba(0,0,0,.22); overflow:hidden; z-index:90; }
.panel__header{ display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-bottom:1px solid rgba(15,23,42,.08); }
.panel__title{ font-weight:900; }
.panel__close{ border:none; background:transparent; cursor:pointer; font-size:18px; }
.panel__body{ padding:12px 14px; display:grid; gap:10px; }
.panel__btn{ width:100%; text-align:center; padding:12px 12px; border-radius:12px; border:1px solid rgba(15,23,42,.12); background:#fff; font-weight:800; cursor:pointer; }
.panel__btn--ghost{ background:transparent; }
.panel--chat .panel__body{ display:flex; flex-direction:column; gap:10px; }
.chat__log{ background:rgba(15,23,42,.04); border:1px solid rgba(15,23,42,.08); border-radius:14px; padding:10px; height:220px; overflow:auto; }
.msg{ margin:6px 0; display:flex; }
.msg__b{ padding:10px 12px; border-radius:14px; max-width:85%; font-size:.95rem; line-height:1.35; }
.msg--me{ justify-content:flex-start; }
.msg--me .msg__b{ background:#fff; border:1px solid rgba(15,23,42,.08); }
.msg--bot{ justify-content:flex-end; }
.msg--bot .msg__b{ background:rgba(214,177,92,.22); border:1px solid rgba(214,177,92,.35); }
.chat__form{ display:flex; gap:8px; }
.chat__input{ flex:1; padding:12px 12px; border-radius:12px; border:1px solid rgba(15,23,42,.12); }
.chat__send{ padding:12px 14px; border-radius:12px; border:none; background:var(--gold); font-weight:900; cursor:pointer; }
.chat__quick{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{ border:1px solid rgba(15,23,42,.12); background:#fff; border-radius:999px; padding:8px 10px; font-weight:800; cursor:pointer; font-size:.88rem; }
.chat__note{ font-size:.86rem; opacity:.85; }

/* --- Accessibility toggles --- */
body.a11y-contrast{ filter: contrast(1.12) saturate(1.05); }
body.a11y-underline a{ text-decoration: underline !important; text-underline-offset: 3px; }


@media (max-width:720px){ .hero{ min-height: 280px; height: 38vh; max-height: 380px;} .hero__content h1{font-size:2.05rem;} }

/* --- Banner labels for shop/category cards --- */
.product__media{ position:relative; }
.product__media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
}
.media__label{
  position:absolute;
  right:12px;
  left:12px;
  bottom:10px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(10,10,14,.42);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  color:#fff;
  font-weight:800;
  line-height:1.2;
  text-align:center;
}

/* Logo above the top bar */
.logoWrap{display:flex; justify-content:center; align-items:center; padding: 18px 12px 6px;}
.logoLink{display:inline-flex;}
.logoImg{height:72px; width:auto; max-width:92vw;}

/* Center the top nav a bit more */
.topbar{justify-content:center; gap:16px; flex-wrap:wrap;}
.topbar nav{justify-content:center;}

/* Floating buttons */
.floatStack{position:fixed; right:16px; bottom:16px; display:flex; flex-direction:column; gap:10px; z-index:9999;}
.floatBtn{border:1px solid rgba(255,255,255,.18); background: rgba(10,14,10,.92); color: #fff; padding: 10px 12px; border-radius: 999px; font-weight:800; box-shadow: 0 10px 24px rgba(0,0,0,.35); cursor:pointer;}
.floatBtn:hover{transform: translateY(-1px);}

/* Modal */
.modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; padding:20px; z-index:10000;}
.modal.is-open{display:flex;}
.modal__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.55);}
.modal__panel{position:relative; width:min(520px, 92vw); background:#0b100b; border:1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 16px; box-shadow: 0 18px 45px rgba(0,0,0,.45);}
.modal__head{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px;}
.modal__title{margin:0; font-size:1.05rem;}
.modal__close{border:1px solid rgba(255,255,255,.18); background:transparent; color:#fff; border-radius: 10px; padding: 6px 10px; cursor:pointer;}
.modal__opts{display:grid; grid-template-columns:1fr 1fr; gap:10px;}
.modal__opt{background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius: 14px; padding:12px;}
.modal__opt h4{margin:0 0 6px; font-size:0.98rem;}
.modal__opt p{margin:0; opacity:.88;}

/* Chat */
.chat{position:fixed; right:16px; bottom:78px; width:min(360px, 92vw); background:#0b100b; border:1px solid rgba(255,255,255,.14); border-radius: 18px; overflow:hidden; display:none; z-index:9999; box-shadow: 0 18px 45px rgba(0,0,0,.45);}
.chat.is-open{display:block;}
.chat__head{display:flex; align-items:center; justify-content:space-between; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.12);}
.chat__title{font-weight:900;}
.chat__close{border:1px solid rgba(255,255,255,.18); background:transparent; color:#fff; border-radius: 10px; padding: 6px 10px; cursor:pointer;}
.chat__log{max-height: 240px; overflow:auto; padding: 12px; display:flex; flex-direction:column; gap:8px;}
.chat__msg{max-width: 88%; padding: 8px 10px; border-radius: 14px; font-size: 0.95rem;}
.chat__msg--bot{background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);}
.chat__msg--user{background: rgba(180,140,40,.22); border:1px solid rgba(180,140,40,.28); align-self:flex-end;}
.chat__chips{display:flex; gap:8px; flex-wrap:wrap; padding: 10px 12px; border-top: 1px solid rgba(255,255,255,.12);}
.chip{border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color:#fff; padding:6px 10px; border-radius: 999px; cursor:pointer; font-weight:800;}


/* --- Added: category cards grid --- */
.grid{display:grid;gap:18px}
.grid--cards{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}
.card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:16px;overflow:hidden;display:block;text-decoration:none;color:inherit}
.card--link:hover{transform:translateY(-1px)}
.card__img{width:100%;height:150px;object-fit:cover;display:block}
.card__body{padding:12px 14px;display:flex;justify-content:space-between;align-items:center;gap:10px}


/* --- Updates v11: smaller videos + left-side accessibility/chat --- */
.hero-video video, .hero-video iframe, .hero-video .embed {
  width: 100%;
  max-width: 720px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  display: block;
  margin-inline: auto;
}
@media (max-width: 640px){
  .hero-video video{
    max-width: 100%;
    max-height: 240px;
  }
}

/* Floating buttons: move to left-bottom */
.fab{
  right: auto !important;
  left: 16px !important;
}
.fab--access{
  bottom: 92px !important;
}
.fab--chat{
  bottom: 24px !important;
}

/* Panels anchor to left */
.panel{
  right: auto !important;
  left: 16px !important;
}
#chatPanel.panel{
  width: min(380px, calc(100vw - 32px));
}
@media (max-width: 640px){
  #chatPanel.panel{
    width: calc(100vw - 32px);
  }
}

/* Amazon-like shop */
.products.products--compact{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
@media(max-width:1100px){.products.products--compact{grid-template-columns:repeat(4,1fr)}}
@media(max-width:800px){.products.products--compact{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.products.products--compact{grid-template-columns:1fr}}
.product.product--small{border:1px solid #000;border-radius:12px;background:#fff;overflow:hidden}
.product__media img{width:100%;height:160px;object-fit:cover}
.product__body{padding:10px;display:flex;flex-direction:column;gap:6px}
.product__body h3{font-size:14px;margin:0}
.product__body p{font-size:12px;margin:0;opacity:.8}
.product__foot{display:flex;justify-content:space-between;align-items:center;margin-top:8px}
.product__foot .price{font-weight:800}
.product__foot .actions{display:flex;gap:6px}

/* Categories dropdown */
.catdrop{position:fixed;inset:0;display:none;z-index:9000;background:rgba(0,0,0,.35);backdrop-filter:blur(2px)}
.catdrop.open{display:block}
.catdrop__panel{position:absolute;top:70px;right:16px;left:16px;max-width:980px;margin:0 auto;background:#fff;border:1px solid rgba(0,0,0,.12);border-radius:16px;box-shadow:0 18px 60px rgba(0,0,0,.25);overflow:hidden}
.catdrop__head{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid rgba(0,0,0,.08)}
.catdrop__close{border:0;background:transparent;font-size:22px;cursor:pointer}
.catdrop__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding:12px 14px}
@media(max-width:820px){.catdrop__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
.catdrop__grid a{padding:12px;border:1px solid rgba(0,0,0,.12);border-radius:12px;text-decoration:none;color:#111;font-weight:800;background:rgba(255,215,0,.10)}
.catdrop__grid a:hover{background:rgba(255,215,0,.18)}

/* Category banners inside shop */
.catbanners{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:14px}
@media(max-width:820px){.catbanners{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:420px){.catbanners{grid-template-columns:1fr}}
.catbanner{position:relative;display:block;border-radius:16px;overflow:hidden;border:1px solid rgba(0,0,0,.15);text-decoration:none;color:#111;background:#fff}
.catbanner img{width:100%;height:140px;object-fit:cover;display:block;filter:saturate(1.05)}
.catbanner__txt{position:absolute;inset:auto 10px 10px 10px;background:rgba(255,255,255,.88);border:1px solid rgba(0,0,0,.12);border-radius:14px;padding:10px}
.catbanner__txt strong{display:block;font-size:14px}
.catbanner__txt span{display:block;font-size:12px;opacity:.8}
.cathead{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-bottom:10px}
.orderform .formgrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}
@media(max-width:820px){.orderform .formgrid{grid-template-columns:1fr}}
.orderform label{display:flex;flex-direction:column;gap:6px;font-weight:800}
.orderform input,.orderform select,.orderform textarea{padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.18);background:#fff}
.formactions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.pactions .icon{font-size:12px;font-weight:900}

/* Hide legacy categories dropdown */
.catdrop{display:none !important;}

/* Buy button hover animation */
.pactions a.buy, .btn.btn--gold{
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.pactions a.buy:hover, .btn.btn--gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  background: rgba(255,215,0,.42) !important;
}

/* Gallery normal grid */
.galleryGrid{columns:4;column-gap:12px}
@media(max-width:1100px){.galleryGrid{columns:3}}
@media(max-width:820px){.galleryGrid{columns:2}}
@media(max-width:420px){.galleryGrid{columns:1}}
.gitem{display:block;break-inside:avoid;margin:0 0 12px;border-radius:14px;overflow:hidden;border:1px solid rgba(0,0,0,.18);background:#fff}
.gitem img{width:100%;height:auto;display:block}
.gitem:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(0,0,0,.12);transition:transform .15s ease, box-shadow .15s ease}

/* Prominent payment button */
.bigpay{
  display:block;
  width:min(520px, 100%);
  margin:14px auto 0;
  text-align:center;
  padding:14px 16px;
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.18);
  background: rgba(255,215,0,.45);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  color:#111;
}
.bigpay:hover{transform:translateY(-2px);background:rgba(255,215,0,.55)}
