/* ============================
   DARK GLASS / iOS STYLE
   Ничего не ломает в логике: меняет только визуал
============================ */

:root{
  --bg:#030406;
  --bg-2:#070b12;
  --surface:rgba(11,16,24,0.68);
  --surface-strong:rgba(8,12,19,0.82);
  --surface-soft:rgba(255,255,255,0.05);
  --line:rgba(255,255,255,0.14);
  --line-strong:rgba(255,255,255,0.22);

  --text:#f5f7fb;
  --text-soft:rgba(245,247,251,0.72);
  --text-muted:rgba(245,247,251,0.48);

  --blue:#59b7ff;
  --blue-2:#1f6fff;
  --blue-deep:#0d2340;
  --glow-blue:rgba(68,153,255,0.34);
  --glow-cyan:rgba(115,229,255,0.20);

  --white-btn:#ffffff;
  --white-btn-text:#111318;

  --shadow-sm:0 8px 22px rgba(0,0,0,0.28);
  --shadow-md:0 18px 48px rgba(0,0,0,0.38);
  --shadow-lg:0 28px 70px rgba(0,0,0,0.46);

  --radius-sm:14px;
  --radius-md:22px;
  --radius-lg:30px;
  --container-pad:18px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  min-height:100%;
  background:
    radial-gradient(circle at 72% 14%, rgba(51,102,255,0.48), transparent 18%),
    radial-gradient(circle at 46% 56%, rgba(113,228,255,0.28), transparent 16%),
    radial-gradient(circle at 30% 86%, rgba(76,175,255,0.45), transparent 16%),
    linear-gradient(180deg, #020305 0%, #04070c 38%, #020305 100%);
  scroll-behavior:smooth;
}

body{
  font-family:"SF Pro Display","Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text);
  text-align:center;
  background:
    radial-gradient(circle at 70% 18%, rgba(31,111,255,0.22), transparent 20%),
    radial-gradient(circle at 42% 58%, rgba(113,228,255,0.16), transparent 18%),
    radial-gradient(circle at 26% 88%, rgba(88,169,255,0.20), transparent 20%);
  padding-bottom:48px;
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 76% 14%, rgba(77,162,255,0.22), transparent 14%),
    radial-gradient(circle at 34% 82%, rgba(128,230,255,0.10), transparent 16%);
  filter:blur(38px);
  opacity:.95;
}

.page{
  width:100%;
  max-width:480px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

/* ============================
   TYPO
============================ */
.section-title,
.product-title{
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--text);
}

.product-title{
  font-size:28px;
  line-height:1.03;
  margin-bottom:18px;
  text-shadow:0 0 22px rgba(89,183,255,0.10);
}

.section-title{
  font-size:18px;
  line-height:1.18;
  margin-bottom:16px;
  display:inline-block;
  position:relative;
  padding-bottom:10px;
}

.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:58px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,0.16), rgba(89,183,255,0.95), rgba(255,255,255,0.16));
  box-shadow:0 0 18px rgba(89,183,255,0.42);
}

/* ============================
   TOP MARQUEE
============================ */
.top-marquee{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  max-width:480px;
  margin:0 auto;
  background:rgba(7,10,16,0.72);
  border-bottom:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 34px rgba(0,0,0,0.38);
  overflow:hidden;
  backdrop-filter:blur(22px) saturate(150%);
  -webkit-backdrop-filter:blur(22px) saturate(150%);
}

.top-marquee-inner{
  display:inline-flex;
  align-items:center;
  gap:24px;
  white-space:nowrap;
  padding:10px 16px;
  animation:marquee-slide 18s linear infinite;
  font-size:12px;
  font-weight:600;
  color:var(--text-soft);
}

@keyframes marquee-slide{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ============================
   SECTION BASE
============================ */
.product-section,
.video-section,
.gallery-desc-section,
.description-section,
.specs-section,
.reviews-section,
.faq-section,
.guarantee-section,
.how-to-order,
.order-form-section{
  position:relative;
}

.product-section::before,
.video-section::before,
.gallery-desc-section::before,
.description-section::before,
.specs-section::before,
.reviews-section::before,
.faq-section::before,
.guarantee-section::before,
.how-to-order::before,
.order-form-section::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  pointer-events:none;
}

