﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root{
  --bg:#f7f4ee;
  --card:#ffffff;
  --text:#1c1c1c;
  --muted:#67635d;
  --brand:#0f3d37;
  --brand-2:#16524b;
  --accent:#c6a86b;
  --border:#e4dccf;
  --danger:#c53b3b;
  --radius-btn:12px;
  --hero-surface:linear-gradient(135deg,#0f3d37 0%, #16524b 52%, #114640 100%);
  --shadow-soft:0 10px 24px rgba(16,35,33,.08);
  --shadow-card:0 14px 30px rgba(14,33,31,.11);
  --shadow-lift:0 18px 38px rgba(12,30,28,.14);
  --surface-1:#ffffff;
  --surface-2:#f6f1e8;
  --surface-3:#eef6f3;
  --text-strong:#143c37;
  --gold-soft:#d6bc8a;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;overflow-x:hidden}
body{
  font-family:"Manrope","Segoe UI",Tahoma,Arial,sans-serif;
  background:var(--bg);
  background-image:
    radial-gradient(circle at 12% -6%, rgba(198,168,107,.12), rgba(198,168,107,0) 34%),
    radial-gradient(circle at 88% -10%, rgba(15,61,55,.1), rgba(15,61,55,0) 38%);
  color:var(--text);
  min-width:320px;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
img:hover{cursor:pointer}
.container{max-width:1480px;margin:0 auto;padding:0 28px}
@media (min-width:981px){
  .container{
    width:90%;
    max-width:none;
  }
}
.topbar{
  background:#0d342f;
  color:#d6bc8a;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-align:center;
  padding:8px 10px;
}
.header{
  position:sticky;top:0;z-index:20;
  background:rgba(15,61,55,.9);
  border-bottom:1px solid rgba(198,168,107,.35);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 24px rgba(10,28,26,.2);
  transition:all .22s ease;
}
.header-inner{
  height:74px;display:flex;align-items:center;justify-content:space-between;gap:18px;
  transition:height .22s ease;
}
.logo{
  display:flex;flex-direction:column;line-height:1;
}
.logo strong{
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  color:#fff;font-size:32px;letter-spacing:.16em;font-weight:600;
  transition:font-size .22s ease;
}
.logo span{
  color:#c6a86b;font-size:10px;letter-spacing:.28em;text-transform:uppercase;margin-top:2px;
  transition:font-size .22s ease;
}
.nav{
  display:flex;align-items:center;gap:20px;font-size:13px;color:#e7eceb;text-transform:uppercase;letter-spacing:.08em;
}
.nav a{opacity:.9}
.nav a:hover{color:#c6a86b}
.header .nav #i18n-nav-track{display:none}
.header .nav a[href='track-order.html']{display:none}
.mobile-menu-toggle{
  display:none;
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  flex:0 0 auto;
}
.mobile-menu-toggle span{
  width:18px;
  height:2px;
  border-radius:99px;
  background:#ffffff;
  display:block;
}
.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(3,14,20,.48);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:25;
}
.mobile-nav-drawer{
  position:fixed;
  top:0;
  left:0;
  width:min(82vw,320px);
  height:100dvh;
  background:#0f3d37;
  border-right:1px solid rgba(255,255,255,.14);
  transform:translateX(-100%);
  transition:transform .24s ease;
  z-index:26;
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:84px 12px 14px;
  overflow:auto;
}
.mobile-nav-head{
  position:absolute;
  top:16px;
  right:12px;
}
.mobile-nav-close{
  width:38px;
  height:38px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.1);
  color:#ffffff;
  font-size:26px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.mobile-nav-close:hover{
  background:rgba(255,255,255,.18);
}
.mobile-nav-link{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:0 12px;
  border-radius:10px;
  color:#e7eceb;
  border:1px solid transparent;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:700;
}
.mobile-nav-link:hover{
  background:#18554d;
  border-color:#2b7167;
}
body.mobile-nav-open{
  overflow:hidden;
}
body.mobile-nav-open .mobile-nav-overlay{
  opacity:1;
  pointer-events:auto;
}
body.mobile-nav-open .mobile-nav-drawer{
  transform:translateX(0);
}
.header-actions{display:flex;align-items:center;gap:10px;min-width:0}
.header-actions form{display:flex;align-items:center;position:relative;min-width:0}
.header-actions input[name="q"]{
  width:180px;
  max-width:45vw;
  height:40px !important;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.28);
  background:#fff;
}
.header-search-row{
  display:none;
  background:rgba(15,63,58,.95);
  border-bottom:1px solid rgba(198,163,107,.22);
}
.header-search-row .container{
  padding-top:8px;
  padding-bottom:10px;
}
.header-search-slot{
  display:flex;
  justify-content:flex-end;
}
.header-search-form{
  width:min(560px,100%);
  position:relative;
}
form[data-search-form]{
  position:relative;
}
form[data-search-form]::before{
  content:"";
  position:absolute;
  left:12px;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  pointer-events:none;
  opacity:.78;
  background:center/16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23344b4f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
}
.header-actions form[data-search-form] input[name="q"],
.header-search-form input[name="q"]{
  width:100% !important;
  max-width:none !important;
  height:42px !important;
  border-radius:12px;
  padding-left:38px;
}
.header-search-form .search-suggest{
  top:calc(100% + 8px);
  left:0;
  right:0;
  width:100%;
  max-width:none;
}
.search-suggest{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  width:min(420px,80vw);
  max-height:420px;
  overflow:auto;
  background:var(--surface-1);
  border:1px solid #d5dfdc;
  border-radius:12px;
  box-shadow:0 18px 35px rgba(12,32,38,.22);
  padding:8px;
  z-index:40;
}
.search-suggest-item{
  display:grid;
  grid-template-columns:56px 1fr auto;
  align-items:center;
  gap:10px;
  border:1px solid transparent;
  border-radius:10px;
  padding:8px;
  cursor:pointer;
  min-width:0;
}
.search-suggest-item:hover{background:#f2f7f6;border-color:#cfddd9}
.search-suggest-item img{
  width:56px;
  height:56px;
  object-fit:contain;
  border:1px solid #dde6e2;
  border-radius:8px;
  background:#fff;
  padding:4px;
}
.search-suggest-text{display:flex;flex-direction:column;gap:2px;min-width:0}
.search-suggest-title{
  font-size:14px;font-weight:700;color:var(--text-strong);line-height:1.3;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.search-suggest-sub{
  font-size:12px;color:#61706c;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.search-suggest-price{font-size:13px;font-weight:800;color:var(--brand);white-space:nowrap}
.search-suggest-cat{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px dashed #cedfd9;
  border-radius:10px;
  padding:8px 10px;
  margin-top:6px;
  font-size:13px;
  color:#234643;
  cursor:pointer;
}
.search-suggest-foot{
  border-top:1px solid #dfe8e4;
  margin-top:8px;
  padding-top:8px;
  text-align:center;
  color:var(--brand);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}
.icon-btn,.cart-btn{
  border:1px solid rgba(255,255,255,.25);
  background:transparent;color:#fff;border-radius:10px;height:40px;
}
.icon-btn{
  width:40px !important;height:40px !important;font-size:22px !important;line-height:1;display:grid;place-items:center;cursor:pointer;
}
.header-track-shortcut{
  display:inline-flex;
  align-items:center;
  gap:6px;
  height:40px;
  padding:0 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.header-track-shortcut .track-shortcut-icon{
  font-size:16px;
  line-height:1;
}
.header-track-shortcut .track-shortcut-text{
  font-size:12px;
  letter-spacing:.01em;
}
.cart-btn{
  width:40px !important;height:40px !important;font-size:20px !important;line-height:1;display:grid;place-items:center;cursor:pointer;position:relative;
  border-radius:10px;
}
.cart-btn strong{
  position:absolute;top:3px;right:3px;min-width:12px !important;height:12px !important;padding:0 2px;
  border-radius:999px;background:var(--accent);color:#1f2a2c;display:grid;place-items:center;
  font-size:8px !important;font-weight:700;line-height:1;border:1px solid rgba(255,255,255,.45);
}
.inline-toast{
  position:fixed;
  right:14px;
  top:88px;
  z-index:2100;
  display:flex;
  align-items:center;
  gap:8px;
  max-width:min(360px, calc(100vw - 28px));
  background:#ffffff;
  border:1px solid #d1e0dc;
  color:var(--text-strong);
  border-radius:12px;
  box-shadow:0 12px 28px rgba(10,35,42,.16);
  padding:10px 12px;
  transform:translateY(-10px);
  opacity:0;
  transition:opacity .2s ease, transform .2s ease;
}
.inline-toast.show{opacity:1;transform:translateY(0)}
.inline-toast-icon{
  width:22px;
  height:22px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:14px;
  font-weight:800;
  color:#fff;
  flex:0 0 auto;
}
.inline-toast--success .inline-toast-icon{background:#1f7d66}
.inline-toast--warn .inline-toast-icon{background:#b44837}
.inline-toast-text{font-size:13px;font-weight:700;line-height:1.3}
body.wa-lead-open{overflow:hidden}
.wa-lead-overlay{
  position:fixed;
  inset:0;
  background:rgba(6,19,26,.58);
  z-index:2200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.wa-lead-overlay.show{display:flex}
.wa-lead-modal{
  width:min(480px,100%);
  background:#fff;
  border:1px solid #d7e0dd;
  border-radius:16px;
  box-shadow:0 24px 54px rgba(12,30,36,.28);
  padding:18px;
  position:relative;
}
.wa-lead-modal h3{
  margin:0 0 6px;
  color:#123f3a;
}
.wa-lead-sub{
  margin:0 0 14px;
  color:#5b6d72;
  font-size:14px;
}
.wa-lead-close{
  position:absolute;
  top:8px;
  right:10px;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid #d6dddc;
  background:#fff;
  font-size:26px;
  line-height:1;
  color:#446064;
  cursor:pointer;
}
.wa-lead-form{
  display:grid;
  gap:10px;
}
.wa-lead-form label{
  display:grid;
  gap:6px;
  font-size:13px;
  color:#204243;
  font-weight:700;
}
.wa-lead-form input,
.wa-lead-form textarea{
  width:100%;
  border:1px solid #ccd9d7;
  border-radius:10px;
  padding:10px 12px;
  font:inherit;
  color:#183a3a;
  background:#fff;
}
.wa-lead-form textarea{
  resize:vertical;
  min-height:96px;
}
.wa-lead-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:4px;
}
.wa-cancel-btn{
  border-color:#cfd8d7;
  background:#fff;
  color:#2f474c;
}
@media (max-width:640px){
  .wa-lead-modal{padding:14px;border-radius:14px}
  .wa-lead-form input,
  .wa-lead-form textarea{font-size:16px}
  .wa-lead-actions{grid-template-columns:1fr}
}
.header.shrink{
  background:rgba(12,48,43,.97);
  border-bottom-color:rgba(198,163,107,.35);
}
.header.shrink .header-inner{height:60px}
.header.shrink .logo strong{font-size:26px}
.header.shrink .logo span{font-size:9px}
.header.shrink .icon-btn{width:38px !important;height:38px !important;font-size:20px !important}
.header.shrink .cart-btn{width:38px !important;height:38px !important;font-size:18px !important}
.trust-inline-bar{
  background:#edf8f6;
  border-bottom:1px solid #d6ebe6;
}
.trust-inline-inner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  padding:6px 0;
}
.trust-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid #c5e2db;
  background:#ffffff;
  color:#16534b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}
.hero{
  padding:22px 0 48px;
}
.hero-grid{
  background:#16524b;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(198,163,107,.24);
  box-shadow:0 24px 60px rgba(8,24,22,.28);
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:clamp(440px,52vw,580px);
  align-items:stretch;
  position:relative;
}
.hero-copy{
  background:transparent;
  padding:54px 46px 46px clamp(34px,3.1vw,52px);
  max-width:640px;
  margin-left:0;
  color:#eff4f3;display:flex;flex-direction:column;justify-content:center;
}
.hero-copy h1{
  margin:0 0 14px;font-size:52px;line-height:1.05;font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;color:var(--gold-soft);
  position:relative;
  isolation:isolate;
  text-shadow:0 2px 10px rgba(6,14,22,.28);
}
.hero-copy h1::after{
  content:none;
}
.hero-copy p{
  margin:0 0 24px;
  color:var(--gold-soft);
  max-width:520px;
  line-height:1.75;
  text-shadow:0 2px 10px rgba(6,14,22,.24);
}
.hero-cta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  width:min(100%,560px);
}
.hero-cta .btn{
  width:100%;
  min-width:0;
  min-height:46px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1.2;
  white-space:nowrap;
  color:var(--gold-soft) !important;
  text-shadow:0 1px 8px rgba(6,14,22,.22);
}
.btn{
  border-radius:var(--radius-btn);border:1px solid transparent;padding:12px 18px;font-weight:700;cursor:pointer;
  font-size:13px;letter-spacing:.04em;
  transition:transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  box-shadow:0 8px 16px rgba(10,28,26,.08);
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(180deg, var(--brand-2) 0%, var(--brand) 100%);
  color:#fff;
  border-color:rgba(255,255,255,.08);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(12,43,39,.24);
}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.hero-cta .btn-primary{
  background:linear-gradient(180deg, rgba(26,96,88,.95) 0%, rgba(18,75,68,.95) 100%);
  border-color:#124b44;
  color:var(--gold-soft) !important;
}
.hero-cta .btn-primary:hover{
  background:linear-gradient(180deg, #165850 0%, #103f39 100%);
  border-color:#103f39;
}
.hero-cta .btn-ghost{
  background:rgba(20,75,68,.82);
  color:var(--gold-soft) !important;
  border-color:#1a5a52;
}
.hero-cta .btn-ghost:hover{
  background:rgba(17,65,59,.94);
  border-color:#114b44;
}
.hero-slider{
  position:relative;
  height:100%;
  min-height:inherit;
  background:transparent;
  isolation:isolate;
  overflow:hidden;
  border-left:none;
}
.hero-slider::after{
  content:none;
}
.hero-track{
  position:relative;
  width:100%;
  height:100%;
  z-index:0;
  background:transparent;
}
.hero-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  max-width:none;
  object-fit:contain;
  object-position:center center;
  background:transparent;
  opacity:0;
  transition:opacity .55s ease;
  filter:none;
  image-rendering:auto;
  padding:0;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  transform:translateZ(0);
}
@media (min-width:981px){
  .hero-slider img{
    transform:translateZ(0) scale(1.06);
    transform-origin:center center;
  }
}
.hero-slider img.active{opacity:1}
.hero-arrow{
  display:none;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(15,63,58,.2);
  background:rgba(255,255,255,.84);
  color:#123f3a;
  font-size:26px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:5;
  backdrop-filter:blur(4px);
  transition:.2s ease;
}
.hero-arrow:hover{background:#fff;box-shadow:0 8px 22px rgba(10,34,31,.18)}
.hero-arrow-prev{left:14px}
.hero-arrow-next{right:14px}
.hero-dots{
  display:none;
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:5;
}
.hero-dots span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(15,63,58,.25);
  border:1px solid rgba(15,63,58,.2);
  cursor:pointer;
  transition:.2s ease;
}
.hero-dots span.active{
  width:24px;
  border-radius:999px;
  background:var(--brand);
  border-color:var(--brand);
}
.section{padding:48px 0}
.section .container{position:relative}
main > .section + .section .container::before{
  content:"";
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  width:min(260px,45%);
  height:1px;
  background:linear-gradient(90deg, rgba(22,83,75,0), rgba(22,83,75,.42), rgba(22,83,75,0));
}
.section h2{
  margin:0 0 10px;
  font-size:36px;font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;color:#153f39;text-align:center;
  letter-spacing:.02em;
  line-height:1.12;
}
.section .lead{
  margin:0 auto 24px;text-align:center;color:var(--muted);max-width:660px;line-height:1.76;
}
.category-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;
}
#home-categories.home-categories-host{
  display:block !important;
}
.home-categories-carousel{
  display:block;
}
.home-categories-viewport{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.home-cat-nav{
  display:none;
}
.home-categories-quick{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.home-categories-scroller-wrap{
  position:relative;
}
.home-categories-scroller-wrap::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:24px;
  height:100%;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.92));
  border-radius:12px;
}
.home-categories-scroller{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:6px 6px 8px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.home-categories-scroller::-webkit-scrollbar{
  display:none;
}
.home-category-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #b8d1cc;
  background:linear-gradient(180deg, #f8fcfb 0%, #ecf6f3 100%);
  color:#114743;
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  box-shadow:0 6px 14px rgba(9,56,52,.08);
  transition:all .2s ease;
}
.home-category-chip:hover{
  background:linear-gradient(180deg, #eef7f4 0%, #e2f1ed 100%);
  border-color:#8eb8b0;
}
.home-category-chip.is-all{
  background:linear-gradient(180deg, #16554e 0%, #0f4640 100%);
  color:#fff;
  border-color:#0f4640;
}
@media (min-width:761px){
  .home-categories-carousel{
    display:grid;
    grid-template-columns:42px minmax(0,1fr) 42px;
    align-items:center;
    gap:10px;
  }
  .home-categories-viewport{
    display:flex;
    overflow-x:auto;
    overscroll-behavior-inline:contain;
    scroll-snap-type:x mandatory;
    gap:16px;
    padding:2px;
    scrollbar-width:none;
  }
  .home-categories-viewport::-webkit-scrollbar{
    display:none;
  }
  .home-categories-viewport .category-card{
    flex:0 0 calc((100% - 48px) / 3.5);
    min-width:0;
    scroll-snap-align:start;
  }
  #home-categories .category-card{
    background:#ffffff !important;
    border:none !important;
    box-shadow:none !important;
    border-radius:10px !important;
    outline:none !important;
    position:static;
    overflow:hidden;
  }
  #home-categories .category-card:hover{
    border:none !important;
    transform:none !important;
    box-shadow:none !important;
    outline:none !important;
  }
  #home-categories .category-card img{
    height:320px;
    width:100%;
    object-fit:cover;
    object-position:center;
    background:#ffffff !important;
    border:none !important;
    border-bottom:none !important;
    outline:none !important;
    padding:0 !important;
    opacity:1;
  }
  #home-categories .category-card .info{
    position:static;
    padding:10px 9px;
    text-align:center;
    background:transparent !important;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    border-top:none;
  }
  #home-categories .category-card h3{
    font-size:15px;
    margin:0 0 2px;
    font-weight:600;
    letter-spacing:0;
    line-height:1.25;
    color:#1a3c3a;
    text-shadow:none;
  }
  #home-categories .category-card p{
    margin:0;
    font-size:12px;
    font-weight:400;
    letter-spacing:0;
    color:var(--muted);
    text-shadow:none;
    line-height:1.35;
  }
  .home-cat-nav{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:999px;
    border:1px solid #bdd4cf;
    background:linear-gradient(180deg, #f8fcfb 0%, #ecf5f2 100%);
    color:#0f4a42;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
    transition:all .2s ease;
    box-shadow:0 6px 14px rgba(9,56,52,.12);
  }
  .home-cat-nav:hover{
    transform:translateY(-1px);
    border-color:#8cb8af;
    box-shadow:0 10px 18px rgba(9,56,52,.14);
  }
  .home-cat-nav:disabled{
    opacity:.45;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
  }
  .home-categories-scroller-wrap::after{
    display:none;
  }
  .home-categories-scroller-wrap{
    display:flex;
    justify-content:center;
  }
  .home-categories-scroller{
    overflow:visible;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    width:min(980px, 100%);
    margin:0 auto;
    gap:12px 14px;
    padding:8px 0 4px;
  }
  .home-category-chip{
    min-width:140px;
    min-height:40px;
    padding:0 16px;
    font-size:13px;
  }
}
@media (max-width:760px){
  .home-categories-carousel{
    display:block !important;
  }
  .home-categories-viewport{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:10px;
    padding:1px;
    scrollbar-width:none;
  }
  .home-categories-viewport::-webkit-scrollbar{
    display:none;
  }
  .home-categories-viewport .category-card{
    flex:0 0 67%;
    min-width:0;
    scroll-snap-align:start;
  }
  #home-categories .category-card img{
    height:210px;
  }
  .home-cat-nav{
    display:none !important;
  }
}
@media (max-width:560px){
  #home-categories .home-categories-viewport .category-card{
    flex:0 0 72%;
  }
  #home-categories .category-card img{
    height:190px;
  }
}
.category-card{
  background:var(--card);border:1px solid var(--border);border-radius:10px;overflow:hidden;transition:.22s;
  box-shadow:var(--shadow-soft);
}
.category-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card)}
.category-card img{
  height:190px;
  width:100%;
  object-fit:contain;
  object-position:center;
  background:#ffffff;
}
@media (min-width:981px){
  .category-grid{
    grid-template-columns:repeat(auto-fit,minmax(200px,230px));
    justify-content:center;
  }
  .category-card{
    border-radius:12px;
    box-shadow:0 8px 20px rgba(15,33,31,.08);
  }
  .category-card .info{
    padding:10px 10px 11px;
    text-align:center;
  }
  .category-card h3{font-size:16px;margin:0 0 3px}
  .category-card p{font-size:12px}
  .category-card img{
    height:260px;
    object-fit:contain;
    object-position:center;
    background:#ffffff;
    border-bottom:1px solid #e3ebe8;
  }
}
.category-card .info{padding:12px}
.category-card h3{margin:0 0 4px;font-size:18px;color:#1a3c3a}
.category-card p{margin:0;color:var(--muted);font-size:13px}
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}
.section-soft{background:linear-gradient(180deg, #f5f0e7 0%, #f2eee6 100%)}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.why-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px;
  transition:.22s;
  box-shadow:var(--shadow-soft);
}
.why-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card)}
.why-icon{
  width:46px;height:46px;border-radius:999px;background:#f1e3c8;
  display:grid;place-items:center;font-size:22px;margin-bottom:10px;
}
.why-card h3{margin:0 0 8px;color:#173f3b;font-size:18px}
.why-card p{margin:0;color:var(--muted);line-height:1.7;font-size:14px}
.insta-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
  text-align:center;
  box-shadow:var(--shadow-soft);
}
.map-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  box-shadow:var(--shadow-soft);
  display:grid;
  grid-template-columns:minmax(260px,380px) 1fr;
  gap:16px;
  align-items:stretch;
}
.map-box-head{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.map-box-head h2{
  margin:0;
  text-align:left;
}
.map-box-head .lead{
  margin:0;
  text-align:left;
  max-width:none;
}
.map-open-btn{
  width:max-content;
  min-width:198px;
  min-height:46px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  letter-spacing:.02em;
  margin-top:auto;
  border-radius:12px;
  box-shadow:0 10px 20px rgba(15,63,58,.18);
}
.map-open-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 24px rgba(15,63,58,.24);
}
@media (min-width:981px){
  .map-box{
    grid-template-columns:minmax(300px,420px) minmax(0,1.7fr);
    gap:22px;
    padding:24px;
  }
  .map-box-head{
    justify-content:center;
    padding-top:0;
    gap:12px;
  }
  .map-box-head .lead{
    margin-top:2px;
  }
  .map-open-btn{
    margin-top:8px;
    align-self:flex-start;
  }
  .map-frame-wrap{
    min-height:420px;
  }
  .map-frame-wrap iframe{
    min-height:420px;
  }
}
.map-frame-wrap{
  border:1px solid #d9e2e0;
  border-radius:12px;
  overflow:hidden;
  min-height:320px;
  box-shadow:0 8px 20px rgba(17,24,39,.08);
}
.map-frame-wrap iframe{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  display:block;
}
.shipping-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:26px;
  box-shadow:var(--shadow-soft);
}
.shipping-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.shipping-card{
  border:1px solid #d8e0d5;
  border-radius:12px;
  padding:14px;
  display:grid;
  grid-template-columns:66px 1fr auto;
  align-items:center;
  gap:12px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.shipping-flag{
  font-size:24px;line-height:1;
}
.shipping-flag-img{
  width:62px;
  height:42px;
  object-fit:cover;
  border-radius:4px;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  padding:0;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.shipping-info h3{
  margin:0;color:var(--text-strong);font-size:18px;
}
.shipping-info p{
  margin:2px 0 0;color:var(--muted);font-size:13px;
}
.shipping-card strong{
  color:var(--text-strong);
  font-size:16px;
  white-space:nowrap;
}
.insta-link-only{
  width:54px;height:54px;border-radius:999px;
  display:inline-grid;place-items:center;
  border:none;
  color:#fff;
  background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  text-decoration:none;
  transition:.2s ease;
}
.insta-link-only:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(214,36,159,.32);
}
.insta-link-only svg{width:24px;height:24px;display:block}
.social-pair-inline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.wa-link-only{
  width:54px;height:54px;border-radius:999px;
  display:inline-grid;place-items:center;
  border:none;
  color:#fff;
  background:linear-gradient(135deg,#1fa85a,#0f8f4c);
  text-decoration:none;
  transition:.2s ease;
}
.wa-link-only:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(15,143,76,.32);
}
.wa-link-only svg{width:24px;height:24px;display:block}
.gmail-link-only{
  width:54px;height:54px;border-radius:999px;
  display:inline-grid;place-items:center;
  border:none;
  color:#fff;
  background:linear-gradient(135deg,#c43b2f,#a72f26);
  text-decoration:none;
  transition:.2s ease;
}
.gmail-link-only:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(167,47,38,.32);
}
.gmail-link-only .gmail-icon{width:24px;height:24px;display:block;object-fit:contain}
.cta-strip{
  background:linear-gradient(135deg,#0f3f3a 0%, #1f6a62 55%, #2f877c 100%);
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(8,34,30,.24);
  padding:24px 24px;
  display:grid;
  grid-template-columns:1.3fr auto;
  gap:20px;
  align-items:center;
  color:#eef5f4;
}
.cta-kicker{
  margin:0 0 6px;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#cce5df;
  font-weight:700;
}
.cta-title{
  margin:0 0 8px;
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  font-size:38px;
  line-height:1.02;
  color:#fff;
}
.cta-text{
  margin:0;
  color:#d9ebe7;
  line-height:1.7;
}
.cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cta-btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.48);
  background:transparent;
}
.cta-btn-outline:hover{background:rgba(255,255,255,.12)}
.insta-float-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  z-index:1200;
  box-shadow:0 10px 28px rgba(0,0,0,.26);
  border:2px solid rgba(255,255,255,.88);
  background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  transition:transform .2s ease, box-shadow .2s ease;
}
.insta-float-btn:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 14px 30px rgba(214,36,159,.35);
}
.insta-float-btn svg{width:26px;height:26px;display:block}
.wa-float-btn{
  position:fixed;
  right:18px;
  bottom:88px;
  width:58px;
  height:58px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  z-index:1200;
  box-shadow:0 10px 28px rgba(0,0,0,.26);
  border:2px solid rgba(255,255,255,.88);
  background:linear-gradient(135deg,#1fa85a,#0f8f4c);
  transition:transform .2s ease, box-shadow .2s ease;
}
.wa-float-btn:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 14px 30px rgba(15,143,76,.35);
}
.wa-float-btn svg{width:26px;height:26px;display:block}
.gmail-float-btn{
  position:fixed;
  right:18px;
  bottom:158px;
  width:58px;
  height:58px;
  border-radius:999px;
  display:grid;
  place-items:center;
  text-decoration:none;
  z-index:1200;
  box-shadow:0 10px 28px rgba(0,0,0,.22);
  border:2px solid rgba(255,255,255,.9);
  background:#ffffff;
  transition:transform .2s ease, box-shadow .2s ease;
}
.gmail-float-btn:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 14px 30px rgba(31,48,62,.2);
}
.gmail-float-btn .gmail-icon{width:30px;height:30px;display:block;object-fit:contain}
.gmail-link{color:#c43b2f}
.gmail-link span{color:inherit}
.gmail-link .gmail-icon{display:block;object-fit:contain}
.product-card{
  background:var(--card);
  border:none;
  border-radius:4px;
  overflow:hidden;
  transition:.18s ease;
  box-shadow:none;
  display:flex;
  flex-direction:column;
  height:100%;
  width:100%;
  margin:0;
  min-width:0;
}
.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(17,24,39,.08);
}
.product-media{
  position:relative;
  height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#ffffff;
  border-bottom:none;
}
.product-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  background:transparent;
  padding:0;
  image-rendering:auto;
  cursor:pointer;
  transition:transform .28s ease;
}
.product-media:hover img{transform:scale(1.035)}
.product-badges{
  position:absolute;
  top:8px;
  left:8px;
  right:8px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:flex-start;
  pointer-events:none;
}
.badge-pill{
  display:inline-flex;
  align-items:center;
  min-height:21px;
  padding:2px 9px;
  border-radius:999px;
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.03em;
  box-shadow:0 6px 12px rgba(15,63,58,.22);
  backdrop-filter:blur(1px);
}
.badge-pill.best{background:#0f6a59}
.badge-pill.new{background:#2563eb}
.badge-pill.set{background:#7c3aed}
.badge-pill.stock.in{background:#16a34a}
.badge-pill.stock.out{background:#8a1221}
.product-card .meta{
  padding:7px 8px 8px;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:2px;
}
.product-card h3{
  margin:0;
  font-size:13px;
  line-height:1.25;
  color:#2e3a42;
  min-height:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  overflow-wrap:anywhere;
  text-align:center;
}
.product-card h3 .product-title-link{
  display:block;
  margin:0;
  padding:0;
  line-height:1.22;
}
.product-rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin:1px 0 0;
  line-height:1;
}
.product-rating .stars{
  color:#f59e0b;
  font-size:12px;
  letter-spacing:1px;
}
.product-rating .rating-value{
  font-size:11px;
  font-weight:700;
  color:#5c6873;
}
.product-benefit{
  margin:0;
  text-align:center;
  font-size:11px;
  font-weight:600;
  color:#23715f;
  line-height:1.2;
}
.product-trust-badges{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:4px;
  margin:1px 0 0;
}
.trust-pill{
  display:inline-flex;
  align-items:center;
  min-height:16px;
  padding:1px 6px;
  border-radius:999px;
  font-size:9px;
  font-weight:700;
  color:#124a43;
  background:#e8f4f1;
  border:1px solid #c8e3dd;
}
.product-trust-note{
  margin:1px 0 0;
  text-align:center;
  font-size:10px;
  font-weight:600;
  line-height:1.15;
  color:#5f6b72;
}
.price{
  font-weight:800;
  color:#1f2f3a !important;
  font-size:17px;
  letter-spacing:.01em;
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  min-height:22px;
  margin:0;
  justify-content:center;
}
@media (max-width:760px){
  .product-card{
    height:auto !important;
  }
  .product-card .meta{
    gap:0 !important;
    padding-top:6px !important;
    padding-bottom:7px !important;
  }
  .product-card h3{
    margin:0 !important;
    line-height:1.18 !important;
  }
  .product-rating{
    margin-top:1px !important;
    gap:4px !important;
  }
  .product-badges{
    top:6px !important;
    left:6px !important;
    right:6px !important;
    gap:4px !important;
  }
  .badge-pill{
    min-height:18px !important;
    padding:1px 7px !important;
    font-size:9px !important;
  }
  .product-rating .stars{font-size:11px !important}
  .product-rating .rating-value{font-size:10px !important}
  .product-benefit{
    font-size:10px !important;
    line-height:1.15 !important;
  }
  .product-trust-badges{
    gap:3px !important;
    margin-top:1px !important;
  }
  .trust-pill{
    min-height:15px !important;
    padding:1px 5px !important;
    font-size:8px !important;
  }
  .product-trust-note{
    font-size:9px !important;
    line-height:1.1 !important;
    margin-top:1px !important;
  }
  .product-card h3 .product-title-link{
    margin:0 !important;
    line-height:1.16 !important;
  }
  .price{
    margin-top:1px !important;
    min-height:0 !important;
    line-height:1.05 !important;
  }
  .product-actions{
    margin-top:6px !important;
    padding-top:6px !important;
  }
}
.price-current{font-weight:800;color:#1f2f3a !important}
.old{
  font-size:12px;
  color:#7B8791 !important;
  text-decoration:line-through;
  text-decoration-thickness:1px;
  text-decoration-color:#9aa5ad;
  margin-left:0;
  font-weight:600;
}
.discount-pill{
  display:inline-flex;
  align-items:center;
  height:20px;
  padding:0 8px;
  border-radius:999px;
  background:#C62828 !important;
  color:#FFFFFF !important;
  font-size:11px;
  font-weight:800;
  letter-spacing:.02em;
}
.product-actions{
  display:grid;
  grid-template-columns:38px 1fr;
  grid-auto-rows:36px;
  gap:6px;
  margin-top:auto;
  padding-top:6px;
  border-top:none;
}
@media (min-width:761px){
  .product-card h3{
    font-size:15px;
    line-height:1.3;
  }
  .product-rating .stars{
    font-size:14px;
  }
  .product-rating .rating-value{
    font-size:12px;
  }
  .product-benefit{
    font-size:12px;
    line-height:1.25;
  }
  .trust-pill{
    font-size:10px;
    min-height:18px;
    padding:2px 7px;
  }
  .product-trust-note{
    font-size:11px;
    line-height:1.2;
  }
  .price{
    font-size:20px;
    gap:8px;
  }
  .old{
    font-size:13px;
    text-decoration-thickness:.8px;
  }
  .discount-pill{
    height:22px;
    font-size:12px;
    padding:0 9px;
  }
}
.small-btn{
  flex:1;border:none;background:#fff;border-radius:6px;height:36px;font-size:12px;cursor:pointer;
}
.small-btn.primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.small-btn.primary .add-cart-icon{
  font-size:16px;
  line-height:1;
}
.small-btn.primary{
  background:#f5f7f9;
  color:#33424d;
  border-color:transparent;
  font-weight:700;
}
.small-btn.primary:hover{
  background:#eef2f5;
  border-color:#cfd7de;
}
.small-btn.buy-now-btn{
  border-color:transparent;
  color:#fff;
  font-weight:800;
  background:#0f3f3a;
  box-shadow:none;
}
.small-btn.buy-now-btn:hover{
  filter:brightness(1.02);
}
.product-actions .wish-btn{
  grid-column:1;
  grid-row:1;
}
.product-actions .small-btn.primary{
  grid-column:2;
  grid-row:1;
}
.product-actions .small-btn.buy-now-btn{
  grid-column:1 / -1;
  grid-row:2;
}
.wish-btn{
  width:38px;height:36px;border-radius:6px;border:none;background:#fff;color:#a33f58;
  display:grid;place-items:center;cursor:pointer;font-size:20px;transition:.2s ease;
}
.wish-btn:hover{transform:translateY(-1px);box-shadow:0 6px 14px rgba(209,66,90,.2)}
.wish-btn.active{background:#d1425a;color:#fff;border-color:#d1425a}
.panel{
  background:#fff;border:1px solid #ddd6c9;border-radius:10px;padding:18px;
  box-shadow:var(--shadow-soft);
}
.brand-box{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  min-height:440px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.15);
}
.brand-box-bg{
  position:absolute;inset:0;
  background:url("../placeholders/brand-clean.svg") center/cover no-repeat;
  transform:scale(1.04);
}
.brand-box::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,16,18,.08),rgba(10,16,18,.14));
}
.brand-box-content{
  position:relative;z-index:2;text-align:center;color:#fff;
  padding:24px;
}
.brand-box-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:54px;line-height:1.02;letter-spacing:.01em;margin:0 0 6px;
}
.brand-box-sub{
  font-size:22px;letter-spacing:.18em;text-transform:uppercase;opacity:.9;margin:0 0 18px;
}
.brand-box-icons{display:flex;justify-content:center;gap:10px;margin-bottom:16px}
.brand-circle{
  width:56px;height:56px;border-radius:999px;background:rgba(255,255,255,.92);
  display:grid;place-items:center;color:#173f3b;font-size:24px;font-weight:700;
}
.brand-box-location{font-size:20px;margin:0 0 4px}
.brand-box-tagline{font-size:22px;letter-spacing:.08em;margin:0}
.split{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.footer{
  margin-top:40px;background:#102f2e;color:#d7dfdd;
  border-top:1px solid rgba(214,188,138,.2);
}
.footer .logo{
  margin-top:8px;
}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:20px;padding:42px 0;
}
.footer h4{margin:0 0 12px;color:#f3f6f5}
.footer p,.footer li{font-size:14px;color:#c7d0ce;line-height:1.7}
.footer ul{list-style:none;padding:0;margin:0}
.social-ig{
  display:inline-flex;align-items:center;gap:8px;color:#c7d0ce;text-decoration:none;
  font-weight:500;transition:color .2s ease;
}
.social-ig:hover{color:#f3f6f5}
.social-ig svg{width:18px;height:18px;display:block}
.social-wa{
  display:inline-flex;align-items:center;gap:8px;color:#c7d0ce;text-decoration:none;
  font-weight:500;transition:color .2s ease;
}
.social-wa:hover{color:#f3f6f5}
.social-wa svg{width:18px;height:18px;display:block}
.social-gmail{
  display:inline-flex;align-items:center;gap:8px;color:#c7d0ce;text-decoration:none;
  font-weight:500;transition:color .2s ease;
}
.social-gmail:hover{color:#f3f6f5}
.social-gmail .gmail-icon{width:18px;height:18px;display:block;object-fit:contain}
.gmail-inline-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:inherit;
  text-decoration:none;
}
.gmail-inline-link .gmail-icon{
  width:18px;
  height:18px;
  display:block;
  object-fit:contain;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);padding:12px 0;color:#b6c2bf;font-size:13px;text-align:center;
}
.page-head{padding:30px 0}
.page-head h1{margin:0;font-size:42px;font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;color:#173f3b}
.filters{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:10px;margin-bottom:14px}
.shop-filters{
  grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 1fr auto;
  align-items:center;
  background:#fff;
  border:1px solid #d8e1e6;
  border-radius:12px;
  padding:10px;
  margin-bottom:18px;
}
.shop-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
}
.chip-btn{
  height:36px;
  border-radius:999px;
  border:1px solid #d2dde4;
  background:#fff;
  color:#1f4649;
  padding:0 14px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}
.chip-btn:hover{transform:translateY(-1px);box-shadow:0 8px 16px rgba(0,0,0,.08)}
.chip-btn.active{
  background:#0f3f3a;
  border-color:#0f3f3a;
  color:#fff;
}
.chip-btn.chip-clear{
  border-style:dashed;
  color:#5a676c;
}
.shop-toggle{
  height:40px;
  border:1px solid #d5dde2;
  border-radius:10px;
  background:#f7fafc;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 12px;
  font-size:13px;
  font-weight:700;
  color:#26474a;
  white-space:nowrap;
}
.shop-toggle input{width:16px;height:16px}
#shop-reset-filters{
  height:40px;
  min-width:122px;
  border-radius:10px;
  border-color:#cfd8de;
  font-weight:700;
}
input,select,textarea{
  width:100%;border:1px solid var(--border);border-radius:8px;height:40px;padding:0 12px;background:#fff;color:#1f2a2c;
}
textarea{height:auto;padding:10px}
.cart-layout,.checkout-layout{display:grid;grid-template-columns:1.4fr .9fr;gap:16px}
.checkout-mobile-sticky{display:none}
.checkout-trust-box{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 10px;
}
.cart-item{
  display:grid;grid-template-columns:28px 90px 1fr auto;gap:12px;align-items:center;padding:10px 0;border-bottom:1px solid var(--border);
}
.cart-select-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 8px;
  font-size:12px;
  font-weight:700;
  color:#164a45;
}
.cart-select-toggle--inline{
  margin:0;
  justify-content:center;
}
.cart-select-toggle input{
  width:20px;
  height:20px;
  accent-color:#146b64;
}
.cart-select-label{
  font-size:12px;
  font-weight:700;
  color:#164a45;
  margin:0 0 6px;
}
.cart-item img{
  width:90px;
  height:90px;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
  border:1px solid #e1dacf;
  padding:6px;
}
.cart-item-controls{
  display:flex;
  gap:6px;
  margin-top:8px;
  align-items:center;
  flex-wrap:wrap;
}
.cart-item .cart-qty-btn,
.cart-item .cart-qty-value,
.cart-item .cart-remove-btn{
  border:1px solid #cfd7de;
  background:#ffffff;
  color:#1f2f3a;
  border-radius:8px;
  min-height:34px;
  font-weight:700;
}
.cart-item .cart-qty-btn{
  min-width:34px;
  width:34px;
  padding:0;
  font-size:18px;
  line-height:1;
}
.cart-item .cart-qty-value{
  min-width:44px;
  padding:0 10px;
  cursor:default;
  opacity:1;
}
.cart-item .cart-remove-btn{
  padding:0 12px;
}
.cart-item .cart-qty-btn:hover:not(:disabled),
.cart-item .cart-remove-btn:hover:not(:disabled){
  background:#f3f7fa;
}
.btn.disabled{
  opacity:.55;
  pointer-events:none;
}
.badge{display:inline-block;font-size:11px;background:#e8f2f1;color:#164a45;padding:4px 8px;border-radius:999px}
.order-success-notice{
  position:fixed;
  inset:0;
  z-index:2000;
  display:grid;
  place-items:center;
  background:rgba(10,24,30,.28);
  backdrop-filter:blur(2px);
}
.order-success-card{
  width:min(420px, calc(100% - 24px));
  background:#fff;
  border:1px solid #d7e3e0;
  border-radius:16px;
  box-shadow:0 16px 38px rgba(10,35,42,.18);
  padding:22px 18px;
  text-align:center;
}
.order-success-icon{
  width:54px;
  height:54px;
  margin:0 auto 10px;
  border-radius:999px;
  background:linear-gradient(180deg,#2f9e83,#1c7f66);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
  font-weight:800;
}
.contact-success-icon{
  background:linear-gradient(180deg,#2f8fa0,#1b6f7e);
}
.order-success-card h3{
  margin:0 0 8px;
  color:#14343a;
}
.order-success-card p{
  margin:0;
  color:#4b6367;
}
.order-code-line{
  margin-top:10px !important;
  font-size:14px;
  color:#173d43 !important;
}
.order-track-btn{
  margin-top:12px;
}
.track-order-form-grid{
  grid-template-columns:minmax(220px,1.35fr) minmax(150px,1fr) minmax(170px,1fr) auto;
  gap:12px;
  align-items:end;
  background:#f8fbfb;
  border:1px solid #dbe6e4;
  border-radius:14px;
  padding:12px;
}
#track-order-form input{
  height:46px;
  border-radius:10px;
  border-color:#ced9d8;
  font-size:15px;
}
#track-order-form input:focus{
  border-color:#1f7a6e;
  box-shadow:0 0 0 3px rgba(31,122,110,.16);
  outline:none;
}
#track-order-submit{
  height:46px;
  border-radius:10px;
  padding:0 18px;
  font-weight:800;
  white-space:nowrap;
}
.track-order-card{
  border:1px solid #dce7e4;
}
.track-order-card--error{
  border-color:#e6c3ca;
  background:#fff7f8;
}
.track-order-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.track-order-head h3{
  margin:0;
  color:#15363c;
}
.track-order-meta{
  margin:0 0 8px;
  color:#486167;
}
.track-order-meta-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin:0 0 10px;
}
.track-order-meta-chip{
  border:1px solid #d8e3e6;
  background:#fbfdfd;
  border-radius:10px;
  padding:8px 10px;
  display:grid;
  gap:3px;
}
.track-order-meta-chip .label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#5f7479;
  font-weight:700;
}
.track-order-meta-chip strong{
  color:#173b40;
  font-size:13px;
  line-height:1.35;
  word-break:break-word;
}
.track-status-note{
  margin:0 0 8px;
  padding:8px 10px;
  border-radius:10px;
  background:#f1f7f6;
  border:1px solid #d8e8e4;
  color:#23454a;
  font-size:14px;
  line-height:1.5;
}
.track-order-items{
  margin:0;
  padding-left:18px;
  color:#25464b;
}
.track-order-products{
  display:grid;
  gap:8px;
}
.track-order-product-item{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:10px;
  align-items:center;
  border:1px solid #d7e3e6;
  background:#fbfdfd;
  border-radius:10px;
  padding:7px;
  text-decoration:none;
  color:#1d4045;
}
.track-order-product-item img{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid #d5dde0;
  background:#fff;
}
.track-order-product-info{
  display:grid;
  gap:4px;
  min-width:0;
}
.track-order-product-info strong{
  font-size:14px;
  line-height:1.35;
  color:#15383e;
  overflow-wrap:anywhere;
}
.track-order-product-info span{
  font-size:12px;
  color:#5e7277;
  font-weight:700;
}
.track-order-product-item:hover{
  background:#f4f9f8;
  border-color:#c6d9dc;
}
.track-status-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}
.track-status-badge.received{
  background:#e9f8f4;
  color:#0f6b52;
}
.track-status-badge.shipping{
  background:#eaf3ff;
  color:#1f5ea7;
}
.track-status-badge.done{
  background:#eaf7eb;
  color:#1f7f39;
}
.track-status-badge.cancelled{
  background:#fff0f3;
  color:#9a1f39;
}
.admin-auth-screen{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  background:radial-gradient(1200px 500px at 20% -10%, #e6f2ef 0%, transparent 60%), linear-gradient(180deg, #f6fbfa 0%, #edf2f5 100%);
}
.admin-auth-card{
  width:min(460px, 100%);
  background:#fff;
  border:1px solid #d6dde3;
  border-radius:14px;
  padding:20px;
  box-shadow:0 12px 28px rgba(19,45,51,.12);
}
.admin-auth-card h1{
  margin:0 0 8px;
  color:#16353a;
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  letter-spacing:.04em;
}
.admin-auth-card p{
  margin:0 0 14px;
  color:#4e636a;
}
.admin-auth-form{
  display:grid;
  gap:10px;
}
.admin-auth-form label{
  display:grid;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:#2a4c51;
}
.admin-auth-form input{
  height:42px;
  border:1px solid #c8d6dd;
  border-radius:10px;
  padding:0 12px;
  font-size:15px;
}
.admin-pass-wrap{
  position:relative;
}
.admin-pass-wrap input{
  width:100%;
  padding-right:44px;
}
.admin-pass-toggle{
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border:1px solid #c8d6dd;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
}
.admin-pass-toggle:hover{
  border-color:#2f7f74;
}
.admin-auth-form input:focus{
  outline:none;
  border-color:#2f7f74;
  box-shadow:0 0 0 3px rgba(47,127,116,.15);
}
.admin-auth-error{
  margin:0;
  min-height:18px;
  color:#a5213f;
  font-size:13px;
  font-weight:700;
}
.admin-shell{display:grid;grid-template-columns:250px 1fr;min-height:100vh}
.admin-shell--locked{display:none}
.admin-side{
  background:#112f35;color:#d9e4e2;padding:18px 12px;border-right:1px solid #2a4a4f;
}
.admin-side h2{margin:0 0 18px;font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;letter-spacing:.08em}
.admin-side a{
  display:flex;
  align-items:center;
  min-height:38px;
  padding:0 12px;
  border-radius:9px;
  color:#d9e4e2;
  margin-bottom:6px;
  font-size:13px;
  font-weight:700;
  line-height:1;
  letter-spacing:.02em;
  white-space:nowrap;
  border:1px solid transparent;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease;
}
.admin-side a.active,.admin-side a:hover{
  background:#1a4e53;
  border-color:#2f6f74;
  color:#fff;
}
.admin-main{background:linear-gradient(180deg,#edf4f2 0%,#e8efef 100%);padding:18px}
.admin-page{display:none}
.admin-page.active{display:block}
.admin-top{
  background:#fff;border:1px solid #d2ddd9;border-radius:10px;padding:12px 14px;display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;
}
.kpi{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px}
.kpi .card{background:#fff;border:1px solid #d2ddd9;border-radius:10px;padding:14px}
.admin-product-panel{
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfb 100%);
  border:1px solid #cfdadf;
}
.admin-product-lead{
  margin:0 0 12px;
  color:#4f646d;
  font-size:14px;
  line-height:1.5;
}
.admin-product-form{
  border:1px solid #dbe4e8;
  border-radius:12px;
  padding:14px;
  background:#fff;
}
.admin-product-toggles{
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.admin-product-toggles label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#204247;
  font-weight:600;
}
.admin-upload-wrap{margin-top:10px}
.admin-upload-box{
  display:block;
  cursor:pointer;
  padding:12px;
  border:1px dashed #9cb2bb;
  border-radius:10px;
  background:#f4f8fa;
  color:#12353b;
  font-weight:700;
}
.admin-upload-box input{
  margin-top:8px;
  width:100%;
}
.admin-product-submit{
  margin-top:12px;
  background:linear-gradient(135deg,#0f3f3a,#1e5b55);
  border-color:#0f3f3a;
  color:#fff;
}
.admin-product-submit:hover{
  filter:brightness(1.03);
}
.admin-actions-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.admin-list-controls{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}
.admin-row-actions{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  align-items:center;
}
.admin-status-actions{
  display:flex;
  gap:6px;
  align-items:center;
  flex-wrap:wrap;
}
.table{
  width:100%;border-collapse:collapse;font-size:14px;background:#fff;border:1px solid #d6dde3;border-radius:10px;overflow:hidden;
}
.table th,.table td{padding:10px;border-bottom:1px solid #e0e8e4;text-align:left}
.table th{font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:#556964;background:#f3f8f6}
.table tr:last-child td{border-bottom:none}
.load-more-wrap{display:flex;justify-content:center;margin-top:16px}
.load-more-btn{
  background:#fff;
  color:#173f3b;
  border:1px solid #c8d2da;
}
.load-more-btn:hover{border-color:#98a7b3;background:#f8fbff}
main .load-more-btn{
  border-radius:999px;
  min-height:42px;
  padding:0 18px;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid #bcd2ca;
  background:#eef7f4;
  color:#124640;
  box-shadow:none;
}
main .load-more-btn:hover{
  border-color:#8eb6aa;
  background:#e3f1ec;
  transform:translateY(-1px);
}
.skeleton-card{
  border:1px solid #ddd8cf;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.skeleton-media{
  height:360px;
  background:linear-gradient(90deg,#f5f1ea 20%, #ece6dc 40%, #f5f1ea 60%);
  background-size:220% 100%;
  animation:skeletonShimmer 1.3s linear infinite;
}
.skeleton-body{padding:12px 13px 12px}
.skeleton-line{
  height:12px;
  border-radius:999px;
  background:linear-gradient(90deg,#f0ece5 20%, #e7e1d8 40%, #f0ece5 60%);
  background-size:220% 100%;
  animation:skeletonShimmer 1.3s linear infinite;
  margin-bottom:8px;
}
.skeleton-line.w80{width:80%}
.skeleton-line.w52{width:52%}
.skeleton-actions{display:grid;grid-template-columns:38px 1fr 1fr;gap:8px;margin-top:10px}
.skeleton-btn{
  height:39px;
  border-radius:8px;
  background:linear-gradient(90deg,#f0ece5 20%, #e7e1d8 40%, #f0ece5 60%);
  background-size:220% 100%;
  animation:skeletonShimmer 1.3s linear infinite;
}
@keyframes skeletonShimmer{
  0%{background-position:180% 0}
  100%{background-position:-20% 0}
}
.order-products-list{
  display:grid;
  gap:4px;
  line-height:1.35;
  min-width:0;
  max-width:100%;
}
.order-photos-grid{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  min-width:0;
  max-width:100%;
}
.order-photo-thumb{
  width:72px;
  height:72px;
  border-radius:8px;
  object-fit:contain;
  border:1px solid #d6dde3;
  background:#fff;
  padding:4px;
  transition:transform .15s ease, box-shadow .15s ease;
}
.product-detail-image{
  width:100%;
  height:auto;
  max-height:min(72vh,640px);
  object-fit:contain;
  object-position:center top;
  border-radius:10px;
  border:1px solid #e3ded5;
  background:#fff;
  padding:0;
}
.product-media-link,.product-title-link{display:block;color:inherit;text-decoration:none}
.product-gallery-thumbs{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(72px,1fr));
  gap:8px;
}
.product-gallery-thumbs button{
  border:1px solid #ddd8cf;
  background:#fff;
  border-radius:8px;
  padding:0;
  overflow:hidden;
  cursor:pointer;
}
.product-gallery-thumbs button.active{
  border-color:#0f3f3a;
  box-shadow:0 0 0 2px rgba(15,63,58,.16);
}
.product-gallery-thumbs img{
  width:100%;
  height:72px;
  object-fit:cover;
}
.product-detail-actions{
  margin-top:16px;
  display:flex;
  align-items:center;
}
.product-detail-cta{
  width:100%;
  min-height:50px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:0 10px 24px rgba(15,63,58,.22);
}
.product-detail-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(15,63,58,.28);
}
.order-photo-thumb:hover{transform:scale(1.04);box-shadow:0 6px 16px rgba(0,0,0,.18)}
.hidden{display:none}
.reveal-on-scroll{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .58s ease, transform .58s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}
.reveal-on-scroll.is-inview{
  opacity:1;
  transform:none;
}
@media (max-width:1280px){
  .container{max-width:none}
  .hero-copy h1{font-size:46px}
  .section h2{font-size:32px}
}
@media (min-width:1500px){
  .category-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
  .product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .why-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width:980px){
  .mobile-menu-toggle{display:inline-flex}
  .admin-side{
    scrollbar-width:thin;
  }
  .admin-side a{
    min-height:34px !important;
    height:34px !important;
    padding:0 11px !important;
    margin:0 !important;
    border-radius:999px !important;
    font-size:11px !important;
    font-weight:700 !important;
    line-height:1 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-sizing:border-box !important;
    white-space:nowrap !important;
    flex:0 0 auto !important;
    border:1px solid rgba(255,255,255,.18) !important;
    background:#152b36 !important;
    color:#deebf1 !important;
  }
  .admin-side a.active{
    background:#1f4451 !important;
    border-color:#4f8ea1 !important;
    color:#ffffff !important;
  }
  .admin-actions-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
  }
  .admin-list-controls{
    display:grid;
    grid-template-columns:1fr auto;
    gap:6px;
    align-items:center;
  }
  .admin-list-controls .badge{
    justify-self:start;
  }
  .admin-row-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
  }
  .admin-status-actions{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:6px !important;
    align-items:center;
  }
  .admin-status-actions select{
    grid-column:1 / -1;
  }
  .header-inner{height:68px;gap:10px}
  .logo strong{font-size:26px;letter-spacing:.12em}
  .logo span{font-size:9px;letter-spacing:.2em}
  .nav{display:none}
  .header-actions input[name="q"]{width:140px;height:38px !important}
  .hero{padding:16px 0 30px}
  .hero-grid{grid-template-columns:1fr;min-height:unset}
  .hero-copy{padding:34px 24px;max-width:none;margin-left:0}
  .hero-copy h1{font-size:38px}
  .hero-slider{
    min-height:420px;
    border-left:none;
    border-top:none;
  }
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .why-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split,.cart-layout,.checkout-layout{grid-template-columns:1fr}
  .filters{grid-template-columns:1fr 1fr}
  .shop-filters{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-strip{grid-template-columns:1fr;padding:20px}
  .cta-title{font-size:34px}
  .cta-actions{justify-content:flex-start}
  .admin-shell{grid-template-columns:1fr}
  .admin-side{position:sticky;top:0;z-index:20;padding:10px 10px;display:flex;gap:8px;overflow-x:auto;white-space:nowrap}
  .admin-side h2{display:none}
  .admin-side a{display:inline-block;margin:0;padding:8px 10px}
}
@media (max-width:1100px){
  .hero-grid{grid-template-columns:1fr}
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .why-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .filters{grid-template-columns:1fr 1fr}
  .shop-filters{grid-template-columns:1fr 1fr}
  .split,.cart-layout,.checkout-layout{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .map-box{grid-template-columns:1fr}
  .map-open-btn{width:100%;min-width:0}
}
@media (max-width:760px){
  body{overflow-x:hidden}
  .header{
    position:static;
    top:auto;
  }
  .header-search-row{display:block}
  .mobile-nav-overlay{
    z-index:2280;
    background:rgba(4,14,20,.66);
    backdrop-filter:blur(2px);
  }
  .mobile-nav-drawer{
    width:100vw;
    max-width:100vw;
    z-index:2290;
    padding:72px 14px 16px;
    border-right:none;
    border-radius:0;
    background:#0f2f33;
    isolation:isolate;
    box-shadow:0 16px 34px rgba(6,20,24,.32);
  }
  .mobile-nav-drawer::before{
    content:"";
    position:absolute;
    inset:0;
    background:#0f2f33;
    z-index:-1;
  }
  .mobile-nav-head{
    top:12px;
    right:12px;
  }
  .mobile-nav-link{
    min-height:44px;
    margin-bottom:6px;
    background:rgba(255,255,255,.04);
    border-color:rgba(255,255,255,.08);
    font-size:13px;
  }
  body.mobile-nav-open .header-search-row{
    display:none !important;
  }
  body.mobile-nav-open .insta-float-btn,
  body.mobile-nav-open .wa-float-btn,
  body.mobile-nav-open .gmail-float-btn{
    display:none !important;
  }
  body.mobile-nav-open .topbar,
  body.mobile-nav-open main,
  body.mobile-nav-open footer{
    visibility:hidden;
  }
  .header-inner{
    height:66px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    column-gap:8px;
  }
  .container{padding:0 14px}
  .section{padding:30px 0}
  .section .lead{margin:0 auto 16px}
  .hero-copy{padding:30px 18px}
  .hero-copy h1{font-size:36px}
  .hero-copy p{font-size:14px;line-height:1.6}
  .hero-slider{
    width:96% !important;
    max-width:96% !important;
    margin:0 auto !important;
    border-radius:14px 14px 0 0 !important;
    overflow:hidden !important;
  }
  .hero-track{
    width:100% !important;
  }
  .hero-slider img{
    width:100% !important;
    left:0 !important;
    right:0 !important;
    object-fit:cover !important;
    object-position:center center !important;
    border-radius:14px 14px 0 0 !important;
    transform:translateZ(0) !important;
  }
  .hero-cta{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }
  #i18n-hero-btn-products{order:1}
  #i18n-hero-btn-offers{order:2}
  #i18n-hero-btn-categories{order:3}
  .hero-cta .btn{
    width:100%;
    min-width:0;
    min-height:46px;
    font-size:13px;
    letter-spacing:.03em;
  }
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .why-grid{grid-template-columns:1fr;gap:12px}
  .filters{grid-template-columns:1fr}
  .track-order-form-grid{grid-template-columns:1fr}
  .track-order-head{flex-direction:column;align-items:flex-start}
  .track-order-meta-grid{grid-template-columns:1fr}
  .shop-filters{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .admin-main{padding:10px}
  .admin-side{
    position:sticky;
    top:0;
    z-index:30;
    background:#0f2029;
    border-right:none;
    border-bottom:1px solid #253441;
    padding:8px 8px;
    gap:6px;
    scrollbar-width:thin;
  }
  .admin-side a{
    border:1px solid rgba(255,255,255,.1);
    border-radius:999px;
    font-size:12px;
    padding:7px 10px;
    line-height:1.2;
  }
  .admin-main .panel{padding:12px;border-radius:10px}
  .admin-main .btn{
    min-height:36px;
    height:36px;
    padding:0 10px;
    font-size:12px;
  }
  .admin-main .small-btn{
    min-height:34px;
    height:34px;
    padding:0 9px;
    font-size:12px;
    border-radius:8px;
  }
  .admin-top{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    padding:10px 12px;
  }
  .kpi{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .kpi .card{padding:10px}
  .kpi .card h3{font-size:20px;margin:6px 0 0}
  .admin-main .filters{grid-template-columns:1fr}
  .admin-main .table{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    white-space:nowrap;
  }
  .admin-main .table thead,.admin-main .table tbody,.admin-main .table tr{white-space:nowrap}
  .admin-main .table th,.admin-main .table td{font-size:12px;padding:8px}
  .load-more-wrap{margin-top:10px}
  .admin-main .table.admin-table-mobile{
    border:none;
    background:transparent;
    white-space:normal;
    overflow:visible;
  }
  .admin-main .table.admin-table-mobile thead{display:none}
  .admin-main .table.admin-table-mobile tbody{
    display:grid;
    gap:10px;
  }
  .admin-main .table.admin-table-mobile tr{
    display:block;
    background:#fff;
    border:1px solid #d6dde3;
    border-radius:10px;
    padding:8px 10px;
  }
  .admin-main .table.admin-table-mobile td{
    display:grid;
    grid-template-columns:92px 1fr;
    gap:8px;
    align-items:start;
    white-space:normal;
    word-break:break-word;
    border-bottom:1px dashed #e8edf2;
    padding:7px 0;
  }
  .admin-main .table.admin-table-mobile td[data-label="Produktet"],
  .admin-main .table.admin-table-mobile td[data-label="Fotot"],
  .admin-main .table.admin-table-mobile td[data-label="Statusi"]{
    grid-template-columns:1fr;
    gap:6px;
  }
  .admin-main .table.admin-table-mobile td[data-label="Produktet"]::before,
  .admin-main .table.admin-table-mobile td[data-label="Fotot"]::before,
  .admin-main .table.admin-table-mobile td[data-label="Statusi"]::before{
    margin-bottom:2px;
  }
  .admin-main .table.admin-table-mobile td:last-child{border-bottom:none}
  .admin-main .table.admin-table-mobile td::before{
    content:attr(data-label);
    color:#4b5c68;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.04em;
    font-weight:700;
  }
  .admin-main .table.admin-table-mobile td > *{
    min-width:0;
    max-width:100%;
  }
  .admin-main .table.admin-table-mobile .order-products-list{
    min-width:0;
    max-width:100%;
  }
  .admin-main .table.admin-table-mobile .order-photos-grid{
    gap:6px;
    min-width:0;
    max-width:100%;
  }
  .admin-main .table.admin-table-mobile .order-photo-thumb{
    width:56px;
    height:56px;
    padding:3px;
  }
  .admin-main .table.admin-table-mobile select.small-btn{
    width:100%;
    min-width:0 !important;
  }
  .admin-main .table.admin-table-mobile td[data-label="Statusi"] > div{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:6px !important;
  }
  .admin-main .table.admin-table-mobile td[data-label="Statusi"] > div select{
    grid-column:1 / -1;
  }
  .brand-box{min-height:340px}
  .brand-box-title{font-size:40px}
  .brand-box-sub{font-size:16px}
  .brand-box-location{font-size:17px}
  .brand-box-tagline{font-size:16px}
  .shipping-grid{grid-template-columns:1fr}
  .map-box{padding:14px}
  .map-frame-wrap,
  .map-frame-wrap iframe{min-height:260px}
  .cart-btn{width:36px !important;height:36px !important;font-size:17px !important}
  .icon-btn{width:36px !important;height:36px !important;font-size:18px !important}
  .header-track-shortcut{
    width:36px;
    min-width:36px;
    height:36px;
    padding:0;
    justify-content:center;
  }
  .header-track-shortcut .track-shortcut-text{display:none}
  .header-track-shortcut .track-shortcut-icon{font-size:17px}
  .header-actions{gap:6px;flex-wrap:nowrap;justify-content:flex-end}
  .header-actions form{display:none}
  .search-suggest{width:min(92vw,420px);left:auto;right:0;max-height:52vh}
  .header-search-row .container{padding-top:7px;padding-bottom:8px}
  .header-search-slot{width:100%}
  .header-search-form{width:100%}
  .header-search-form input[name="q"]{height:38px !important}
  .header-search-form .search-suggest{width:100%;left:0;right:0}
  .hero-slider{min-height:300px}
  .hero-arrow{width:34px;height:34px;font-size:22px}
  #home-categories{
    display:block;
  }
  .home-categories-quick{justify-content:flex-start}
  .home-category-chip{
    min-height:36px;
    font-size:12px;
    padding:0 12px;
  }
  .product-media{height:220px}
  .product-card .meta{padding:8px 9px}
  .product-card h3{font-size:15px;min-height:0}
  .price{font-size:17px}
  .category-card{
    border:1px solid #e2ebe9;
    border-radius:10px;
    box-shadow:none;
    overflow:hidden;
  }
  .category-card:hover{
    transform:none;
    box-shadow:none;
  }
  .category-card img{
    height:185px;
    object-fit:cover;
    object-position:center;
    background:#ffffff;
  }
  .category-card .info{
    padding:10px 9px;
    text-align:center;
  }
  .category-card h3{
    margin:0 0 2px;
    font-size:15px;
    line-height:1.25;
  }
  .category-card p{
    margin:0;
    font-size:12px;
    line-height:1.35;
  }
  .panel{padding:14px}
  .table{font-size:13px}
  .order-photos-grid{min-width:220px;max-width:320px}
  .order-photo-thumb{width:64px;height:64px}
  .search-suggest-item{grid-template-columns:48px 1fr auto;padding:7px;gap:8px}
  .search-suggest-item img{width:48px;height:48px}
  .search-suggest-title{font-size:13px}
  .search-suggest-sub{font-size:11px}
  .track-order-product-item{
    grid-template-columns:64px 1fr;
    gap:8px;
    padding:6px;
  }
  .track-order-product-item img{
    width:64px;
    height:64px;
  }
  .track-order-product-info strong{
    font-size:13px;
  }
}

@media (max-width:560px){
  .admin-side a{
    min-height:32px !important;
    height:32px !important;
    padding:0 10px !important;
    border-radius:999px !important;
    font-size:10px !important;
    font-weight:700 !important;
  }
  .admin-actions-row,
  .admin-row-actions{
    grid-template-columns:1fr;
  }
  .admin-list-controls{
    grid-template-columns:1fr;
    justify-items:stretch;
  }
  .admin-list-controls .badge{
    justify-self:start;
  }
  .topbar{font-size:11px;padding:7px 8px}
  .logo{
    min-width:0;
    max-width:34vw;
  }
  .logo strong{font-size:19px;letter-spacing:.09em;white-space:nowrap}
  .logo span{
    display:block;
    font-size:7px;
    letter-spacing:.14em;
    white-space:nowrap;
    margin-top:2px;
    opacity:.95;
  }
  .header-inner{height:62px}
  .header-actions{gap:5px;justify-content:flex-end}
  .header-actions form{flex:1 1 auto;min-width:0}
  .header-actions input[name="q"]{
    display:block;
    width:100% !important;
    max-width:none;
    min-width:0;
    height:34px !important;
    padding:0 10px;
    font-size:13px;
  }
  .icon-btn,.cart-btn{flex:0 0 auto}
  .search-suggest{width:min(94vw,360px);max-height:50vh}
  .hero-copy{padding:24px 14px}
  .hero-copy h1{font-size:30px}
  .hero-copy h1::after{left:-8px;top:-10px;width:84%;height:118%}
  .hero-slider{min-height:300px}
  .hero-arrow{display:none}
  .trust-inline-inner{justify-content:center;padding:8px 0}
  .trust-pill{font-size:11px;min-height:26px;padding:0 10px}
  main > .section + .section .container::before{top:-16px;width:min(190px,56%)}
  .section{padding:16px 0}
  .section h2{font-size:28px}
  .cta-title{font-size:30px}
  .cta-strip{padding:18px}
  .page-head{padding:20px 0}
  .page-head h1{font-size:32px}
  .footer h4{margin:0 0 10px}
  .footer p,.footer li{font-size:13px;line-height:1.6}
  .footer-bottom{
    font-size:12px;
    line-height:1.5;
    white-space:normal;
    padding:12px 0 16px;
  }
  .shipping-card{grid-template-columns:58px 1fr;gap:10px}
  .shipping-flag-img{width:54px;height:36px}
  .shipping-card strong{grid-column:1/-1}
  .admin-auth-screen{padding:12px}
  .admin-auth-card{
    width:100%;
    padding:14px;
    border-radius:12px;
  }
  .admin-auth-card h1{font-size:30px}
  .admin-auth-card p{font-size:13px;line-height:1.4}
  .admin-auth-form input{height:40px;font-size:14px}
  .admin-pass-toggle{width:28px;height:28px}
  .admin-main{padding:8px}
  .admin-side{padding:7px 6px;gap:5px}
  .admin-side a{font-size:11px;padding:7px 9px}
  #actions .btn{width:100%}
  .kpi{grid-template-columns:1fr}
  .admin-top{padding:10px}
  .table{display:block;overflow-x:auto;white-space:nowrap}
  .table thead,.table tbody,.table tr{white-space:nowrap}
  .admin-main .table.admin-table-mobile td{
    grid-template-columns:80px 1fr;
    gap:6px;
    font-size:12px;
  }
  .admin-main .table.admin-table-mobile td::before{
    font-size:10px;
  }
  .product-media{height:280px}
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .product-media{height:180px}
  .product-card .meta{padding:7px 8px}
  .product-card h3{font-size:14px;min-height:0}
  .price{font-size:15px}
  .small-btn{min-height:32px;padding:0 8px;font-size:12px}
  .order-photo-thumb{width:54px;height:54px}
  .insta-float-btn{width:54px;height:54px;right:12px;bottom:12px}
  .wa-float-btn{width:54px;height:54px;right:12px;bottom:72px}
  .gmail-float-btn{width:54px;height:54px;right:12px;bottom:132px}
  .cart-item{grid-template-columns:24px 70px 1fr;gap:10px}
  .cart-item strong{grid-column:3}
  .checkout-mobile-sticky{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    position:fixed !important;
    left:10px;
    right:10px;
    bottom:max(10px, env(safe-area-inset-bottom));
    z-index:9999;
    background:#ffffff;
    border:1px solid #cedbe2;
    border-radius:12px;
    box-shadow:0 14px 32px rgba(8,24,28,.2);
    padding:10px;
    transform:translateZ(0);
    -webkit-transform:translateZ(0);
    will-change:transform;
  }
  .checkout-mobile-meta{display:flex;flex-direction:column;gap:2px}
  .checkout-mobile-meta small{font-size:11px;color:#61757b;text-transform:uppercase;letter-spacing:.08em}
  .checkout-mobile-meta strong{font-size:18px;color:#123b38}
  body.checkout-has-sticky{padding-bottom:94px}
  .inline-toast{
    top:auto;
    bottom:86px;
    right:10px;
    left:10px;
    max-width:none;
  }

  .product-actions .small-btn.primary .add-cart-icon{
    font-size:18px;
  }
}

/* Mobile product cards: Temu-style compact and fully aligned */
@media (max-width:760px){
  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:6px !important;
  }
  .product-card{
    border-radius:4px !important;
    box-shadow:none !important;
  }
  .product-media{
    height:168px !important;
  }
  .product-card .meta{
    padding:6px 6px 7px !important;
    gap:1px !important;
  }
  .product-card h3{
    font-size:14px !important;
    line-height:1.18 !important;
    min-height:0 !important;
    margin:0 !important;
  }
  .price{
    font-size:16px !important;
    line-height:1.04 !important;
    min-height:0 !important;
    gap:4px !important;
    margin:0 !important;
  }
  .old{font-size:11px !important}
  .discount-pill{
    height:18px !important;
    padding:0 7px !important;
    font-size:10px !important;
  }
  .product-actions{
    grid-template-columns:34px 1fr !important;
    grid-auto-rows:34px !important;
    gap:5px !important;
    padding-top:5px !important;
    margin-top:5px !important;
  }
  .product-actions .wish-btn{
    width:34px !important;
    height:34px !important;
    font-size:18px !important;
  }
  .product-actions .small-btn{
    height:34px !important;
    min-height:34px !important;
    font-size:11px !important;
    white-space:nowrap !important;
  }
}

@media (max-width:560px){
  .product-media{height:154px !important}
  .product-card h3{
    font-size:13px !important;
    min-height:0 !important;
  }
  .price{font-size:15px !important}
}

/* Temu-like mobile waterfall cards (tight, no wasted vertical gaps) */
@media (max-width:760px){
  .product-grid{
    display:block !important;
    column-count:2;
    column-gap:6px;
  }
  .product-card{
    display:inline-flex !important;
    width:100% !important;
    margin:0 0 6px !important;
    break-inside:avoid;
    -webkit-column-break-inside:avoid;
    page-break-inside:avoid;
  }
}
@media (max-width:420px){
  .logo{max-width:38vw}
  .logo strong{font-size:18px}
  .logo span{font-size:6px;letter-spacing:.12em}
  .category-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
  .product-media{height:220px}
}

/* Admin Mobile Final Overrides (keeps desktop untouched) */
@media (max-width:980px){
  .admin-main .btn{
    min-height:34px;
    height:34px;
    padding:0 10px;
    font-size:12px;
    border-radius:8px;
  }
  .admin-main .small-btn{
    min-height:32px;
    height:32px;
    padding:0 8px;
    font-size:11px;
    border-radius:8px;
  }
  .admin-main select.small-btn{
    min-height:34px;
    height:34px;
    width:100%;
    min-width:0 !important;
  }

  .admin-main .table.admin-table-mobile{
    border:none;
    background:transparent;
    white-space:normal;
    overflow:visible;
  }
  .admin-main .table.admin-table-mobile thead{display:none}
  .admin-main .table.admin-table-mobile tbody{
    display:grid;
    gap:10px;
  }
  .admin-main .table.admin-table-mobile tr{
    display:block;
    background:#fff;
    border:1px solid #d6dde3;
    border-radius:10px;
    padding:8px 10px;
  }
  .admin-main .table.admin-table-mobile td{
    display:grid;
    grid-template-columns:86px 1fr;
    gap:7px;
    align-items:start;
    white-space:normal;
    word-break:break-word;
    border-bottom:1px dashed #e8edf2;
    padding:7px 0;
  }
  .admin-main .table.admin-table-mobile td:last-child{border-bottom:none}
  .admin-main .table.admin-table-mobile td::before{
    content:attr(data-label);
    color:#4b5c68;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.04em;
    font-weight:700;
  }

  .admin-main .table.admin-table-mobile td[data-label="Produktet"],
  .admin-main .table.admin-table-mobile td[data-label="Fotot"],
  .admin-main .table.admin-table-mobile td[data-label="Statusi"]{
    grid-template-columns:1fr;
    gap:6px;
  }

  .admin-main .order-products-list{
    min-width:0 !important;
    max-width:100% !important;
    white-space:normal;
    overflow-wrap:anywhere;
  }
  .admin-main .order-photos-grid{
    min-width:0 !important;
    max-width:100% !important;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
  }
  .admin-main .order-photos-grid a{
    display:inline-flex;
    flex:0 0 auto;
  }
  .admin-main .order-photo-thumb{
    width:50px !important;
    height:50px !important;
    padding:3px !important;
  }

  .admin-main .table.admin-table-mobile td[data-label="Statusi"] > div{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:6px !important;
  }
  .admin-main .table.admin-table-mobile td[data-label="Statusi"] > div select{
    grid-column:1 / -1;
  }

  /* Product form toggles (New Arrival / Best Seller / Aktiv) */
  .admin-product-toggles{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:6px;
    margin-top:8px;
    margin-bottom:8px;
  }
  .admin-product-toggles label{
    display:flex;
    align-items:center;
    gap:6px;
    padding:7px 8px;
    border:1px solid #d9e2e7;
    border-radius:8px;
    background:#f8fbfc;
    font-size:12px;
    font-weight:700;
    line-height:1.2;
  }
  .admin-product-toggles input[type="checkbox"]{
    width:16px;
    height:16px;
    margin:0;
    accent-color:#1f6a62;
    flex:0 0 auto;
  }

  .admin-product-form > div[style*="display:flex"]{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:6px !important;
    width:100%;
  }
  .admin-product-form > div[style*="display:flex"] .btn{
    width:100%;
    min-width:0;
  }
}

@media (max-width:560px){
  .admin-main .table.admin-table-mobile td{
    grid-template-columns:74px 1fr;
    gap:6px;
    font-size:12px;
  }
  .admin-main .order-photo-thumb{
    width:46px !important;
    height:46px !important;
  }
  .admin-side a{
    font-size:10px !important;
    padding:6px 8px !important;
  }
  .admin-main .btn{
    min-height:32px !important;
    height:32px !important;
    padding:0 8px !important;
    font-size:11px !important;
  }
  .admin-main .small-btn{
    min-height:30px !important;
    height:30px !important;
    padding:0 7px !important;
    font-size:10px !important;
  }
  .admin-product-toggles{
    grid-template-columns:1fr;
  }
  .admin-product-toggles label{
    font-size:11px;
    padding:6px 7px;
  }
  .admin-product-form > div[style*="display:flex"]{
    grid-template-columns:1fr;
  }
}

/* Absolute final guard for admin mobile button sizing */
@media (max-width:980px){
  .admin-main .btn,
  .admin-main .small-btn,
  .admin-main button.btn,
  .admin-main button.small-btn,
  .admin-main a.btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-sizing:border-box !important;
    height:32px !important;
    min-height:32px !important;
    padding:0 8px !important;
    font-size:11px !important;
    border-radius:8px !important;
    width:auto !important;
    max-width:100%;
    max-height:32px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    flex:0 0 auto !important;
  }
  .admin-main select.small-btn{
    height:34px !important;
    min-height:34px !important;
    width:100% !important;
    min-width:0 !important;
  }
  .admin-main #actions .btn{
    width:auto !important;
  }
  .admin-main .load-more-btn{
    min-height:32px !important;
    height:32px !important;
    padding:0 10px !important;
    font-size:11px !important;
  }
  .admin-top .btn{
    min-height:32px !important;
    height:32px !important;
    padding:0 10px !important;
    font-size:11px !important;
  }
  .admin-product-toggles label{
    font-size:11px !important;
    padding:6px 7px !important;
  }
}

@media (max-width:560px){
  .admin-main .btn,
  .admin-main .small-btn,
  .admin-main button.btn,
  .admin-main button.small-btn,
  .admin-main a.btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-sizing:border-box !important;
    height:30px !important;
    min-height:30px !important;
    padding:0 7px !important;
    font-size:10px !important;
  }
  .admin-auth-form .btn{
    height:32px !important;
    min-height:32px !important;
    padding:0 10px !important;
    font-size:11px !important;
  }
}

/* Mobile form readability + prevent iOS Safari auto-zoom on focus */
@media (max-width:980px){
  input,
  select,
  textarea{
    font-size:16px !important;
  }
  .header-actions input[name="q"],
  .header-search-form input[name="q"]{
    font-size:16px !important;
  }
}

@media (max-width:760px){
  .footer-grid{
    grid-template-columns:1fr 1fr !important;
    gap:10px 14px;
    align-items:start;
  }
  .footer-grid > div:first-child{
    grid-column:1 / -1;
  }
  .footer-grid > div:nth-child(2){
    grid-column:1 / -1;
  }
  .footer .logo{
    align-items:flex-start;
  }
  .footer h4{
    margin:0 0 7px;
    font-size:12px;
    letter-spacing:.06em;
    text-transform:uppercase;
  }
  .footer p,
  .footer li{
    font-size:12px;
    line-height:1.5;
  }
  .footer ul{
    display:grid;
    gap:3px;
    justify-items:start;
  }
  .footer-bottom{
    text-align:center;
    font-size:11px;
  }
}
@media (max-width:520px){
  .footer-grid{
    grid-template-columns:1fr !important;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2){
    grid-column:auto;
  }
}

/* Bigger top trust pills (cash + free shipping) */
.trust-inline-inner .trust-pill{
  min-height:34px !important;
  padding:0 14px !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.03em !important;
}
@media (max-width:760px){
  .trust-inline-inner .trust-pill{
    min-height:30px !important;
    padding:0 12px !important;
    font-size:12px !important;
    font-weight:800 !important;
    letter-spacing:.02em !important;
  }
}

