:root{
  --primary:#6E7BBE;
  --accent:#F3B6C8;
  --text:#14151A;
  --muted:rgba(20,21,26,.62);
  --bg:#FBFBFD;
  --card:#fff;
  --border:rgba(20,21,26,.10);
  --shadow:0 12px 34px rgba(20,21,26,.10);
  --shadow2:0 8px 18px rgba(20,21,26,.08);
  --radius:16px;
  --radius2:22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,92%);margin:0 auto}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.dot{opacity:.45;margin:0 6px}

.topbar{
  background:linear-gradient(90deg,rgba(243,182,200,.40),rgba(110,123,190,.30));
  border-bottom:1px solid rgba(255,255,255,.35);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
  font-size:13px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.60);
}
.lang{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.55);
}
.lang.is-active{
  background:#fff;
  border-color:#fff;
  box-shadow:0 10px 20px rgba(20,21,26,.08);
}

.nav{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(10px);
  background:rgba(251,251,253,.90);
  border-bottom:1px solid var(--border);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  flex-wrap:nowrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.brand__logo{
  width:30px;
  height:30px;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 10px 18px rgba(20,21,26,.10);
}
.brand__text{font-size:15px; letter-spacing:.2px}

.nav__burger{
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow2);
  padding:0;
}
.nav__burger span{
  width:22px;
  height:14px;
  display:block;
  background:
    radial-gradient(circle, rgba(20,21,26,.70) 60%, transparent 62%) 2px 6px/6px 6px no-repeat,
    radial-gradient(circle, rgba(20,21,26,.70) 60%, transparent 62%) 8px 6px/6px 6px no-repeat,
    radial-gradient(circle, rgba(20,21,26,.70) 60%, transparent 62%) 14px 6px/6px 6px no-repeat;
  opacity:.9;
}

.nav__links{
  position:fixed;
  top:0;
  right:0;
  height:100dvh;
  width:min(360px,92vw);
  background:rgba(255,255,255,.92);
  border-left:1px solid var(--border);
  box-shadow:-18px 0 50px rgba(20,21,26,.18);
  transform:translateX(110%);
  transition:transform .22s ease;
  z-index:60;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-bottom:calc(18px + env(safe-area-inset-bottom));
}
.nav__links.is-open{transform:translateX(0)}
.nav__links a{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(20,21,26,.08);
  background:rgba(251,251,253,.70);
  font-weight:800;
  font-size:14px;
}
.nav__actions{
  margin-top:auto;
  display:grid;
  gap:10px;
  padding-top:6px;
}

.menu-backdrop,
.cart-backdrop{
  position:fixed;
  inset:0;
  background:rgba(10,10,14,.30);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:55;
}
.menu-backdrop.is-open,
.cart-backdrop.is-open{
  opacity:1;
  pointer-events:auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(110,123,190,.22);
  background:linear-gradient(135deg,rgba(243,182,200,.52),rgba(110,123,190,.28));
  color:rgba(20,21,26,.92);
  font-weight:800;
  font-size:14px;
}
.btn--ghost{
  background:#fff;
  border:1px solid rgba(20,21,26,.10);
}
.btn--lg{padding:11px 16px}
.btn--full{width:100%}

.cart-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(20,21,26,.10);
  background:#fff;
  font-weight:900;
  font-size:14px;
}
.cart-count{
  min-width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--primary));
  color:#fff;
  font-size:12px;
  padding:0 6px;
}

.cart-panel{
  position:fixed;
  top:0;
  right:0;
  width:min(420px,92vw);
  height:100dvh;
  background:rgba(255,255,255,.94);
  border-left:1px solid var(--border);
  box-shadow:-18px 0 50px rgba(20,21,26,.18);
  z-index:80;
  display:flex;
  flex-direction:column;
  transform:translateX(110%);
  transition:transform .22s ease;
}
.cart-panel[aria-hidden="false"]{transform:translateX(0)}
.cart-panel__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  border-bottom:1px solid rgba(20,21,26,.08);
}
.cart-panel__title{font-weight:950;font-size:15px}
.cart-panel__close{
  width:42px;
  height:42px;
  border-radius:16px;
  border:1px solid rgba(20,21,26,.10);
  background:#fff;
}
.cart-panel__body{
  flex:1;
  overflow:auto;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:14px;
  padding-bottom:calc(14px + env(safe-area-inset-bottom));
}