/* ============================
   HERO / PRODUCT
============================ */
.product-section{
  width:100%;
  padding:28px var(--container-pad) 22px;
}

.product-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 14px;
  margin-bottom:14px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 28px rgba(0,0,0,0.28);
  backdrop-filter:blur(16px);
}

.product-image-container{
  width:100%;
  display:flex;
  justify-content:center;
  margin-bottom:18px;
  position:relative;
}

.product-image-container::before{
  content:"";
  position:absolute;
  width:84%;
  height:84%;
  top:8%;
  left:8%;
  border-radius:32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(59,132,255,0.34), transparent 22%),
    radial-gradient(circle at 34% 75%, rgba(113,228,255,0.20), transparent 22%);
  filter:blur(26px);
  z-index:0;
}

.product-image{
  position:relative;
  z-index:1;
  max-width:100%;
  height:auto;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 0 0 1px rgba(255,255,255,0.03),
    0 20px 50px rgba(0,0,0,0.42),
    0 0 46px rgba(48,124,255,0.16);
  backdrop-filter:blur(14px);
}

.product-label{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 22px rgba(0,0,0,0.26);
  backdrop-filter:blur(16px);
}

/* ============================
   PRICE BLOCK
============================ */
.price-container{
  display:flex;
  justify-content:center;
  align-items:center;
  width:92%;
  margin:0 auto 12px;
  padding:18px 14px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 18px 40px rgba(0,0,0,0.32);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  position:relative;
  overflow:hidden;
}

.price-container::before{
  content:"";
  position:absolute;
  inset:auto 10% 0 10%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.price-container::after{
  content:"";
  position:absolute;
  left:50%;
  top:16px;
  bottom:16px;
  width:1px;
  transform:translateX(-50%);
  background:linear-gradient(180deg, transparent, rgba(255,255,255,0.14), transparent);
}

.old-price,
.new-price{
  flex:1;
  position:relative;
  z-index:1;
}

.price-label{
  display:block;
  margin-bottom:6px;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--text-muted);
}

.price-strikethrough{
  font-size:22px;
  font-weight:600;
  color:rgba(255,255,255,0.42);
  text-decoration:line-through;
}

.price-today{
  display:inline-block;
  font-size:28px;
  font-weight:800;
  color:#ffffff;
  text-shadow:
    0 0 18px rgba(89,183,255,0.18),
    0 0 34px rgba(89,183,255,0.10);
}

/* ============================
   BULK PRICE / STOCK
============================ */
.bulk-pricing{
  width:92%;
  margin:12px auto 8px;
  padding:13px 14px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-sm);
  backdrop-filter:blur(18px);
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13px;
}

.bulk-pricing-title{
  font-size:11px;
  font-weight:800;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color:var(--text-soft);
  margin-bottom:2px;
}

.bulk-pricing-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  color:var(--text-soft);
}

.bulk-pricing-row span:first-child{
  text-align:left;
}

.bulk-price{
  white-space:nowrap;
  color:#fff;
  font-weight:700;
}

.stock-bar{
  position:relative;
  width:92%;
  margin:12px auto 0;
  height:30px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), var(--shadow-sm);
  backdrop-filter:blur(14px);
}

.stock-bar-fill{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:65%;
  border-radius:inherit;
  background:
    linear-gradient(90deg, rgba(70,128,255,0.95) 0%, rgba(89,183,255,0.95) 58%, rgba(190,244,255,0.95) 100%);
  box-shadow:0 0 20px rgba(89,183,255,0.40);
  animation:stockPulse 2.8s infinite ease-in-out;
}

.stock-bar-text{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  line-height:28px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.03em;
  color:#fff;
}

@keyframes stockPulse{
  0%{opacity:.84;}
  50%{opacity:1;}
  100%{opacity:.84;}
}

/* ============================
   BUTTONS
============================ */
.order-button{
  display:block;
  width:92%;
  margin:22px auto 0;
  padding:16px 18px;
  border:none;
  border-radius:999px;
  background:var(--white-btn);
  color:var(--white-btn-text);
  font-size:17px;
  font-weight:700;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.62),
    0 12px 30px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255,255,255,0.08);
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.order-button:hover{
  transform:translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 16px 34px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.10);
}

