:root{
  --bg:#eef2f7;
  --surface:rgba(255,255,255,.92);
  --text:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.08);
  --primary:#ff0009;
  --primary-dark:#b30012;
  --primary-mid:#ff4950;
  --primary-soft:#ff888d;
  --success:#25D366;
  --radius:20px;
  --shadow:0 12px 30px rgba(15,23,42,.08);
  --shadow-soft:0 6px 18px rgba(15,23,42,.06);
  --max:1240px;
  --overlay:rgba(2,6,23,.42);
  --drawer-bg:rgba(10,15,28,.60);
  --drawer-line:rgba(255,255,255,.12);
  --drawer-text:rgba(255,255,255,.96);
  --drawer-muted:rgba(255,255,255,.76);
  --drawer-hover:rgba(255,255,255,.08);
}

*{box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  overflow-x:clip;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,0,9,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255,73,80,.08), transparent 24%),
    linear-gradient(180deg,#f8fafc 0%, #eef2f7 100%);
  line-height:1.6;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  transition:transform .28s ease, filter .28s ease;
  transform-origin:center top;
  overflow-x:clip;
}

body.menu-open{
  overflow:hidden;
  touch-action:none;
}

body.lightbox-open{
  overflow:hidden;
  touch-action:none;
}

body.lang-open{
  overscroll-behavior:none;
}

body.scroll-locked{
  position:fixed;
  left:0;
  right:0;
  width:100%;
  overflow:hidden;
  touch-action:none;
}

body.menu-open .site-shell{
  transform:scale(.992);
  filter:saturate(.96);
}

a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

.site-shell{
  transition:transform .28s ease, filter .28s ease;
  transform-origin:center top;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:auto;
}

.topbar{
  background:linear-gradient(90deg,var(--primary-dark),var(--primary));
  color:#fff;
  font-size:13px;
}

.topbar-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
}

header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,23,42,.06);
  will-change:transform;
  transform:translateZ(0);
}

.header-inner{
  position:relative;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.header-left,
.header-right{
  display:flex;
  align-items:center;
  min-width:42px;
  z-index:2;
}

.header-right{
  justify-content:flex-end;
}

.logo-slot{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
  pointer-events:auto;
}

.logo-slot img{
  max-height:34px;
  max-width:min(320px, 65vw);
}

.menu-btn{
  appearance:none;
  border:0;
  background:transparent;
  box-shadow:none;
  cursor:pointer;
  width:42px;
  height:42px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:opacity .18s ease, transform .18s ease;
  position:relative;
  z-index:2;
  padding:0;
  color:#111827;
}

.menu-btn:hover{
  opacity:.75;
  transform:translateY(-1px);
}

.menu-btn:focus-visible,
.lang-btn:focus-visible{
  outline:2px solid rgba(255,0,9,.28);
  outline-offset:3px;
}

.burger{
  width:22px;
  height:16px;
  position:relative;
}

.burger span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:999px;
  background:#111827;
}

.burger span:nth-child(1){top:0;}
.burger span:nth-child(2){top:7px;}
.burger span:nth-child(3){top:14px;}

.lang-switcher{
  position:relative;
  z-index:65;
}

.lang-switcher.open{
  z-index:85;
}

.lang-btn{
  appearance:none;
  border:1px solid rgb(15 23 42 / 0%);
  background:rgb(243 243 243);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  height:42px;
  min-width:58px;
  padding:0 12px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.03em;
  color:#0f172a;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.lang-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.92);
  border-color:rgba(255,0,9,.16);
}

.lang-current{font-size:13px;line-height:1;}
.lang-arrow{font-size:10px;line-height:1;opacity:.7;}

.lang-menu{
  position:absolute;
  top:52px;
  left:0;
  min-width:190px;
  max-width:calc(100vw - 24px);
  max-height:calc(100vh - 96px);
  max-height:min(72vh, calc(100dvh - 96px));
  padding:8px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(179,0,18,.92) 0%, rgba(255,0,9,.9) 100%);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 12px 28px rgba(122,0,13,.22);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate3d(0,6px,0);
  transition:opacity .14s ease, transform .14s ease, visibility 0s linear .14s;
  z-index:85;
  will-change:opacity, transform;
  backface-visibility:hidden;
  overflow:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-y;
}

.lang-switcher.open .lang-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate3d(0,0,0);
  transition:opacity .14s ease, transform .14s ease, visibility 0s linear 0s;
}

.lang-menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
  color:rgba(255,255,255,.92);
  transition:background .18s ease, transform .18s ease;
}

.lang-menu a span{
  font-size:12px;
  color:rgba(255,255,255,.68);
  font-weight:600;
  letter-spacing:.04em;
}

.lang-menu a:hover{
  background:rgba(255,255,255,.10);
  transform:translateX(2px);
}

.lang-menu a.active{
  background:rgba(255,255,255,.14);
  color:#fff;
  font-weight:700;
}

