/* ============================
   БАЗА И ГЛОБАЛЬНЫЙ ФОН (DARK PREMIUM)
============================ */

:root{
  --bg:#06070b;
  --bg-2:#0b0d14;
  --surface:#10131c;
  --surface-2:#151927;
  --surface-3:#1a1f31;
  --text:#f5f7ff;
  --muted:#c2c8d8;
  --muted-2:#9ba3bb;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.14);

  --primary:#8b5cf6;
  --primary-2:#a855f7;
  --accent:#ec4899;
  --accent-2:#d946ef;
  --blue:#6366f1;

  --grad-main:linear-gradient(135deg, #8b5cf6 0%, #d946ef 55%, #f472b6 100%);
  --grad-dark:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  --grad-card:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));

  --shadow-sm:0 8px 18px rgba(0,0,0,0.28);
  --shadow-md:0 14px 30px rgba(0,0,0,0.34);
  --shadow-lg:0 20px 50px rgba(0,0,0,0.42);
  --shadow-glow:0 0 0 1px rgba(255,255,255,0.05), 0 12px 35px rgba(168,85,247,0.18), 0 6px 20px rgba(236,72,153,0.12);

  --radius-xs:10px;
  --radius-sm:14px;
  --radius-md:18px;
  --radius-lg:22px;
  --radius-xl:28px;
}

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

html{
    min-height:100%;
    background:
      radial-gradient(circle at top center, rgba(168,85,247,0.16), transparent 28%),
      radial-gradient(circle at 20% 18%, rgba(236,72,153,0.10), transparent 22%),
      linear-gradient(180deg, #05060a 0%, #090b12 35%, #06070b 100%);
}

body{
    font-family:"Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color:var(--text);
    text-align:center;
    background:transparent;
    padding-bottom:42px;
    line-height:1.45;
    font-size:16px;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Контейнер лендинга */
.page{
    width:100%;
    max-width:480px;
    margin:0 auto;
    position:relative;
}

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

a{
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}

/* ============================
   TYPO
============================ */
.section-title,
.product-title{
  font-weight:800;
  color:var(--text);
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:0.05em;
  line-height:1.15;
}

.product-title{
  font-size:32px;
  text-shadow:0 2px 12px rgba(0,0,0,0.35);
}

.section-title{
  font-size:20px;
  color:rgba(245,247,255,0.94);
}

/* ============================
   TOP MARQUEE
============================ */
.top-marquee{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  max-width:480px;
  margin:0 auto;
  background:rgba(10,12,18,0.82);
  border-bottom:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 26px rgba(0,0,0,0.30);
  overflow:hidden;
  backdrop-filter:blur(12px);
}

.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:13px;
  font-weight:600;
  color:rgba(245,247,255,0.80);
}

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

/* ============================
   PRODUCT SECTION
============================ */
.product-section{
  width:100%;
  padding:22px 16px 18px;
}

.product-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  margin-bottom:12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.07em;
  text-transform:uppercase;
  color:#fff;
  background:var(--grad-main);
  box-shadow:0 10px 22px rgba(168,85,247,0.30);
}

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

.product-image{
  max-width:100%;
  height:auto;
  border-radius:22px;
  box-shadow:var(--shadow-glow);
  border:1px solid rgba(255,255,255,0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.product-label{
  position:absolute;
  top:10px;
  left:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#fff;
  background:var(--grad-main);
  box-shadow:0 10px 22px rgba(168,85,247,0.28);
}

/* ============================
   PRICE BLOCK
============================ */
.price-container{
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(18,22,34,0.94);
  padding:16px 12px;
  border-radius:16px;
  margin:16px auto 10px;
  width:92%;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  overflow:hidden;
}

.price-container::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(168,85,247,0.10), transparent 35%, rgba(236,72,153,0.10));
  pointer-events:none;
}

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

.price-label{
  font-size:12px;
  font-weight:600;
  color:rgba(245,247,255,0.66);
  display:block;
  margin-bottom:5px;
}

.price-strikethrough{
  font-size:20px;
  font-weight:700;
  text-decoration:line-through;
  color:rgba(245,247,255,0.44);
}

.price-today{
  display:inline-block;
  font-size:26px;
  font-weight:900;
  color:#ffffff;
  text-shadow:0 0 18px rgba(168,85,247,0.35);
  animation:none;
  transform-origin:center;
  line-height:1;
}

