:root{
  --bg:#0a0d0b;
  --bg2:#070907;
  --surface:#0f1311;
  --surface2:#121814;
  --surface3:#0c100e;
  --text:#e9f3ee;
  --muted:#a9b4ae;
  --faint:#7e8a84;

  --accent:#39ff14;       /* кислотный */
  --accent2:#1cff6a;
  --accent3:#0bffba;

  --ring: rgba(57,255,20,.32);
  --border: rgba(255,255,255,.06);
  --border2: rgba(57,255,20,.10);

  --shadowD: rgba(0,0,0,.62);
  --shadowL: rgba(255,255,255,.045);

  --r: 18px;
  --r2: 22px;
  --gap: 16px;
  --max: 1180px;

  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 18% 10%, rgba(57,255,20,.06), transparent 55%),
              radial-gradient(900px 500px at 88% 15%, rgba(28,255,106,.04), transparent 55%),
              radial-gradient(900px 600px at 60% 110%, rgba(11,255,186,.03), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
button, input{ font: inherit; }
:focus-visible{ outline:2px solid var(--ring); outline-offset:2px; border-radius: 10px; }

.bg-orbs{ position:fixed; inset:0; pointer-events:none; z-index:0; }
.orb{
  position:absolute; filter: blur(38px);
  opacity:.18; transform: translate3d(0,0,0);
  animation: drift 12s var(--ease) infinite alternate;
}
.orb-a{ width:380px; height:380px; left:-120px; top:140px; background: rgba(57,255,20,.35); border-radius: 38% 62% 62% 38% / 44% 55% 45% 56%; }
.orb-b{ width:320px; height:320px; right:-140px; top:220px; background: rgba(28,255,106,.22); border-radius: 60% 40% 52% 48% / 40% 55% 45% 60%; animation-duration: 14s; }
.orb-c{ width:460px; height:460px; left:45%; bottom:-220px; background: rgba(11,255,186,.16); border-radius: 44% 56% 40% 60% / 52% 44% 56% 48%; animation-duration: 16s; }
@keyframes drift{ from{ transform: translate3d(0,0,0) scale(1);} to{ transform: translate3d(22px,-18px,0) scale(1.07);} }

.topbar{
  position: sticky; top:0; z-index: 50;
  background: rgba(10,13,11,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex; align-items:center; gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 210px;
}
.brand__mark{
  width: 74px; height: 40px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f1511, #070a08);
  box-shadow: 10px 10px 22px var(--shadowD), -10px -10px 22px var(--shadowL);
  border: 1px solid rgba(57,255,20,.10);
  position: relative;
  overflow:hidden;
}
.brand__mark::after{
  content:"";
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 30% 30%, rgba(57,255,20,.35), transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(11,255,186,.22), transparent 55%);
  transform: rotate(15deg);
  opacity: .9;
  animation: sheen 6s linear infinite;
}
@keyframes sheen{ 0%{ transform: translateX(-10%) rotate(15deg);} 100%{ transform: translateX(10%) rotate(15deg);} }

.brand__text{ line-height: 1.1; }
.brand__name{ font-weight: 800; letter-spacing: .08em; font-size: 13px; }
.brand__tag{ font-size: 11px; color: var(--muted); letter-spacing:.02em; margin-top: 2px; }

.brand--sm .brand__mark{ width:56px; height:30px; border-radius: 14px; }
.brand--sm .brand__name{ font-size:12px; }
.brand--sm .brand__tag{ font-size:10px; }

.nav{
  display:flex; align-items:center; gap: 10px;
  flex:1;
}
.nav__link{
  position: relative;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(233,243,238,.92);
  font-weight: 600;
  letter-spacing:.01em;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.nav__link::after{
  content:"";
  position:absolute; left:12px; right:12px; bottom:7px;
  height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,.75), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav__link:hover{
  background: rgba(255,255,255,.03);
  box-shadow: 10px 10px 22px rgba(0,0,0,.35), -10px -10px 22px rgba(255,255,255,.03);
  transform: translateY(-1px);
}
.nav__link.is-active{
  color: var(--text);
  background: rgba(57,255,20,.08);
  border: 1px solid rgba(57,255,20,.18);
}
.nav__link.is-active::after{ opacity: 1; transform: translateY(0); }

.search{
  position: relative;
  min-width: 250px;
}
.search__input{
  width:100%;
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text);
  background: linear-gradient(145deg, #0f1411, #090b0a);
  border-radius: 999px;
  padding: 10px 40px 10px 14px;
  box-shadow: 10px 10px 22px rgba(0,0,0,.48), -10px -10px 22px rgba(255,255,255,.03);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.search__input:focus{
  border-color: rgba(57,255,20,.22);
  box-shadow: 0 0 0 4px rgba(57,255,20,.10), 10px 10px 22px rgba(0,0,0,.48), -10px -10px 22px rgba(255,255,255,.03);
}
.search__icon{
  position:absolute; right:12px; top:50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  opacity:.9;
  color: rgba(57,255,20,.9);
}
.search__results{
  position:absolute;
  top: calc(100% + 10px);
  left:0; right:0;
  background: rgba(12,16,14,.92);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 18px 18px 40px rgba(0,0,0,.6), -18px -18px 40px rgba(255,255,255,.03);
  display:none;
}
.search__results.is-open{ display:block; animation: pop .22s var(--ease); }
@keyframes pop{ from{ opacity:0; transform: translateY(-6px) scale(.98);} to{ opacity:1; transform: translateY(0) scale(1);} }
.search__item{
  display:flex; justify-content: space-between; gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  cursor:pointer;
}
.search__item:last-child{ border-bottom:0; }
.search__item:hover{ background: rgba(57,255,20,.06); }
.search__item strong{ font-size: 13px; }
.search__item span{ font-size: 12px; color: var(--muted); }

.app{
  position:relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 18px 60px;
}

.section{ margin-top: 18px; }
.section__head{
  display:flex; align-items:flex-end; justify-content: space-between;
  gap: 12px;
  margin: 22px 0 14px;
}
.h1{
  font-size: clamp(24px, 3vw, 38px);
  margin: 0;
  letter-spacing: -.02em;
}
.h2{
  font-size: 18px;
  margin:0;
  letter-spacing: -.01em;
}
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.card{
  background: linear-gradient(145deg, var(--surface2), var(--surface3));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r2);
  box-shadow: 18px 18px 40px rgba(0,0,0,.62), -18px -18px 40px rgba(255,255,255,.035);
}

.neo{
  background: linear-gradient(145deg, #0f1411, #080a09);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: var(--r2);
  box-shadow: 14px 14px 28px rgba(0,0,0,.62), -14px -14px 28px rgba(255,255,255,.03);
}

.btn{
  position: relative;
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  border: 1px solid rgba(57,255,20,.12);
  background: rgba(57,255,20,.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  cursor:pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,.45); background: rgba(57,255,20,.10); }
.btn:active{ transform: translateY(0); }
.btn--ghost{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.btn--ghost:hover{ background: rgba(255,255,255,.04); }

.btn__glow{
  position:absolute; inset:-2px;
  border-radius: inherit;
  opacity:0;
  transition: opacity .22s var(--ease);
  background: radial-gradient(120px 60px at 30% 30%, rgba(57,255,20,.22), transparent 70%),
              radial-gradient(120px 60px at 70% 70%, rgba(11,255,186,.16), transparent 70%);
  filter: blur(10px);
  pointer-events:none;
}
.btn:hover .btn__glow{ opacity: 1; }

.grid{
  display:grid;
  gap: var(--gap);
}
.grid--cats{
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.grid--products{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 980px){
  .grid--cats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--products{ grid-template-columns: repeat(1, minmax(0,1fr)); }
  .search{ min-width: 200px; }
  .brand{ min-width: 160px; }
}
@media (max-width: 680px){
  .nav{ display:none; } /* на мобиле пункты в меню */
  .search{ min-width: 0; flex: 1; }
  .topbar__inner{ gap: 10px; }
}

.cat{
  padding: 16px;
  border-radius: var(--r2);
  aspect-ratio: 1/1;
  display:flex; flex-direction: column; justify-content: space-between;
  overflow:hidden;
  position: relative;
  transform: translateZ(0);
  cursor:pointer;
  transition: transform .24s var(--ease), border-color .24s var(--ease);
}
.cat:hover{ transform: translateY(-3px); border-color: rgba(57,255,20,.18); }
.cat::after{
  content:"";
  position:absolute; inset:-50%;
  background: radial-gradient(circle at 30% 30%, rgba(57,255,20,.10), transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(11,255,186,.06), transparent 45%);
  transform: rotate(14deg);
  opacity: .8;
  animation: sheen 10s linear infinite;
  pointer-events:none;
}
.cat__icon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:grid; place-items:center;
  border: 1px solid rgba(57,255,20,.12);
  background: rgba(57,255,20,.06);
  box-shadow: inset 6px 6px 14px rgba(0,0,0,.55), inset -6px -6px 14px rgba(255,255,255,.03);
}
.cat__icon svg{ width: 22px; height: 22px; color: rgba(57,255,20,.9); }
.cat__name{
  font-weight: 800;
  letter-spacing:-.02em;
  font-size: 14px;
  position: relative;
}

.carousel{
  border-radius: 26px;
  overflow:hidden;
  position: relative;
}
.carousel__frame{
  position: relative;
  height: min(50vh, 520px); /* <= 2/4 на ПК */
  min-height: 220px;
  background: rgba(0,0,0,.25);
}
@media (max-width: 680px){
  .carousel__frame{
    height: min(25vh, 220px); /* <= 1/4 на мобиле */
    min-height: 140px;
  }
}
.slide{
  position:absolute; inset:0;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .55s var(--ease), transform .65s var(--ease);
  display:grid;
  place-items:center;
}
.slide.is-active{
  opacity:1;
  transform: scale(1);
}
.slide__media{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.slide__veil{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.20) 60%, rgba(0,0,0,.35));
}
.slide__content{
  position:relative;
  z-index:1;
  max-width: min(720px, 92%);
  padding: 18px;
  justify-self:start;
  margin-left: clamp(10px, 3vw, 32px);
  animation: floatIn .7s var(--ease) both;
}
@keyframes floatIn{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}
.slide__title{
  font-size: clamp(18px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0 0 8px;
  text-shadow: 0 10px 26px rgba(0,0,0,.55);
}
.slide__sub{
  margin:0 0 14px;
  color: rgba(233,243,238,.86);
  max-width: 60ch;
}
.carousel__controls{
  position:absolute; inset:auto 14px 14px 14px;
  display:flex; align-items:center; justify-content: space-between;
  gap: 10px;
  z-index: 2;
}
.dots{
  display:flex; gap: 8px;
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.12);
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), width .2s var(--ease);
}
.dot.is-active{
  background: rgba(57,255,20,.65);
  border-color: rgba(57,255,20,.22);
  width: 26px;
}
.arrow{
  width: 38px; height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 10px 10px 22px rgba(0,0,0,.45), -10px -10px 22px rgba(255,255,255,.03);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.arrow:hover{ transform: translateY(-1px); background: rgba(57,255,20,.10); border-color: rgba(57,255,20,.18); }
.arrow svg{ width: 18px; height: 18px; color: rgba(233,243,238,.9); }

.product{
  padding: 16px;
  overflow:hidden;
  position:relative;
  transition: transform .24s var(--ease), border-color .24s var(--ease);
}
.product:hover{ transform: translateY(-3px); border-color: rgba(57,255,20,.16); }
.product__top{
  display:flex; justify-content: space-between; align-items:flex-start; gap:12px;
}
.badge{
  font-size: 11px;
  color: rgba(57,255,20,.9);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(57,255,20,.16);
  background: rgba(57,255,20,.08);
}
.product__title{
  font-weight: 900;
  letter-spacing:-.02em;
  margin: 6px 0 2px;
}
.product__meta{ color: var(--muted); font-size: 12px; }
.product__thumb{
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
  overflow:hidden;
  aspect-ratio: 4/3;
}
.product__thumb img{
  width:100%; height:100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product:hover .product__thumb img{ transform: scale(1.05); }

.chips{ display:flex; flex-wrap: wrap; gap: 8px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(233,243,238,.9);
  font-size: 12px;
  cursor:pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.chip:hover{ transform: translateY(-1px); background: rgba(57,255,20,.06); border-color: rgba(57,255,20,.12); }
.chip.is-active{ background: rgba(57,255,20,.10); border-color: rgba(57,255,20,.18); color: var(--text); }

.page{
  animation: pageIn .34s var(--ease) both;
}
@keyframes pageIn{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Product page layout */
.pwrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--gap);
}
@media (max-width: 980px){
  .pwrap{ grid-template-columns: 1fr; }
}
.gallery{
  padding: 14px;
}
.gallery__main{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
  aspect-ratio: 4/3;
  position:relative;
}
.gallery__main img{
  width:100%; height:100%;
  object-fit: cover;
}
.gallery__nav{
  display:flex; gap: 10px;
  margin-top: 12px;
  overflow:auto;
  padding-bottom: 4px;
}
.thumb{
  width: 86px; height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
  opacity:.75;
  cursor:pointer;
  flex: 0 0 auto;
}
.thumb.is-active{ opacity: 1; border-color: rgba(57,255,20,.18); box-shadow: 0 0 0 3px rgba(57,255,20,.08); }
.thumb img{ width:100%; height:100%; object-fit: cover; }

.specs{
  padding: 16px;
}
.spec{
  display:flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.spec:last-child{ border-bottom:0; }
.spec span{ color: var(--muted); font-size: 13px; }
.spec strong{ font-size: 13px; }

.order{
  margin-top: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(57,255,20,.12);
  background: rgba(57,255,20,.06);
}
.order__row{ display:flex; justify-content: space-between; align-items:center; gap: 12px; }
.order__price{ font-size: 22px; font-weight: 900; letter-spacing:-.02em; }
.select{
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: var(--text);
}

.desc{
  margin-top: 16px;
  padding: 16px;
}
.desc p{ margin: 0; color: rgba(233,243,238,.88); line-height: 1.6; }

.reviews{
  margin-top: 16px;
  padding: 16px;
}
.review{
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}
.review + .review{ margin-top: 10px; }
.review__top{ display:flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.review__name{ font-weight: 800; }
.review__date{ color: var(--faint); font-size: 12px; }
.review__text{ color: rgba(233,243,238,.88); line-height: 1.55; margin:0; }

.form{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}
.field{
  width: 100%;
  padding: 10px 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: var(--text);
}
textarea.field{ min-height: 96px; resize: vertical; }

.notice{
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(57,255,20,.14);
  background: rgba(57,255,20,.06);
  color: rgba(233,243,238,.92);
  font-size: 13px;
}

/* Mobile menu */
.burger{
  display:none;
  width: 42px; height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 10px 10px 22px rgba(0,0,0,.45), -10px -10px 22px rgba(255,255,255,.03);
  cursor:pointer;
  position: relative;
}
.burger span{
  position:absolute; left: 12px; right: 12px;
  height: 2px; border-radius: 999px;
  background: rgba(233,243,238,.85);
  transition: transform .24s var(--ease), top .24s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1){ top: 14px; }
.burger span:nth-child(2){ top: 20px; opacity:.9;}
.burger span:nth-child(3){ top: 26px; }
@media (max-width: 680px){
  .burger{ display:inline-block; }
  .brand{ min-width: 0; flex: 1; justify-content:center; }
  .brand__text{ display:none; }
  .topbar__inner{ justify-content: space-between; }
}

.drawer{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.drawer.is-open{ display:block; }
.drawer__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  animation: fadeIn .2s var(--ease);
}
@keyframes fadeIn{ from{ opacity:0;} to{ opacity:1;} }
.drawer__panel{
  position:absolute;
  top: 0; left: 0;
  width: min(84vw, 360px);
  height: 100%;
  background: rgba(10,13,11,.92);
  border-right: 1px solid rgba(255,255,255,.06);
  box-shadow: 30px 0 60px rgba(0,0,0,.6);
  padding: 14px;
  transform: translateX(-8px);
  animation: slideIn .22s var(--ease) both;
}
@keyframes slideIn{ from{ opacity:0; transform: translateX(-16px);} to{ opacity:1; transform: translateX(0);} }
.drawer__head{ display:flex; align-items:center; justify-content: space-between; gap: 10px; }
.xbtn{
  width: 42px; height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  display:grid; place-items:center;
}
.xbtn svg{ width:18px; height:18px; opacity:.9; }
.drawer__links{ display:grid; gap: 6px; margin-top: 12px; }
.drawer__links a{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.drawer__links a:hover{ background: rgba(57,255,20,.06); border-color: rgba(57,255,20,.14); }

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(10,13,11,.55);
  backdrop-filter: blur(8px);
}
.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}
.footer__title{ font-weight: 900; margin-bottom: 10px; }
.footer__links{ display:grid; gap: 6px; }
.link{ color: rgba(233,243,238,.86); }
.link:hover{ color: rgba(57,255,20,.9); }
@media (max-width: 980px){
  .footer__inner{ grid-template-columns: 1fr; }
}

/* Admin */
.admin{
  display:grid;
  gap: 16px;
}
.table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.table th{
  text-align:left;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  padding: 0 10px;
}
.table td{
  padding: 10px 10px;
}
.row{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
}
.row td:first-child{ border-top-left-radius: 18px; border-bottom-left-radius: 18px; }
.row td:last-child{ border-top-right-radius: 18px; border-bottom-right-radius: 18px; }



/* Reviews (звёзды как на примере, но в нашей чёрно‑зелёной теме) */
.reviews__form{
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
}
.reviews__title{
  font-weight: 900;
  letter-spacing:-.02em;
  margin-bottom: 12px;
  font-size: 16px;
}
.ratingRow{
  display:flex; align-items:center; gap: 12px;
  margin-bottom: 10px;
}
.ratingRow__label{ color: var(--muted); font-weight: 700; }
.ratingRow__stars{ display:flex; gap: 8px; }
.starBtn{
  width: 34px; height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  cursor:pointer;
  color: rgba(233,243,238,.55);
  display:grid; place-items:center;
  box-shadow: 10px 10px 22px rgba(0,0,0,.45), -10px -10px 22px rgba(255,255,255,.03);
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  font-size: 16px;
  line-height: 1;
}
.starBtn:hover{ transform: translateY(-1px); border-color: rgba(57,255,20,.18); background: rgba(57,255,20,.08); }
.starBtn.is-on{ color: rgba(57,255,20,.95); border-color: rgba(57,255,20,.22); background: rgba(57,255,20,.10); }

.stars{ display:flex; gap: 4px; margin-top: 6px; }
.star{ font-size: 14px; color: rgba(233,243,238,.25); }
.star.is-on{ color: rgba(57,255,20,.90); }

/* About page blocks */
.aboutBlock{ padding: 16px; }
.aboutTitle{
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  color: rgba(57,255,20,.92);
}
.aboutText{
  margin:0;
  color: rgba(233,243,238,.88);
  line-height: 1.7;
}
.aboutGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 800px){
  .aboutGrid{ grid-template-columns: 1fr; }
}
.aboutCard{
  padding: 14px;
  border-radius: 22px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.aboutCard__icon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:grid; place-items:center;
  border: 1px solid rgba(57,255,20,.12);
  background: rgba(57,255,20,.06);
  box-shadow: inset 6px 6px 14px rgba(0,0,0,.55), inset -6px -6px 14px rgba(255,255,255,.03);
}
.aboutCard__icon svg{ width:22px; height:22px; color: rgba(57,255,20,.9); }
.aboutCard__name{ font-weight: 900; letter-spacing:-.02em; }
.aboutCard__desc{ color: var(--muted); font-size: 12px; margin-top: 2px; }
.priceCard{
  display:flex; align-items:center; justify-content: space-between; gap: 12px;
  padding: 14px;
  border-radius: 22px;
}
.priceCard__main{ font-weight: 900; letter-spacing:-.02em; }
.priceCard__price{
  font-weight: 900;
  font-size: 22px;
  color: rgba(57,255,20,.92);
}

/* Floating Telegram button */
.tg-float{
  position: fixed;
  right: 25px;
  bottom: 120px;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  border: 1px solid rgba(57,255,20,.16);
  background: rgba(10,13,11,.78);
  backdrop-filter: blur(10px);
  box-shadow: 18px 18px 40px rgba(0,0,0,.65), -18px -18px 40px rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  z-index: 90;
  transition: transform .2s var(--ease);
}
.tg-float:hover{ transform: translateY(-2px); }
.tg-float__icon svg{
  width: 26px;
  height: 26px;
  color: rgba(57,255,20,.95);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}
.tg-float__glow{
  position:absolute; inset:-2px;
  border-radius: inherit;
  background: radial-gradient(90px 50px at 30% 30%, rgba(57,255,20,.22), transparent 70%),
              radial-gradient(90px 50px at 70% 70%, rgba(11,255,186,.14), transparent 70%);
  filter: blur(12px);
  opacity: .9;
  animation: pulse 2.8s var(--ease) infinite;
  pointer-events:none;
}
@keyframes pulse{
  0%,100%{ transform: scale(.96); opacity:.65; }
  50%{ transform: scale(1.03); opacity: 1; }
}

.cat--photo{ background-color: rgba(0,0,0,.18); }
.cat--photo .cat__name{ text-shadow: 0 10px 26px rgba(0,0,0,.55); }

/* Product card rating */
.stars--sm .star{ font-size: 12px; }
.product__right{ display:flex; flex-direction: column; align-items:flex-end; gap:8px; }
.product__rating{ display:flex; align-items:center; gap:10px; }
.product__score{
  font-size:12px;
  color: rgba(233,243,238,.88);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 219, 74, .22);
  background: rgba(255, 219, 74, .06);
}