.order-button:active{
  transform:translateY(0);
}

.gradient-button{
  width:100%;
}

/* ============================
   FEATURES
============================ */
.features-section{
  width:100%;
  max-width:480px;
  padding:16px 16px 8px;
  display:flex;
  justify-content:center;
}

.features-container{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:16px 14px;
  gap:10px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), var(--shadow-sm);
  backdrop-filter:blur(18px);
}

.feature-item{
  display:flex;
  align-items:center;
  text-align:left;
  width:100%;
  padding:4px 0;
}

.feature-image{
  width:38px;
  height:38px;
  margin-right:12px;
  flex-shrink:0;
}

.feature-text{
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  flex:1;
}

.feature-image.emoji,
.order-image.emoji{
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.feature-image.emoji{
  font-size:20px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12);
}

.order-image.emoji{
  font-size:18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
}

/* ============================
   VIDEO
============================ */
.video-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad);
  text-align:center;
}

.video-container{
  position:relative;
  width:100%;
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), var(--shadow-lg);
  backdrop-filter:blur(18px);
}

.video-container iframe{
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  display:block;
  border:0;
}

.video-container video{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  background:#000;
}

/* ============================
   GALLERY
============================ */
.gallery-desc-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad) 10px;
  text-align:center;
}

.gdesc{
  width:100%;
  max-width:480px;
  margin:0 auto;
}

.gdesc-viewport{
  width:92%;
  margin:0 auto;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), var(--shadow-lg);
  background:rgba(255,255,255,0.06);
  touch-action:pan-y;
  position:relative;
  backdrop-filter:blur(20px);
}

.gdesc-track{
  display:flex;
  will-change:transform;
  transform:translateX(0px);
}

.gdesc-slide{
  flex:0 0 100%;
  min-width:100%;
  box-sizing:border-box;
  user-select:none;
}

.gdesc-card{
  border-radius:28px;
  overflow:hidden;
  background:transparent;
}

.gdesc-card img{
  width:100%;
  height:auto;
  display:block;
}

.gdesc-caption{
  padding:14px 14px 16px;
  font-size:14px;
  font-weight:500;
  line-height:1.45;
  text-align:left;
  color:var(--text-soft);
  background:linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border-top:1px solid rgba(255,255,255,0.08);
}

.gdesc-thumbs{
  width:92%;
  margin:18px auto 0;
  display:flex;
  justify-content:center;
  gap:10px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:2px;
}

.gdesc-thumbs::-webkit-scrollbar{
  height:0;
}

.gdesc-thumb{
  flex:0 0 auto;
  padding:4px;
  border:1px solid transparent;
  background:transparent;
  border-radius:16px;
  opacity:.56;
  cursor:pointer;
  transition:.2s;
}

.gdesc-thumb img{
  width:64px;
  height:64px;
  object-fit:cover;
  display:block;
  border-radius:12px;
}

.gdesc-thumb.active{
  opacity:1;
  border-color:rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.07);
  box-shadow:0 10px 22px rgba(0,0,0,0.24);
}

.gdesc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(17,21,28,0.72);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:5;
  backdrop-filter:blur(18px);
  transition:.2s;
  box-shadow:0 12px 28px rgba(0,0,0,0.30);
}

.gdesc-arrow:hover{
  background:rgba(27,35,48,0.86);
  box-shadow:0 0 22px rgba(89,183,255,0.18), 0 12px 28px rgba(0,0,0,0.34);
}

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

.gdesc-indicator{
  position:absolute;
  bottom:10px;
  right:14px;
  font-size:12px;
  font-weight:700;
  color:#fff;
  background:rgba(17,21,28,0.70);
  padding:5px 10px;
  border-radius:999px;
  backdrop-filter:blur(14px);
  z-index:4;
  border:1px solid rgba(255,255,255,0.10);
}

/* ============================
   DESCRIPTION ITEMS
============================ */
.description-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad) 10px;
  text-align:center;
}