.cart-items{display:grid;gap:10px}
.cart-item{
  display:grid;
  grid-template-columns:66px 1fr;
  gap:12px;
  border:1px solid rgba(20,21,26,.08);
  border-radius:18px;
  padding:10px;
  background:#fff;
}
.cart-item__img{
  width:66px;
  height:66px;
  border-radius:14px;
  object-fit:cover;
  background:#f3f3f7;
}
.cart-item__name{font-weight:950;font-size:14px}
.cart-item__price{color:var(--muted);margin-top:2px;font-size:13px}
.cart-item__qty{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}
.qty-btn{
  width:34px;
  height:34px;
  border-radius:14px;
  border:1px solid rgba(20,21,26,.10);
  background:#fff;
  font-weight:950;
}
.qty-num{min-width:18px;text-align:center;font-weight:900}
.remove-btn{
  margin-left:auto;
  border:none;
  background:transparent;
  color:rgba(20,21,26,.55);
  text-decoration:underline;
  cursor:pointer;
  font-size:13px;
}

.cart-summary{
  position:sticky;
  bottom:0;
  background:#fff;
  border:1px solid rgba(20,21,26,.10);
  border-radius:18px;
  padding:12px;
  box-shadow:0 -10px 24px rgba(20,21,26,.08);
}
.cart-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  font-size:14px;
}

@media (max-width:900px){
  .cart-panel{
    top:14px;
    left:14px;
    right:14px;
    width:auto;
    height:auto;
    max-height:calc(100dvh - 28px);
    border-radius:24px;
    border:1px solid rgba(20,21,26,.10);
    transform:scale(.98);
    opacity:0;
    pointer-events:none;
  }
  .cart-panel[aria-hidden="false"]{
    transform:scale(1);
    opacity:1;
    pointer-events:auto;
  }
}

.hero{
  position:relative;
  overflow:hidden;
  padding:28px 0 14px;
}
.hero__grid{display:grid;gap:18px}
.badge{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.65);
  font-size:13px;
}
.hero h1{
  margin:10px 0 10px;
  font-size:clamp(26px,4.2vw,42px);
  line-height:1.08;
  letter-spacing:-.5px;
}
.lead{margin:0 0 10px;font-size:15px}
.hero__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.hero__media{position:relative}
.hero__card{
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(20,21,26,.08);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero__card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.hero__floating{
  position:absolute;
  left:12px;
  bottom:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  padding:7px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(20,21,26,.08);
  font-size:12.5px;
}
.hero__fade{
  position:absolute;
  inset:-40px -80px auto -80px;
  height:240px;
  background:
    radial-gradient(circle at 18% 30%, rgba(243,182,200,.52), transparent 55%),
    radial-gradient(circle at 82% 20%, rgba(110,123,190,.40), transparent 60%);
  filter:blur(12px);
  z-index:-1;
}

.section{padding:38px 0}
.section--soft{
  background:linear-gradient(180deg,rgba(243,182,200,.16),rgba(110,123,190,.08));
  border-top:1px solid rgba(20,21,26,.06);
  border-bottom:1px solid rgba(20,21,26,.06);
}
.section__head{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.section__head h2{
  margin:0;
  font-size:clamp(20px,3vw,30px);
  letter-spacing:-.3px;
}

.grid4,.grid3{display:grid;gap:12px}
.card{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(20,21,26,.08);
  border-radius:20px;
  box-shadow:0 10px 22px rgba(20,21,26,.06);
  padding:14px;
}
.card h3{margin:0 0 8px;font-size:15px}

.product{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(20,21,26,.08);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(20,21,26,.08);
  overflow:hidden;
}
.product__img img{width:100%;aspect-ratio:4/3;object-fit:cover}
.product__body{padding:14px}
.product__body h3{margin:0 0 8px;font-size:16px}
.product__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
}
.price{font-weight:950}

.stats .stat{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(20,21,26,.08);
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 22px rgba(20,21,26,.06);
}
.stat__big{
  font-size:clamp(28px,4vw,42px);
  font-weight:950;
  letter-spacing:-.8px;
  background:linear-gradient(135deg,var(--accent),var(--primary));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:6px;
}

.cta{
  margin-top:16px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(20,21,26,.08);
  box-shadow:var(--shadow2);
  padding:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}
.cta h3{margin:0 0 6px;font-size:16px}

.footer{
  padding:28px 0 18px;
  border-top:1px solid rgba(20,21,26,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.60), rgba(251,251,253,.90));
}
.footer__grid{
  display:grid;
  gap:14px;
}
.footer__card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(20,21,26,.08);
  border-radius:22px;
  box-shadow:0 10px 22px rgba(20,21,26,.06);
  padding:14px;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  margin-bottom:10px;
}
.footer h4{margin:0 0 10px;font-size:15px}
.footer__social{
  margin-top:10px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.footer__social a{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(20,21,26,.08);
  background:rgba(251,251,253,.75);
  font-weight:800;
  font-size:13px;
}

.list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.form{display:grid;gap:10px}
.input,.textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(20,21,26,.10);
  background:#fff;
  padding:11px 12px;
  outline:none;
  font:inherit;
}
.input:focus,.textarea:focus{
  border-color:rgba(110,123,190,.40);
  box-shadow:0 0 0 4px rgba(110,123,190,.10);
}
.footer__bottom{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(20,21,26,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

@media (min-width:860px){
  .nav__burger{display:none}
  .nav__links{
    position:static;
    transform:none !important;
    height:auto;
    width:auto;
    background:transparent;
    border:none;
    box-shadow:none;
    padding:0;
    display:flex !important;
    flex-direction:row;
    align-items:center;
    gap:16px;
  }
  .nav__links a{
    border:none;
    background:transparent;
    padding:8px 10px;
    font-size:14px;
    border-radius:12px;
  }
  .nav__links a:hover{background:rgba(110,123,190,.08)}
  .nav__actions{
    margin-top:0;
    display:flex;
    gap:10px;
    align-items:center;
  }

  .hero{padding:44px 0 18px}
  .hero__grid{
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:22px;
  }

  .grid4{grid-template-columns:repeat(4,1fr)}
  .grid3{grid-template-columns:repeat(3,1fr)}
  .footer__grid{grid-template-columns:1.15fr .95fr .95fr}
}



#product.section--soft{
  background: radial-gradient(circle at 20% 20%, rgba(243,182,200,.22), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(110,123,190,.14), transparent 60%),
              linear-gradient(180deg, rgba(251,251,253,1), rgba(251,251,253,1));
  border-top: 1px solid rgba(20,21,26,.06);
  border-bottom: 1px solid rgba(20,21,26,.06);
}

#product .section__head{
  max-width: 720px;
}