.hero{
  padding:28px 0 18px;
}

.hero-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:34px;
  background:linear-gradient(135deg, rgba(179,0,18,.94), rgba(255,0,9,.92) 52%, rgba(255,73,80,.84));
  color:#fff;
  box-shadow:0 16px 40px rgba(255,0,9,.14);
  isolation:isolate;
}

.hero-card::before,
.hero-card::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  z-index:-1;
}

.hero-card::before{
  width:300px;
  height:300px;
  top:-120px;
  right:-60px;
}

.hero-card::after{
  width:180px;
  height:180px;
  left:-50px;
  bottom:-70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}

.hero h1{
  margin:0 0 14px;
  font-size:clamp(28px, 4vw, 48px);
  line-height:1.08;
  letter-spacing:-.03em;
}

.hero p{
  margin:0;
  font-size:16px;
  color:rgba(255,255,255,.88);
  max-width:720px;
}

.hero-actions{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:transform .18s ease, opacity .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}
.btn-primary{ background:#fff; color:var(--primary); }
.btn-secondary{ color:#fff; border-color:rgba(255,255,255,.22); background:rgba(255,255,255,.08); }

.hero-mini{ display:grid; gap:12px; }

.mini-card{
  display:block;
  padding:22px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(3px);
  color:#fff;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease;
}

.mini-card:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.28);
  box-shadow:0 14px 28px rgba(8,25,66,.18);
}

.mini-card:focus-visible{
  outline:2px solid rgba(255,255,255,.5);
  outline-offset:3px;
}

.mini-card b{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  color:#fff;
}

.mini-card span{
  color:rgba(255,255,255,.86);
  font-size:14px;
}


main{ padding:0 0 44px; }

.home-page{
  padding-bottom:0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin:10px 0 18px;
}

.section-head h2{
  margin:0;
  font-size:clamp(22px, 2.6vw, 32px);
  line-height:1.1;
  letter-spacing:-.02em;
}

.section-head p{
  margin:0;
  color:var(--muted);
  max-width:660px;
  font-size:15px;
}

.banner-list{ display:grid; gap:18px; }

.banner{
  position:relative;
  display:block;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.72);
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  transform:translateZ(0);
}

.banner:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(8,25,66,.18);
  border-color:rgba(255,0,9,.16);
}

.banner:focus-visible{
  outline:2px solid rgba(255,0,9,.28);
  outline-offset:3px;
}

.banner-ratio{
  aspect-ratio:1920 / 760;
  background:#e5e7eb;
  overflow:hidden;
}

.banner-ratio img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}

.banner:hover .banner-ratio img{ transform:scale(1.02); }

.home-banner-slider{
  padding:0 0 18px;
}

.home-banner-slider .banner{
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.home-banner-slider .banner:hover{
  transform:none;
  box-shadow:none;
  border-color:transparent;
}

.home-banner-slider .banner:focus-visible{
  outline-offset:-6px;
}

.seo-wrap{
  margin-top:26px;
  display:grid;
  gap:18px;
}

.seo-block{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
  border-radius:26px;
  padding:28px;
}

.seo-block-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.seo-card{
  padding:22px 20px;
  border-radius:22px;
  background:rgba(248,250,252,.92);
  border:1px solid var(--line);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.seo-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(8,25,66,.10);
  border-color:rgba(255,0,9,.12);
  background:rgba(248,250,252,.98);
}

.seo-card h3{ margin:0 0 10px; font-size:18px; line-height:1.2; }
.seo-card p{ margin:0; color:var(--muted); font-size:14px; }

.reveal{
  opacity:0;
  transition:
    opacity .48s ease,
    transform .48s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
  backface-visibility:hidden;
}

.reveal-left{
  transform:translate3d(-24px,0,0);
}

.reveal-right{
  transform:translate3d(24px,0,0);
}

.reveal-up{
  transform:translate3d(0,18px,0);
}

.reveal.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
  will-change:auto;
}

.mini-card.reveal.is-visible:hover,
.banner.reveal.is-visible:hover,
.seo-card.reveal.is-visible:hover,
.info-card.reveal.is-visible:hover,
.footer-col.reveal.is-visible:hover,
.product-card.reveal.is-visible:hover,
.drawer-contact.reveal.is-visible:hover{
  transform:translate3d(0,-2px,0);
}

.drawer-contact.reveal.is-visible:hover{
  box-shadow:0 14px 28px rgba(0,0,0,.16);
  border-color:rgba(255,255,255,.14);
}

.reveal-delay-1{
  transition-delay:.08s;
}

.reveal-delay-2{
  transition-delay:.16s;
}

.reveal-delay-3{
  transition-delay:.24s;
}

.info-section{
  --section-divider-gap:28px;
  margin-top:var(--section-divider-gap);
  padding-top:var(--section-divider-gap);
  position:relative;
}

.info-section::before{
  content:"";
  position:absolute;
  top:0;
  left:calc(50% - 50vw);
  width:100dvw;
  height:1px;
  background:rgba(15,23,42,.08);
}