/* Bulk pricing */
.bulk-pricing{
  width:92%;
  margin:10px auto 8px;
  padding:13px 14px;
  border-radius:16px;
  background:rgba(18,22,34,0.90);
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13px;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.bulk-pricing::before{
  content:"";
  position:absolute;
  inset:auto -30% -60% auto;
  width:160px;
  height:160px;
  background:radial-gradient(circle, rgba(168,85,247,0.18), transparent 60%);
  pointer-events:none;
}

.bulk-pricing-title{
  font-size:13px;
  font-weight:800;
  margin-bottom:6px;
  color:rgba(245,247,255,0.86);
  position:relative;
  z-index:1;
}

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

.bulk-pricing-row span:first-child{
  opacity:0.82;
}

.bulk-price{
  font-weight:800;
  font-size:13px;
  color:#d8b4fe;
  white-space:nowrap;
}

/* Stock bar */
.stock-bar{
  position:relative;
  width:92%;
  margin:10px auto 0;
  height:26px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-sm);
}

.stock-bar-fill{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:65%;
  background:var(--grad-main);
  animation:stockPulse 2.5s infinite ease-in-out;
}

.stock-bar-text{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  line-height:24px;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,0.94);
}

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

/* ============================
   BUTTONS
============================ */
.order-button{
  display:block;
  margin:16px auto 0;
  padding:15px 16px;
  background:var(--grad-main);
  color:#fff;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  border-radius:10px;
  width:92%;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 28px rgba(168,85,247,0.24), 0 8px 18px rgba(236,72,153,0.14);
  cursor:pointer;
  transition:transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease, filter 0.14s ease;
  position:relative;
  overflow:hidden;
}

.order-button:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 32px rgba(168,85,247,0.30), 0 10px 20px rgba(236,72,153,0.18);
  opacity:0.99;
  filter:saturate(1.05);
}

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

.order-button::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
  opacity:0.25;
  pointer-events:none;
}

.order-button::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22), transparent 70%);
  transition:0.7s;
}
.order-button:hover::after{
  left:100%;
}

.gradient-button{
  width:100%;
}

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

.features-container{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:14px 14px;
  gap:10px;
  border-radius:16px;
  box-shadow:var(--shadow-md);
  background:rgba(18,22,34,0.92);
  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  overflow:hidden;
}

.features-container::before{
  content:"";
  position:absolute;
  top:-40px;
  right:-40px;
  width:120px;
  height:120px;
  background:radial-gradient(circle, rgba(168,85,247,0.16), transparent 65%);
  pointer-events:none;
}

.feature-item{
  display:flex;
  align-items:center;
  text-align:left;
  width:100%;
  padding:2px 0;
  position:relative;
  z-index:1;
}

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

.feature-text{
  font-size:13.5px;
  font-weight:600;
  color:rgba(245,247,255,0.94);
  flex:1;
  line-height:1.45;
}

.feature-image.emoji,
.order-image.emoji{
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.feature-image.emoji{
  font-size:18px;
}
.order-image.emoji{
  font-size:18px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}

/* ============================
   VIDEO — НЕ РЕЖЕМ ВЕРТИКАЛЬНЫЕ
============================ */
.video-section{
  width:100%;
  max-width:480px;
  padding:20px 16px;
  text-align:center;
}

.video-container{
  position:relative;
  width:92%;
  margin:0 auto;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.08);
  background:#000;
}

.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;
  border-radius:0;
}

/* ============================
   GALLERY-DESCRIPTION (SWIPE)
============================ */
.gallery-desc-section{
  width:100%;
  max-width:480px;
  padding:20px 16px 10px;
  text-align:center;
}

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

.gdesc-viewport{
  width:92%;
  margin:0 auto;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-lg);
  background:rgba(18,22,34,0.92);
  touch-action:pan-y;
  position:relative;
}

.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:18px;
  overflow:hidden;
}

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

.gdesc-caption{
  padding:13px 12px 15px;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
  text-align:left;
  color:rgba(245,247,255,0.88);
  background:rgba(255,255,255,0.02);
  border-top:1px solid rgba(255,255,255,0.08);
}

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

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