.description-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius:22px;
  padding:8px 8px 12px;
  margin-bottom:18px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-md);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(18px);
}

.description-image{
  width:100%;
  border-radius:16px;
  box-shadow:0 16px 32px rgba(0,0,0,0.26);
  border:1px solid rgba(255,255,255,0.08);
  background:transparent;
}

.description-text{
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  max-width:92%;
  margin-top:10px;
  line-height:1.4;
}

/* ============================
   SPECS
============================ */
.specs-section{
  padding:24px var(--container-pad);
}

.specs-container{
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius:22px;
  padding:16px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-sm);
  backdrop-filter:blur(18px);
}

.specs-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 0;
  color:var(--text-soft);
  border-bottom:1px dashed rgba(255,255,255,0.10);
}

.specs-item:last-child{
  border-bottom:none;
}

.specs-name{
  opacity:.82;
  text-align:left;
}

.specs-value{
  font-weight:700;
  color:#fff;
  white-space:nowrap;
}

.dots{
  flex:1;
  height:1px;
  opacity:.22;
  border-bottom:1px dashed rgba(255,255,255,0.22);
}

/* ============================
   REVIEWS
============================ */
.reviews-section{
  padding:24px var(--container-pad);
  text-align:center;
}

.review-main{
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  padding:8px;
  border-radius:22px;
  margin-bottom:12px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-md);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(18px);
}

.review-image{
  display:none;
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
}

.review-image.active{
  display:block;
}

.reviews__info{
  color:var(--text-soft);
  margin-bottom:10px;
}

.reviews__name{
  font-size:15px;
  font-weight:700;
  color:#fff;
}

.reviews__comment{
  font-size:13px;
  color:var(--text-muted);
  margin-top:3px;
}

.review-thumbs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:14px;
}

.thumb{
  width:58px;
  height:58px;
  border-radius:14px;
  opacity:.48;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s;
  object-fit:cover;
  background:rgba(255,255,255,0.05);
}

.thumb.active{
  opacity:1;
  border-color:rgba(255,255,255,0.14);
  box-shadow:0 0 20px rgba(89,183,255,0.16), 0 10px 18px rgba(0,0,0,0.22);
}

/* ============================
   FAQ
============================ */
.faq-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad) 10px;
  text-align:left;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faq-item{
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), var(--shadow-sm);
  backdrop-filter:blur(18px);
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item.is-open{
  border-color:rgba(255,255,255,0.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 30px rgba(0,0,0,0.26), 0 0 22px rgba(89,183,255,0.10);
  transform:translateY(-1px);
}

.faq-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:15px 15px;
  background:transparent;
  border:0;
  cursor:pointer;
  color:var(--text);
  text-align:left;
}

.faq-title{
  font-size:15px;
  font-weight:700;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  flex:1;
}

.faq-chevron{
  width:34px;
  height:34px;
  border-radius:999px;
  flex:0 0 auto;
  position:relative;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10);
}

.faq-chevron::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:9px;
  height:9px;
  border-right:2px solid rgba(255,255,255,0.88);
  border-bottom:2px solid rgba(255,255,255,0.88);
  transform:rotate(45deg);
  top:1px;
}

.faq-item.is-open .faq-chevron{
  transform:rotate(180deg);
  background:rgba(89,183,255,0.14);
  border-color:rgba(89,183,255,0.22);
}

.faq-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}

.faq-body-inner{
  padding:12px 15px 16px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:14px;
  line-height:1.5;
  color:var(--text-soft);
}

/* ============================
   GUARANTEE
============================ */
.guarantee-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad);
  text-align:center;
}

.guarantee-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius:22px;
  padding:16px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-md);
  backdrop-filter:blur(18px);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.guarantee-item{
  display:flex;
  align-items:center;
  gap:12px;
  text-align:left;
}

.guarantee-icon{
  font-size:18px;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
}

.guarantee-text{
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
}

/* ============================
   HOW TO ORDER
============================ */
.how-to-order{
  width:100%;
  max-width:480px;
  padding:18px 16px 8px;
  text-align:center;
}

.order-step{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin-bottom:10px;
  padding:12px 12px;
  border-radius:18px;
  gap:10px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), var(--shadow-sm);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(18px);
}