.info-band{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:28px;
  background:linear-gradient(135deg, rgba(179,0,18,.96), rgba(255,0,9,.92) 52%, rgba(255,73,80,.84));
  box-shadow:0 16px 40px rgba(255,0,9,.14);
  color:#fff;
  isolation:isolate;
}

.info-band::before,
.info-band::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  z-index:-1;
}

.info-band::before{
  width:260px;
  height:260px;
  right:-80px;
  top:-90px;
}

.info-band::after{
  width:180px;
  height:180px;
  left:-55px;
  bottom:-80px;
}

.info-band-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.info-card{
  padding:22px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(3px);
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.info-card:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.26);
  box-shadow:0 14px 28px rgba(8,25,66,.18);
}

.info-card h3{ margin:0 0 10px; font-size:20px; line-height:1.2; color:#fff; }
.info-card p{ margin:0; color:rgba(255,255,255,.84); font-size:14px; }

footer{
  margin-top:28px;
  color:#fff;
  background:linear-gradient(180deg, #7a000d 0%, var(--primary-dark) 38%, var(--primary) 100%);
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-top{ padding:34px 0 24px; }

.footer-brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-bottom:24px;
  margin-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.footer-brand img{ max-height:30px; }
.footer-brand img[src*="signset-logo-light.svg"]{ max-height:30px; }

.footer-brand p{
  margin:0;
  color:rgba(255,255,255,.75);
  max-width:700px;
  font-size:14px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.footer-col{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

.footer-col:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(122,0,13,.18);
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
}

.footer-col h3{ margin:0 0 12px; font-size:15px; }

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:9px;
}

.footer-col a{ color:rgba(255,255,255,.80); font-size:14px; }

.footer-col a:hover{
  color:#fff;
  text-decoration:underline;
}

.footer-bottom{
  padding:18px 0 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:24px;
  font-size:13px;
  color:rgba(255,255,255,.76);
  text-align:center;
}

.footer-sitemap{
  color:rgba(255,255,255,.86);
  text-decoration:none;
  transition:opacity .18s ease, transform .18s ease, color .18s ease;
}

.footer-sitemap:hover{
  color:#fff;
  transform:translateY(-1px);
}

.back-top{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(179,0,18,.94), rgba(255,0,9,.92));
  color:#fff;
  font-size:20px;
  border:1px solid rgba(255,255,255,.18);
  transition:transform .18s ease, background-color .18s ease, opacity .18s ease;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.back-top:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg, rgba(122,0,13,.98), rgba(179,0,18,.98));
}

.floating-actions{
  position:fixed;
  right:max(18px, env(safe-area-inset-right));
  bottom:max(18px, env(safe-area-inset-bottom));
  z-index:55;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  width:max-content;
  max-width:calc(100vw - 20px);
  transform:translateZ(0);
}

.wa-float{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, #2bd96b, #20b95a);
  color:#05280f;
  font-weight:800;
  box-shadow:0 12px 26px rgba(24,142,73,.22);
  transition:transform .18s ease, opacity .18s ease;
  flex-shrink:0;
  max-width:100%;
}

.wa-float:hover{
  transform:translateY(-2px);
}
.wa-icon{ width:22px; height:22px; }

.cookie-banner{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:80;
  width:min(420px, calc(100vw - 36px));
  opacity:0;
  pointer-events:none;
  transform:translate3d(0,16px,0);
  transition:opacity .24s ease, transform .24s ease;
}

.cookie-banner.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translate3d(0,0,0);
}

.cookie-banner-inner{
  padding:16px 16px 14px;
  border-radius:18px;
  background:#ff0009;
  color:#fff;
  box-shadow:0 16px 34px rgba(15,23,42,.18);
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
}

.cookie-banner p{
  margin:0;
  font-size:14px;
  line-height:1.5;
}

.cookie-banner-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.cookie-banner-actions a{
  color:#fff;
  text-decoration:underline;
  font-size:13px;
  font-weight:600;
  overflow-wrap:anywhere;
}

.cookie-banner-actions button{
  appearance:none;
  border:0;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, opacity .18s ease;
}

.cookie-banner-actions button:hover{
  transform:translateY(-1px);
  opacity:.96;
}

.overlay{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at right, rgba(255,0,9,.08), transparent 25%),
    rgba(2,6,23,.38);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease, backdrop-filter .22s ease;
  z-index:60;
}

.drawer{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(390px, 92vw);
  background:linear-gradient(180deg, rgba(17,24,39,.66) 0%, rgba(10,15,28,.72) 100%);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-left:1px solid var(--drawer-line);
  box-shadow:-20px 0 50px rgba(2,6,23,.22);
  transform:translate3d(100%,0,0);
  transition:transform .28s cubic-bezier(.22,.61,.36,1), opacity .22s ease;
  z-index:70;
  display:flex;
  flex-direction:column;
  color:var(--drawer-text);
  overflow:hidden;
  will-change:transform;
  opacity:.98;
}