.product-layout{
  display:grid;
  gap:14px;
  margin-top:12px;
}

.product.product--single{
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(20,21,26,.08);
  box-shadow: 0 14px 34px rgba(20,21,26,.08);
}

.product.product--single .product__img{
  background: rgba(251,251,253,.9);
  border-bottom:1px solid rgba(20,21,26,.06);
}

.product.product--single .product__img img{
  width:100%;
  height: clamp(220px, 34vw, 360px);
  max-height: 380px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: auto !important;
}

.product.product--single .product__body{
  padding:14px 16px 16px;
}

.product.product--single .product__body h3{
  margin:0 0 6px;
  font-size:16px;
  font-weight:950;
}

.product.product--single .product__body p{
  margin:0 0 12px;
  font-size:14px;
  line-height:1.55;
}

.product.product--single .product__row{
  margin-top:10px;
  gap:10px;
}

.product.product--single .price{
  font-size:15px;
  font-weight:950;
}

.product.product--single .btn--full{
  margin-top:12px;
}

.specs .specs__box{
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(20,21,26,.08);
  box-shadow: 0 10px 22px rgba(20,21,26,.06);
}

.specs .specs__price{
  font-size:16px;
  font-weight:950;
  margin-bottom:10px;
}

.specs .specs__list{
  gap:10px;
}

.specs .specs__list li{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(20,21,26,.08);
  background: rgba(251,251,253,.78);
  font-weight:850;
  font-size:13.5px;
}


@media (max-width: 859px){
  #product.section{ padding: 28px 0; }
  #product .section__head h2{ font-size: clamp(20px, 5.5vw, 28px); }
  #product .section__head p{ font-size: 14px; }

  .product.product--single .product__img img{
    height: clamp(200px, 56vw, 320px);
    max-height: 340px;
  }
}

/* Desktop: 2-column layout, image left, specs right */
@media (min-width: 860px){
  .product-layout{
    grid-template-columns: 1.15fr .85fr;
    align-items:start;
    gap:16px;
  }

  .specs .specs__box{
    position: sticky;
    top: 92px;
  }

  .product.product--single .product__img img{
    height: 330px;
    max-height: 360px;
  }
}