.gdesc-thumb{
  flex:0 0 auto;
  padding:0;
  border:2px solid transparent;
  background:transparent;
  border-radius:10px;
  opacity:0.52;
  cursor:pointer;
  transition:0.2s;
}

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

.gdesc-thumb.active{
  opacity:1;
  border-color:#c084fc;
  box-shadow:0 8px 16px rgba(168,85,247,0.18);
}

/* arrows + indicator */
.gdesc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border-radius:50%;
  border:none;
  background:rgba(16,19,28,0.88);
  color:#fff;
  font-size:17px;
  cursor:pointer;
  z-index:5;
  backdrop-filter:blur(6px);
  transition:0.2s;
  box-shadow:0 8px 18px rgba(0,0,0,0.30);
  border:1px solid rgba(255,255,255,0.10);
}

.gdesc-arrow:hover{
  background:rgba(24,28,40,0.96);
}
.gdesc-prev{ left:8px; }
.gdesc-next{ right:8px; }

.gdesc-indicator{
  position:absolute;
  bottom:8px;
  right:10px;
  font-size:11px;
  font-weight:700;
  color:rgba(255,255,255,0.90);
  background:rgba(16,19,28,0.86);
  padding:4px 8px;
  border-radius:999px;
  backdrop-filter:blur(4px);
  z-index:4;
  border:1px solid rgba(255,255,255,0.08);
}

/* ============================
   DESCRIPTION BLOCK
============================ */
.description-section{
  width:100%;
  max-width:480px;
  padding:20px 16px 10px;
  text-align:center;
}

.description-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:rgba(18,22,34,0.92);
  border-radius:14px;
  padding:7px 7px 12px;
  margin-bottom:12px;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(255,255,255,0.08);
}

.description-image{
  width:100%;
  border-radius:10px;
  box-shadow:none;
  border:1px solid rgba(255,255,255,0.08);
  background:#111;
}

.description-text{
  font-size:13px;
  font-weight:600;
  color:rgba(245,247,255,0.90);
  max-width:96%;
  margin-top:8px;
  line-height:1.5;
}

/* ============================
   SPECS
============================ */
.specs-section{
  padding:20px 16px;
}

.specs-container{
  background:rgba(18,22,34,0.92);
  border-radius:14px;
  padding:14px 14px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-md);
}

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

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

.specs-name{
  opacity:0.78;
  text-align:left;
}
.specs-value{
  font-weight:700;
  text-align:right;
  color:#f5d0fe;
}

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

/* ============================
   REVIEWS
============================ */
.reviews-section{
  padding:20px 16px;
  text-align:center;
}

.review-main{
  background:rgba(18,22,34,0.92);
  padding:7px 7px 12px;
  border-radius:14px;
  margin-bottom:12px;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(255,255,255,0.08);
}

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

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

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

.reviews__name{
  font-size:13px;
  font-weight:800;
}

.reviews__comment{
  font-size:12px;
  opacity:0.78;
  color:rgba(245,247,255,0.74);
}

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

.thumb{
  width:28px;
  height:28px;
  border-radius:7px;
  opacity:0.48;
  border:1px solid transparent;
  cursor:pointer;
  transition:0.2s;
  object-fit:cover;
}

.thumb.active{
  opacity:1;
  border-color:#c084fc;
  box-shadow:0 6px 14px rgba(168,85,247,0.18);
}

/* ============================
   FAQ
============================ */
.faq-section{
  width:100%;
  max-width:480px;
  padding:20px 16px 10px;
  text-align:left;
}

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

.faq-item{
  border-radius:12px;
  overflow:hidden;
  background:rgba(18,22,34,0.92);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-sm);
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item.is-open{
  border-color:rgba(192,132,252,0.34);
  box-shadow:0 14px 26px rgba(168,85,247,0.14);
  transform:translateY(-1px);
}

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

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

.faq-chevron{
  width:24px;
  height:24px;
  border-radius:7px;
  flex:0 0 auto;
  position:relative;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}

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

.faq-item.is-open .faq-chevron{
  transform:rotate(180deg);
  background:rgba(168,85,247,0.12);
  border-color:rgba(192,132,252,0.24);
}

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

.faq-body-inner{
  padding:12px 12px 14px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:13px;
  line-height:1.6;
  color:rgba(245,247,255,0.80);
}