.menu-open .overlay{
  opacity:1;
  pointer-events:auto;
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
}

.menu-open .drawer{ transform:translate3d(0,0,0); }

.drawer-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  padding:18px 16px;
  border-bottom:1px solid var(--drawer-line);
  min-height:82px;
  flex-shrink:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}

.drawer-logo{
  min-width:0;
  display:flex;
  align-items:center;
}

.drawer-logo img{
  max-height:25px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.18));
}

.drawer-close{
  appearance:none;
  border:0;
  background:rgba(255,255,255,.06);
  color:transparent;
  width:42px;
  height:42px;
  border-radius:12px;
  cursor:pointer;
  padding:0;
  font-size:0;
  line-height:0;
  display:grid;
  place-items:center;
  flex-shrink:0;
  transition:transform .18s ease, background-color .18s ease, opacity .18s ease;
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.drawer-close::before{
  content:"\00d7";
  display:block;
  color:var(--drawer-text);
  font-family:Arial, Helvetica, sans-serif;
  font-size:22px;
  font-weight:400;
  line-height:1;
  transform:none;
}

.drawer-close:hover{
  opacity:1;
  transform:translateY(-1px);
  background:rgba(255,255,255,.12);
}

.drawer-close:focus-visible{
  outline:2px solid rgba(255,255,255,.35);
  outline-offset:3px;
}

.drawer-body{
  display:flex;
  flex-direction:column;
  min-height:0;
  flex:1;
  gap:10px;
}

.drawer-nav{
  padding:14px 10px 6px;
  overflow:auto;
  flex:1;
  -webkit-overflow-scrolling:touch;
}

.drawer-nav a,
.drawer-nav summary{
  display:block;
  padding:14px 16px;
  margin:4px 0;
  border-radius:16px;
  color:var(--drawer-text);
  text-decoration:none;
  transition:background-color .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
  border:1px solid transparent;
  background:rgba(255,255,255,.03);
}

.drawer-nav a:hover,
.drawer-nav summary:hover,
.drawer-nav details[open] summary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.08);
  transform:translateY(-1px);
}

.drawer-nav details{
  margin:6px 0;
  border-radius:18px;
  padding:4px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.drawer-nav summary{
  list-style:none;
  cursor:pointer;
  font-weight:700;
  position:relative;
}

.drawer-nav summary::-webkit-details-marker{display:none;}

.drawer-nav details[open] summary{
  background:rgba(255,255,255,.10);
}

.drawer-nav details[open] summary::after{
  transform:translateY(-50%) rotate(45deg);
}

.drawer-nav summary::after{
  content:"+";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1;
  transition:transform .18s ease, color .18s ease;
}

.drawer-nav .sub{
  padding:6px 4px 4px;
  display:grid;
  gap:4px;
}

.drawer-nav .sub a{
  margin:0;
  padding:12px 14px 12px 18px;
  border-radius:14px;
  color:var(--drawer-muted);
  font-size:14px;
  background:transparent;
  border:1px solid transparent;
  position:relative;
}

.drawer-nav .sub a::before{
  content:"";
  position:absolute;
  left:8px;
  top:50%;
  width:4px;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.46);
  transform:translateY(-50%);
}

.drawer-nav .sub a:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.06);
  transform:translateY(-1px);
}

.drawer-bottom{
  border-top:1px solid var(--drawer-line);
  padding:14px 12px 12px;
  flex-shrink:0;
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.03));
}

.drawer-contact{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  color:var(--drawer-muted);
  font-size:13px;
  line-height:1.5;
  box-shadow:0 12px 24px rgba(0,0,0,.12);
}

.drawer-contact .line + .line{ margin-top:7px; }
.drawer-contact b{ color:var(--drawer-text); }
.drawer-contact a{ color:var(--drawer-text); }
.drawer-email-list{
  display:grid;
  gap:6px;
  margin-top:6px;
}
.drawer-email-list a{
  display:block;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  word-break:break-word;
}

@media (max-width:1100px){
  .hero-grid{ grid-template-columns:1fr; }
  .seo-block-grid{ grid-template-columns:1fr 1fr; }
}