.order-step:nth-child(odd){
  flex-direction:row;
}

.order-step:nth-child(even){
  flex-direction:row-reverse;
}

.order-image{
  width:40px;
  height:40px;
  border-radius:999px;
  flex-shrink:0;
}

.order-text{
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  flex:1;
  text-align:left;
}

/* ============================
   SOCIAL PROOF
============================ */
.social-proof-section{
  width:100%;
  max-width:480px;
  padding:12px 18px;
  text-align:center;
}

.social-proof-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border-radius:999px;
  padding:11px 16px;
  font-size:13px;
  font-weight:700;
  color:var(--text);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-sm);
  backdrop-filter:blur(18px);
}

/* ============================
   ORDER FORM
============================ */
.order-form-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad) 10px;
  text-align:center;
}

.order-form-section .product-image-container{
  margin-bottom:16px;
}

.order-form{
  background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
  padding:22px 16px 18px;
  border-radius:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.14), var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.12);
  text-align:left;
  backdrop-filter:blur(22px);
}

.order-form label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-soft);
  margin-bottom:2px;
  display:block;
}

.order-form input{
  width:100%;
  padding:14px 14px;
  font-size:16px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
  backdrop-filter:blur(14px);
}

.order-form input::placeholder{
  color:rgba(255,255,255,0.34);
}

.order-form input:focus{
  border-color:rgba(89,183,255,0.32);
  box-shadow:0 0 0 4px rgba(89,183,255,0.10), 0 0 22px rgba(89,183,255,0.08);
  background:rgba(255,255,255,0.08);
}

.checkbox-wrapper{
  margin-top:-4px;
  text-align:left;
}

.checkbox-label{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:12px;
  font-weight:500;
  line-height:1.4;
  color:var(--text-muted);
}

.checkbox-label input[type="checkbox"]{
  width:14px;
  height:14px;
  accent-color:#ffffff;
  cursor:pointer;
  flex-shrink:0;
  margin-top:2px;
}

.checkbox-label a{
  color:#fff;
  font-weight:600;
}

.checkbox-label a:hover{
  text-decoration:underline;
}

/* ============================
   FOOTER
============================ */
.footer{
  padding:12px 14px 12px;
  margin-top:10px;
  background:rgba(8,12,18,0.70);
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  color:var(--text-muted);
  backdrop-filter:blur(18px);
}

.footer-container{
  max-width:480px;
  margin:0 auto;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  margin:0;
}

.footer-link{
  color:var(--text-muted);
  font-size:13px;
  line-height:1.15;
  display:block;
}

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

.requisites-toggle{
  cursor:pointer;
  font-weight:700;
}

.requisites-panel{
  display:none;
  margin:10px auto 0;
  width:90%;
  padding:10px 10px;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10), var(--shadow-sm);
  color:var(--text-muted);
  font-size:12.5px;
  line-height:1.35;
  text-align:center;
  backdrop-filter:blur(16px);
}

.requisites-panel p{
  margin:4px 0;
}

.requisites-title{
  margin-bottom:6px;
  font-size:13px;
  font-weight:800;
  color:#fff;
}

.requisites-panel.open{
  display:block;
}

.footer-copy{
  margin-top:10px;
  font-size:11.5px;
  opacity:.62;
}

/* ============================
   REVEAL
============================ */
.description-item,
.specs-section,
.reviews-section,
.faq-section{
  opacity:0;
  transform:translateY(20px);
  transition:.6s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

/* ============================
   MOBILE TWEAKS
============================ */
@media (max-width:380px){
  .product-title{font-size:24px;}
  .section-title{font-size:17px;}
  .price-strikethrough,.price-today{font-size:22px;}
  .faq-title{font-size:14px;}
  .thumb{width:52px;height:52px;}
  .order-button{font-size:16px;}
}


.order-form{
  overflow: visible !important;
  padding-top:20px; /* добавляем воздух сверху */
}

.order-form label{
  display:block;
  font-size:11px;
  margin-bottom:6px;
  padding-left:6px;
  color:rgba(255,255,255,0.65);
}

.order-form input{
  margin-bottom:14px;
}