/* ============================
   GUARANTEE
============================ */
.guarantee-section{
  width:100%;
  max-width:480px;
  padding:20px 16px;
  text-align:center;
}

.guarantee-card{
  background:rgba(18,22,34,0.92);
  border-radius:14px;
  padding:14px 12px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
  gap:12px;
}

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

.guarantee-icon{
  font-size:18px;
  flex-shrink:0;
}

.guarantee-text{
  font-size:13px;
  font-weight:600;
  color:rgba(245,247,255,0.92);
  line-height:1.45;
}

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

.order-step{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin-bottom:8px;
  padding:10px 10px;
  border-radius:10px;
  gap:8px;
  background:rgba(18,22,34,0.92);
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(255,255,255,0.08);
}

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

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

.order-text{
  font-size:13px;
  font-weight:600;
  color:rgba(245,247,255,0.90);
  flex:1;
  text-align:left;
  line-height:1.45;
}

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

.social-proof-card{
  background:rgba(18,22,34,0.92);
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
  color:#f5d0fe;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* ============================
   ORDER FORM
============================ */
.order-form-section{
  width:100%;
  max-width:480px;
  padding:20px 16px 10px;
  text-align:center;
}

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

.order-form{
  background:rgba(18,22,34,0.94);
  padding:18px 14px 16px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  gap:13px;
  width:100%;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.08);
  text-align:left;
  position:relative;
  overflow:hidden;
}

.order-form::before{
  content:"";
  position:absolute;
  top:-50px;
  right:-50px;
  width:150px;
  height:150px;
  background:radial-gradient(circle, rgba(168,85,247,0.16), transparent 62%);
  pointer-events:none;
}

.order-form label{
  font-size:12px;
  font-weight:700;
  color:rgba(245,247,255,0.90);
  margin-bottom:4px;
  display:block;
}

.order-form input{
  width:100%;
  padding:12px 12px;
  font-size:16px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:10px;
  background:rgba(255,255,255,0.04);
  color:var(--text);
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

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

.order-form input:focus{
  border-color:rgba(192,132,252,0.40);
  box-shadow:0 0 0 3px rgba(168,85,247,0.12);
  background:rgba(255,255,255,0.06);
}

/* checkbox */
.checkbox-wrapper{
  margin-top:-2px;
  text-align:left;
}

.checkbox-label{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:12px;
  font-weight:500;
  line-height:1.5;
  color:rgba(245,247,255,0.74);
}

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

.checkbox-label a{
  color:#d8b4fe;
  font-weight:700;
  text-decoration:none;
}

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

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

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

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

.footer-link{
  color:rgba(245,247,255,0.72);
  text-decoration:none;
  font-size:13px;
  line-height:1.2;
  display:block;
}

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

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

.requisites-panel{
  display:none;
  margin:10px auto 0;
  width:92%;
  padding:12px 10px;
  border-radius:12px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-sm);
  color:rgba(245,247,255,0.74);
  font-size:12.5px;
  line-height:1.45;
  text-align:center;
}

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

.requisites-title{
  margin-bottom:6px;
  font-size:13px;
  font-weight:800;
  color:var(--text);
}

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

.footer-copy{
  margin-top:10px;
  font-size:12px;
  opacity:0.62;
}

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

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

/* ============================
   EXTRA SAFE POLISH
============================ */
.product-section,
.features-section,
.video-section,
.gallery-desc-section,
.description-section,
.specs-section,
.reviews-section,
.faq-section,
.guarantee-section,
.how-to-order,
.social-proof-section,
.order-form-section{
  position:relative;
}

.feature-text,
.description-text,
.guarantee-text,
.order-text,
.faq-body-inner,
.checkbox-label,
.footer-link,
.requisites-panel{
  word-break:break-word;
}

@media (max-width:380px){
  .product-title{
    font-size:28px;
  }

  .section-title{
    font-size:18px;
  }

  .price-today{
    font-size:23px;
  }

  .price-strikethrough{
    font-size:17px;
  }

  .order-button{
    font-size:15px;
    padding:14px 14px;
  }

  .faq-title{
    font-size:12px;
  }

  .feature-text,
  .description-text,
  .order-text,
  .faq-body-inner,
  .guarantee-text{
    font-size:12.5px;
  }
}

@media (min-width:481px){
  .page{
    max-width:480px;
  }
}