@media (max-width:900px){
  .seo-block-grid,
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .info-band-grid{ grid-template-columns:1fr; }
  header{ background:#ffffff; }
}

@media (max-width:680px){
  .header-inner{ min-height:72px; }
  .logo-slot{ left:50%; transform:translateX(-50%); max-width:calc(100% - 120px); }
  .logo-slot img{ max-height:28px; max-width:100%; }
  .hero-card, .info-band{ padding:24px; border-radius:24px; }
  .section-head{ display:grid; }
  .footer-grid{ grid-template-columns:repeat(2,1fr); }
  .seo-block-grid{ grid-template-columns:1fr; }
  .footer-brand, .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .banner{ border-radius:18px; }
  body.menu-open .site-shell{ transform:none; filter:none; }
  .lang-menu{ left:0; min-width:170px; }
}

@media (max-width:480px){
  .container{ width:min(var(--max), calc(100% - 20px)); }
  .topbar-inner{ min-height:40px; padding:0 8px; }
  .menu-btn{ width:40px; height:40px; }
  .lang-btn{ height:40px; min-width:54px; padding:0 10px; }
  .drawer{ width:min(360px, 100vw); backdrop-filter:blur(14px) saturate(150%); -webkit-backdrop-filter:blur(14px) saturate(150%); }
  .drawer-head{ padding:14px; min-height:70px; }
.drawer-logo img{ max-height:25px; }
  .floating-actions{
    right:max(10px, env(safe-area-inset-right));
    bottom:max(10px, env(safe-area-inset-bottom));
    gap:8px;
    max-width:calc(100vw - 12px);
  }
  .cookie-banner{
    left:10px;
    right:10px;
    bottom:max(10px, env(safe-area-inset-bottom));
    width:auto;
  }
  .cookie-banner-inner{
    padding:14px;
    border-radius:16px;
  }
  .cookie-banner-actions{
    display:grid;
    grid-template-columns:1fr;
    justify-items:stretch;
    gap:10px;
  }
  .cookie-banner-actions a,
  .cookie-banner-actions button{
    width:100%;
  }
  .cookie-banner-actions button{
    min-height:40px;
  }
  .back-top{
    width:44px;
    height:44px;
    font-size:18px;
  }
  .wa-float span{ display:none; }
  .wa-float{
    width:44px;
    height:44px;
    padding:0;
    justify-content:center;
  }
  .wa-icon{
    width:20px;
    height:20px;
  }
  .lang-menu{ left:0; min-width:160px; }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .reveal{
    opacity:1 !important;
    transform:none !important;
  }

  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3{
    transition-delay:0s !important;
  }
}

.category-page{
  padding-top:0;
  padding-bottom:0;
}

.category-slider{
  padding:28px 0 18px;
}

.category-slider-shell{
  position:relative;
  display:grid;
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 16px 40px rgba(255,0,9,.14);
  background:#0f172a;
  isolation:isolate;
  touch-action:pan-y;
}

.category-slider-shell > *{
  grid-area:1 / 1;
}

.breadcrumb-inline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
  color:rgba(255,255,255,.78);
  font-size:13px;
}

.breadcrumb-inline strong{ color:#fff; font-weight:700; }

.category-slide{
  position:relative;
  isolation:isolate;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate3d(14px, 0, 0) scale(1.02);
  transition:
    opacity .9s ease,
    transform 1.15s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 1.15s;
  z-index:1;
}

.category-slide::after{
  content:none;
}

.category-slide.is-prev,
.category-slide.is-next{
  visibility:visible;
}

.category-slide.is-prev{
  transform:translate3d(-14px, 0, 0) scale(1.02);
}

.category-slide.is-next{
  transform:translate3d(14px, 0, 0) scale(1.02);
}

.category-slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate3d(0, 0, 0) scale(1);
  transition-delay:0s;
  z-index:2;
}

.category-slide .banner-ratio img{
  transform:scale(1.035);
  transition:transform 1.45s cubic-bezier(.22, 1, .36, 1);
}

.category-slide.is-active .banner-ratio img{
  transform:scale(1);
}

.category-slider-controls{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  pointer-events:none;
}

.slider-btn{
  border:0;
  cursor:pointer;
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(15,23,42,.28);
  color:#fff;
  font-size:22px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:transform .18s ease, background-color .18s ease;
  pointer-events:auto;
}

.slider-btn:hover{
  transform:translateY(-1px);
  background:rgba(15,23,42,.42);
}

.category-slider-shell.is-dragging{
  cursor:grabbing;
}

.category-toolbar{
  padding:10px 0 20px;
  border-bottom:1px solid rgba(15,23,42,.08);
  margin-bottom:18px;
}

.category-toolbar-inner{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  padding:0 2px;
}

.toolbar-label{
  margin:0 0 8px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.category-toolbar-inner h2,
.product-head h2{
  margin:0;
  font-size:clamp(24px, 2.7vw, 34px);
  line-height:1.1;
  letter-spacing:-.02em;
}

.chip-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.category-accordion{
  margin:0;
}

.category-accordion summary{
  display:none;
  list-style:none;
}

.category-accordion summary::-webkit-details-marker{
  display:none;
}

.category-chip{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow-soft);
  font-size:14px;
  font-weight:500;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.category-chip.active{
  background:var(--primary);
  color:#fff;
  border-color:rgba(255,0,9,.28);
}

.category-chip:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(8,25,66,.12);
}

.product-showcase{
  padding:8px 0 0;
}

.product-detail-page{
  padding-bottom:44px;
}

.contact-page{
  padding:0;
}

.product-detail-shell{
  padding:8px 0 0;
}

.contact-shell{
  padding:8px 0 0;
}

.contact-map-hero iframe{
  display:block;
  width:100%;
  height:min(46vh, 460px);
  border:0;
  filter:grayscale(1) contrast(.96) brightness(1.08) saturate(0);
}

.contact-simple-layout{
  display:grid;
  gap:18px;
}

.contact-simple-head{
  max-width:min(420px, 100%);
  margin:0 auto;
  text-align:center;
}

.contact-simple-head h1{
  margin:0 0 10px;
  font-size:clamp(30px, 4vw, 42px);
  line-height:1.08;
  letter-spacing:-.03em;
}

.contact-simple-head p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.contact-simple-grid{
  display:grid;
  grid-template-columns:minmax(300px, .85fr) minmax(0, 1.15fr);
  gap:20px;
  align-items:stretch;
}

.contact-panel{
  padding:24px;
  border-radius:26px;
  background:rgba(248,250,252,.96);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
  height:100%;
}

.contact-form{
  margin-top:0;
}

.contact-form.simple{
  height:100%;
  display:flex;
  flex-direction:column;
}

.contact-form .btn-primary{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  color:#fff;
}

.contact-form.simple .order-submit{
  margin-top:auto;
  margin-left:auto;
  margin-right:auto;
}

.contact-form.simple textarea{
  min-height:180px;
}

.contact-info-list{
  display:grid;
  gap:12px;
}

.contact-info-list.compact{
  gap:10px;
}

.contact-info-list div{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
}

.contact-info-list span{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}

.contact-info-list strong,
.contact-info-list a{
  color:var(--text);
  font-size:15px;
  line-height:1.55;
  font-weight:500;
}

.contact-email-stack{
  display:grid;
  gap:8px;
}

.contact-email-stack strong{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(248,250,252,.95);
  font-weight:500;
}

.contact-email-stack a{
  display:block;
  word-break:break-word;
}

.contact-phone-cards{
  display:grid;
  gap:8px;
}

.contact-phone-card{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(248,250,252,.96);
  border:1px solid rgba(15,23,42,.08);
  transition:transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.contact-phone-card:hover{
  transform:translateY(-1px);
  border-color:rgba(255,0,9,.12);
  background:#fff;
}

.contact-phone-card small{
  color:var(--muted);
  font-size:12px;
  font-weight:600;
}

.contact-phone-card strong{
  color:var(--text);
  font-size:15px;
  line-height:1.4;
  font-weight:500;
}

.detail-breadcrumb-band{
  padding:0 0 12px;
}

.contact-page .detail-breadcrumb-band{
  position:relative;
  z-index:2;
  margin-top:-28px;
}

.detail-breadcrumb-shell{
  min-height:56px;
  padding:14px 18px;
  border-radius:18px;
  background:linear-gradient(90deg,var(--primary-dark),var(--primary));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 12px 28px rgba(255,0,9,.16);
  display:flex;
  align-items:center;
}

.product-detail-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:20px;
  align-items:stretch;
}

.product-gallery,
.product-summary-card,
.detail-tabs{
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
}

.product-gallery{
  padding:20px;
  border-radius:26px;
  background:var(--surface);
  height:100%;
  display:flex;
}

.product-gallery-slider{
  position:relative;
  width:100%;
}

.product-gallery-track{
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-gallery-frame{
  display:none;
  width:100%;
  height:100%;
}

.product-gallery-frame.is-active{
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-gallery-track img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.product-zoom-trigger{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
}

.product-gallery-controls{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  pointer-events:none;
}

.product-gallery-controls .slider-btn{
  pointer-events:auto;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:95;
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  --lightbox-gap:clamp(16px, 4vh, 32px);
  padding:var(--lightbox-gap);
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox.is-visible{
  opacity:1;
  pointer-events:auto;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.78);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.lightbox-shell{
  position:relative;
  z-index:1;
  width:max-content;
  max-width:calc(100vw - (var(--lightbox-gap) * 2));
  max-height:calc(100dvh - (var(--lightbox-gap) * 2));
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.lightbox-media{
  width:auto;
  height:auto;
  max-width:calc(100vw - (var(--lightbox-gap) * 2));
  max-height:calc(100dvh - (var(--lightbox-gap) * 2));
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-media img{
  display:block;
  width:auto;
  height:auto;
  max-width:min(1200px, calc(100vw - (var(--lightbox-gap) * 2)));
  max-height:calc(100dvh - (var(--lightbox-gap) * 2));
  border-radius:20px;
  box-shadow:0 24px 48px rgba(0,0,0,.24);
}

.lightbox-close,
.lightbox-nav{
  appearance:none;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(15,23,42,.22);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:transform .18s ease, background-color .18s ease;
  display:grid;
  place-items:center;
}

.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:999px;
  font-size:24px;
  line-height:1;
  z-index:2;
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:999px;
  font-size:28px;
  line-height:1;
  z-index:2;
}

.lightbox-nav.prev{ left:14px; }
.lightbox-nav.next{ right:14px; }

.lightbox-close:hover,
.lightbox-nav:hover{
  background:rgba(15,23,42,.34);
}

.lightbox-close:hover{
  transform:translateY(-1px);
}

.lightbox-nav:hover{
  transform:translateY(calc(-50% - 1px));
}

.product-summary-card{
  padding:24px;
  border-radius:26px;
  background:rgba(248,250,252,.96);
  height:100%;
  display:flex;
  flex-direction:column;
}

.breadcrumb-dark{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  color:rgba(255,255,255,.82);
  margin:0;
}

.breadcrumb-dark strong{
  color:#fff;
}

.breadcrumb-dark a,
.breadcrumb-dark span{
  color:inherit;
}

.detail-kicker{
  margin:0 0 8px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.product-summary-card h1{
  margin:0;
  font-size:clamp(24px, 2.8vw, 34px);
  line-height:1.14;
  letter-spacing:-.03em;
  font-weight:700;
}

.detail-lead{
  margin:12px 0 0;
  color:var(--muted);
  font-size:clamp(14px, 1.4vw, 16px);
  line-height:1.5;
  font-weight:500;
}

.product-spec-list{
  display:grid;
  gap:10px;
  margin-top:20px;
}

.product-spec-list div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
}

.product-spec-list span{
  color:var(--muted);
  font-size:14px;
}

.product-spec-list strong{
  font-size:14px;
}

.product-summary-card .hero-actions{
  margin-top:auto;
  padding-top:22px;
}

.product-summary-card .btn-primary{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  color:#fff;
}

.product-summary-card .btn-secondary{
  background:linear-gradient(135deg, #25D366, #1faa52);
  border-color:transparent;
  color:#05280f;
}

.tag-line{
  margin:18px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.tag-line strong{
  color:var(--text);
}

.detail-tabs{
  margin-top:20px;
  padding:20px;
  border-radius:26px;
  background:var(--surface);
}

.detail-tab-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.detail-tab-btn{
  appearance:none;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:var(--text);
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.detail-tab-btn:hover,
.detail-tab-btn.is-active{
  transform:translateY(-1px);
  background:var(--primary);
  color:#fff;
  border-color:rgba(255,0,9,.28);
}

.detail-panel{
  display:none;
}

.detail-panel.is-active{
  display:block;
}

.detail-panel p{
  margin:0 0 12px;
  color:var(--muted);
}

.detail-panel h2{
  margin:0 0 14px;
  font-size:clamp(20px, 2.1vw, 28px);
  line-height:1.18;
  letter-spacing:-.02em;
}

.detail-table{
  display:grid;
  gap:12px;
}

.detail-table div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
}

.order-form{
  display:grid;
  gap:18px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.form-grid label{
  display:grid;
  gap:8px;
}

.form-grid label.full{
  grid-column:1 / -1;
}

.form-grid span{
  font-size:14px;
  font-weight:600;
}

.form-grid input,
.form-grid textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  background:#fff;
  padding:14px 16px;
  font:inherit;
}

.order-submit{
  width:max-content;
}

.related-products{
  margin-top:20px;
  padding:20px;
  border-radius:26px;
  background:rgba(248,250,252,.96);
  overflow:hidden;
  border:0;
}

.related-products .product-head{
  margin-bottom:18px;
  align-items:center;
}

.product-shell{
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:20px;
  align-items:start;
}

.product-sidebar{
  position:sticky;
  top:98px;
  display:grid;
  gap:10px;
  padding-top:48px;
}

.sidebar-accordion{
  margin:0;
}

.sidebar-accordion summary{
  display:none;
  list-style:none;
}

.sidebar-accordion summary::-webkit-details-marker{
  display:none;
}

.sidebar-card{
  padding:22px;
  border-radius:24px;
  background:var(--surface);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
}

.sidebar-card h3{
  margin:0 0 10px;
  font-size:19px;
  line-height:1.2;
}

.sidebar-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.sidebar-list{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
}

.sidebar-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 16px;
  margin-top:4px;
  border-radius:999px;
  background:linear-gradient(135deg, #2bd96b, #20b95a);
  color:#05280f;
  font-weight:800;
  box-shadow:0 12px 26px rgba(24,142,73,.22);
  transition:transform .18s ease, opacity .18s ease;
}

.sidebar-cta:hover{
  transform:translateY(-2px);
}

.product-main{
  display:grid;
  gap:18px;
}

.product-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
}

.product-count{
  margin:0;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.product-card{
  display:grid;
  grid-template-rows:auto 1fr;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(8,25,66,.18);
  border-color:rgba(255,0,9,.16);
}

.product-media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1 / 1;
  background:#fff;
  overflow:hidden;
}

.product-media img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  transition:transform .25s ease;
}

.product-card:hover .product-media img{
  transform:scale(1.02);
}

.product-copy{
  display:grid;
  gap:10px;
  padding:18px;
  text-align:center;
}

.product-copy h3{
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:600;
}

.product-copy p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  font-weight:400;
}

.product-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  margin-top:auto;
  border-radius:999px;
  border:1px solid rgba(255,0,9,.24);
  background:var(--primary);
  color:#fff;
  font-weight:600;
  transition:transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-link:hover{
  transform:translateY(-1px);
  background:#b30012;
  color:#fff;
  border-color:rgba(255,0,9,.28);
  box-shadow:0 10px 24px rgba(255,0,9,.16);
}

.product-card:hover .product-link{
  background:#b30012;
  color:#fff;
  border-color:rgba(255,0,9,.28);
  box-shadow:0 10px 24px rgba(255,0,9,.16);
}

.catalog-note{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 24px;
  border-radius:24px;
  background:var(--surface);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
}

.catalog-note p{
  margin:0;
  color:var(--muted);
}

.catalog-note .btn-secondary{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  border-color:transparent;
  color:#fff;
}

.catalog-pagination{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:6px;
  width:calc((100% - 36px) / 3);
  max-width:100%;
  margin-left:auto;
}

.page-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  min-height:44px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow-soft);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.page-pill:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(8,25,66,.12);
}

.page-pill.current{
  background:var(--primary);
  color:#fff;
  border-color:rgba(255,0,9,.28);
}

.page-pill.next{
  padding:0 16px;
  margin-left:auto;
}

@media (max-width:1100px){
  .category-slider-shell,
  .product-shell{
    grid-template-columns:1fr;
  }

  .contact-simple-grid{
    grid-template-columns:1fr;
  }

  .product-detail-grid{
    grid-template-columns:1fr;
  }

  .product-sidebar{
    position:static;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    padding-top:0;
  }
}

@media (max-width:900px){
  .category-toolbar-inner,
  .product-head,
  .catalog-note{
    display:grid;
  }

  .chip-row{
    justify-content:flex-start;
  }

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

  .catalog-pagination{
    width:fit-content;
  }

  .product-sidebar{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  .category-slider{
    padding:8px 0 10px;
  }

  .category-slider-shell{ border-radius:24px; }

  .category-toolbar{
    display:none;
  }

  .sidebar-accordion{
    width:100%;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:rgba(255,255,255,.72);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
  }

  .sidebar-accordion summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:48px;
    padding:0 16px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
  }

  .sidebar-accordion summary::after{
    content:"+";
    font-size:18px;
    line-height:1;
    color:var(--muted);
  }

  .sidebar-accordion[open] summary::after{
    content:"âˆ’";
  }

  .sidebar-accordion-body{
    padding:0 12px 12px;
  }

  .sidebar-accordion .sidebar-card{
    margin:0;
  }

  .product-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
  }

  .related-products .product-grid{
    grid-template-columns:1fr;
  }

  .catalog-pagination{
    justify-content:center;
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
  }

  .page-pill.next{
    margin-left:0;
  }

  .category-slider-controls{
    padding:0 12px;
  }

  .category-toolbar-inner{
    align-items:stretch;
    width:100%;
  }

  .category-toolbar .container{
    width:min(var(--max), calc(100% - 20px));
  }

  .category-accordion{
    display:block;
    width:100%;
    min-width:100%;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:rgba(255,255,255,.72);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
  }

  .category-accordion summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:48px;
    padding:0 16px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
  }

  .category-accordion summary::after{
    content:"+";
    font-size:18px;
    line-height:1;
    color:var(--muted);
  }

  .category-accordion[open] summary::after{
    content:"âˆ’";
  }

  .category-accordion .chip-row{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    padding:0 12px 12px;
    justify-content:stretch;
  }

  .category-accordion .category-chip{
    width:100%;
    justify-content:flex-start;
  }

  .product-gallery,
  .product-summary-card,
  .detail-tabs,
  .contact-panel,
  .related-products{
    padding:16px;
    border-radius:22px;
  }

  .product-gallery-track{
    border-radius:18px;
  }

  .lightbox-shell{
    max-width:calc(100vw - (var(--lightbox-gap) * 2));
    max-height:calc(100dvh - (var(--lightbox-gap) * 2));
  }

  .product-copy{
    padding:14px;
    gap:8px;
  }

  .product-copy h3{
    font-size:16px;
  }

  .product-copy p{
    font-size:13px;
  }

  .product-link{
    min-height:40px;
    padding:0 14px;
    font-size:14px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .order-submit{
    width:100%;
  }
}

@media (max-width:480px){
  .lightbox-shell{
    max-width:calc(100vw - (var(--lightbox-gap) * 2));
    max-height:calc(100dvh - (var(--lightbox-gap) * 2));
  }

  .lightbox-nav{
    width:42px;
    height:42px;
    font-size:24px;
  }

  .lightbox-nav.prev{ left:10px; }
  .lightbox-nav.next{ right:10px; }

  .lightbox-close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    font-size:22px;
  }
}
