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

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

html {
    min-height: 100%;
    background: #f6f7fb;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111827;
    text-align: center;
    background: transparent;
    padding-bottom: 40px;
}

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

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

a{
  color:inherit;
}

/* ============================
   TYPO (LIGHT)
============================ */
.section-title,
.product-title{
  font-size:26px;
  font-weight:800;
  color:#111827;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:0.06em;
}

.product-title{
  font-size:28px;
}

/* чуть компактнее заголовки блоков */
.section-title{
  font-size:22px;
  margin-bottom:14px;
  color: rgba(17,24,39,0.85);
}

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

.top-marquee-inner{
  display:inline-flex;
  align-items:center;
  gap:24px;
  white-space:nowrap;
  padding:8px 16px;
  animation:marquee-slide 18s linear infinite;
  font-size:13px;
  font-weight:500;
  color: rgba(17,24,39,0.80);
}

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

/* ============================
   PRODUCT SECTION (LIGHT)
============================ */
.product-section{
  width:100%;
  padding:24px 18px 20px;
}

.product-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  margin-bottom:10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow:0 10px 20px rgba(37,99,235,0.22);
}

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

.product-image{
  max-width:100%;
  height:auto;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(17,24,39,0.18);
  border: 1px solid rgba(17,24,39,0.08);
  background: #fff;
}

/* оставим, но сделаем спокойной */
.product-label{
  position:absolute;
  top:10px;
  left:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:#ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow:0 10px 18px rgba(37,99,235,0.22);
}

/* ============================
   PRICE BLOCK (LIGHT)
============================ */
.price-container{
  display:flex;
  justify-content:center;
  align-items:center;
  background: #ffffff;
  padding:20px 16px;
  border-radius:20px;
  margin:20px auto 10px;
  width:92%;
  box-shadow:0 16px 34px rgba(17,24,39,0.10);
  border:1px solid rgba(17,24,39,0.08);
}

.old-price,
.new-price{
  flex:1;
  text-align:center;
}

.price-label{
  font-size:14px;
  font-weight:500;
  color:rgba(17,24,39,0.65);
  display:block;
  margin-bottom:6px;
}

.price-strikethrough{
  font-size:22px;
  font-weight:600;
  text-decoration:line-through;
  color:rgba(17,24,39,0.45);
}

.price-today{
  display:inline-block;
  font-size:26px;
  font-weight:800;
  color:#1f54de;
  text-shadow:none;
  animation: none; /* убираем пульс — классика */
  transform-origin:center;
}

/* Bulk pricing (LIGHT) */
.bulk-pricing{
  width:92%;
  margin:12px auto 8px;
  padding:10px 14px;
  border-radius:16px;
  background: #ffffff;
  box-shadow:0 12px 26px rgba(17,24,39,0.08);
  border:1px solid rgba(17,24,39,0.08);
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
}

.bulk-pricing-title{
  font-size:13px;
  font-weight:800;
  margin-bottom:8px;
  color:rgba(17,24,39,0.75);
}

.bulk-pricing-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#111827;
}

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

.bulk-price{
  font-weight:700;
  color:#1d4ed8;
}

/* Stock bar (LIGHT) */
.stock-bar{
  position:relative;
  width:92%;
  margin:10px auto 0;
  height:30px;
  border-radius:999px;
  overflow:hidden;
  background: #ffffff;
  border:1px solid rgba(17,24,39,0.10);
  box-shadow:0 10px 22px rgba(17,24,39,0.08);
}

.stock-bar-fill{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:65%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  animation:stockPulse 2.5s infinite ease-in-out;
}

.stock-bar-text{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  line-height:28px;
  font-size:13px;
  font-weight:600;
  color: rgba(17,24,39,0.80);
}

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

/* ============================
   BUTTONS (LIGHT)
============================ */
.order-button{
  display:block;
  margin:22px auto 0;
  padding:16px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color:#ffffff;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  border-radius:12px;
  width:92%;
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 14px 26px rgba(37,99,235,0.22);
  cursor:pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
  position:relative;
  overflow:hidden;
}

.order-button:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 32px rgba(37,99,235,0.26);
  opacity:0.98;
}

/* shine (оставим мягко) */
.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.35),
    transparent 70%);
  transition:0.6s;
}
.order-button:hover::after{
  left:100%;
}

/* gradient-button is used on submit button together with .order-button */
.gradient-button{
  width:100%;
}

/* ============================
   FEATURES (LIGHT)
============================ */
.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:12px 14px;
  gap:6px;
  border-radius:16px;
  box-shadow:0 10px 22px rgba(17,24,39,0.08);
  background: #ffffff;
  border:1px solid rgba(17,24,39,0.08);
}

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

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

.feature-text{
  font-size:14px;
  font-weight:500;
  color:#111827;
  flex:1;
}

/* emoji blocks */
.feature-image.emoji,
.order-image.emoji{
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.feature-image.emoji{ font-size:26px; }
.order-image.emoji{
  font-size:22px;
  background: rgba(17,24,39,0.04);
  border:1px solid rgba(17,24,39,0.08);
}


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

/* Контейнер видео: без обрезки, с приятным фоном */
.video-container{
  position:relative;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(17,24,39,0.12);
  border:1px solid rgba(17,24,39,0.08);
  background:#000; /* фон под "поля" у вертикальных */
}

/* YouTube (iframe): адаптивная рамка 16:9, НЕ обрезает */
.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;     /* ключевое: contain вместо cover */
  background:#000;        /* чтобы поля выглядели нормально */
  border-radius:0;
}

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

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

.gdesc-viewport{
  width:92%;
  margin:0 auto;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(17,24,39,0.08);
  box-shadow:0 18px 36px rgba(17,24,39,0.10);
  background: #ffffff;
  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:22px;
  overflow:hidden;
}

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

.gdesc-caption{
  padding:14px 14px 16px;
  font-size:14px;
  font-weight:500;
  line-height:1.4;
  text-align:left;
  color: rgba(17,24,39,0.88);
  background: rgba(17,24,39,0.02);
  border-top:1px solid rgba(17,24,39,0.08);
}

/* thumbs */
.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:0;
  border:2px solid transparent;
  background:transparent;
  border-radius:14px;
  opacity:0.55;
  cursor:pointer;
  transition:0.2s;
}

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

.gdesc-thumb.active{
  opacity:1;
  border-color:#2563eb;
  box-shadow:0 10px 20px rgba(17,24,39,0.10);
}

/* arrows + indicator */
.gdesc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background: rgba(255,255,255,0.92);
  color:#111827;
  font-size:22px;
  cursor:pointer;
  z-index:5;
  backdrop-filter: blur(4px);
  transition:0.2s;
  box-shadow: 0 10px 18px rgba(17,24,39,0.10);
  border: 1px solid rgba(17,24,39,0.10);
}

.gdesc-arrow:hover{ background: rgba(255,255,255,1); }
.gdesc-prev{ left:10px; }
.gdesc-next{ right:10px; }

.gdesc-indicator{
  position:absolute;
  bottom:10px;
  right:14px;
  font-size:13px;
  font-weight:500;
  color: rgba(17,24,39,0.75);
  background: rgba(255,255,255,0.92);
  padding:4px 10px;
  border-radius:999px;
  backdrop-filter: blur(4px);
  z-index:4;
  border: 1px solid rgba(17,24,39,0.10);
}

/* ============================
   DESCRIPTION BLOCK (LIGHT)
============================ */
.description-section{
  width:100%;
  max-width:480px;
  padding:22px 18px 10px;
  text-align:center;
}

.description-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background: #ffffff;
  border-radius:20px;
  padding:14px 12px;
  margin-bottom:18px;
  box-shadow:0 16px 30px rgba(17,24,39,0.10);
  border:1px solid rgba(17,24,39,0.08);
}

.description-image{
  width:100%;
  border-radius:14px;
  box-shadow:0 14px 26px rgba(17,24,39,0.12);
  border:1px solid rgba(17,24,39,0.08);
  background:#fff;
}

.description-text{
  font-size:16px;
  font-weight:600;
  color:#111827;
  max-width:90%;
  margin-top:10px;
}

/* ============================
   SPECS (LIGHT)
============================ */
.specs-section{
  padding:22px 18px;
}

.specs-container{
  background: #ffffff;
  border-radius:18px;
  padding:16px;
  border:1px solid rgba(17,24,39,0.08);
  box-shadow:0 10px 22px rgba(17,24,39,0.08);
}

.specs-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 0;
  color:#111827;
  border-bottom:1px dashed rgba(17,24,39,0.12);
}

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

.specs-name{ opacity:0.75; }
.specs-value{ font-weight:600; }

/* если у тебя есть <span class="dots"></span> — пусть будет "разделителем" */
.dots{
  flex:1;
  height:1px;
  opacity:0.25;
  border-bottom:1px dashed rgba(17,24,39,0.25);
}

/* ============================
   REVIEWS (LIGHT)
============================ */
.reviews-section{
  padding:22px 18px;
  text-align:center;
}

.review-main{
  background: #ffffff;
  padding:12px;
  border-radius:18px;
  margin-bottom:12px;
  box-shadow:0 12px 24px rgba(17,24,39,0.10);
  border:1px solid rgba(17,24,39,0.08);
}

.review-image{
  display:none;
  width:100%;
  border-radius:14px;
  border:1px solid rgba(17,24,39,0.08);
}

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

.reviews__info{
  color:#111827;
  margin-bottom:8px;
}

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

.reviews__comment{
  font-size:13px;
  opacity:0.75;
}

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

.thumb{
  width:70px;
  height:70px;
  border-radius:12px;
  opacity:0.5;
  border:2px solid transparent;
  cursor:pointer;
  transition:0.2s;
  object-fit:cover;
}

.thumb.active{
  opacity:1;
  border-color:#2563eb;
}

/* ============================
   FAQ (LIGHT)
============================ */
.faq-section{
  width:100%;
  max-width:480px;
  padding:22px 18px 10px;
  text-align:left;
}

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

.faq-item{
  border-radius:18px;
  overflow:hidden;
  background: #ffffff;
  border:1px solid rgba(17,24,39,0.08);
  box-shadow:0 14px 26px rgba(17,24,39,0.08);
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item.is-open{
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 18px 34px rgba(17,24,39,0.12);
  transform: translateY(-1px);
}

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

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

.faq-chevron{
  width:34px;
  height:34px;
  border-radius:10px;
  flex:0 0 auto;
  position:relative;
  background: rgba(17,24,39,0.03);
  border:1px solid rgba(17,24,39,0.10);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.faq-chevron::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:10px;
  height:10px;
  border-right:2px solid rgba(37,99,235,0.95);
  border-bottom:2px solid rgba(37,99,235,0.95);
  transform: rotate(45deg);
  top:2px;
}

.faq-item.is-open .faq-chevron{
  transform: rotate(180deg);
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.20);
}

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

.faq-body-inner{
  padding:12px 16px 16px;
  border-top:1px solid rgba(17,24,39,0.08);
  font-size:14px;
  line-height:1.45;
  color: rgba(17,24,39,0.82);
}

/* ============================
   GUARANTEE (LIGHT)
============================ */
.guarantee-section{
  width:100%;
  max-width:480px;
  padding:22px 18px;
  text-align:center;
}

.guarantee-card{
  background: #ffffff;
  border-radius:20px;
  padding:16px;
  border:1px solid rgba(17,24,39,0.08);
  box-shadow:0 18px 30px rgba(17,24,39,0.10);
  display:flex;
  flex-direction:column;
  gap:14px;
}

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

.guarantee-icon{
  font-size:22px;
}

.guarantee-text{
  font-size:14px;
  font-weight:500;
  color:#111827;
}

/* ============================
   HOW TO ORDER (LIGHT)
============================ */
.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:10px 12px;
  border-radius:14px;
  gap:10px;
  background: #ffffff;
  box-shadow:0 10px 20px rgba(17,24,39,0.08);
  border:1px solid rgba(17,24,39,0.08);
}

.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:12px;
  flex-shrink:0;
}

.order-text{
  font-size:14px;
  font-weight:500;
  color:#111827;
  flex:1;
  text-align:left;
}

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

.social-proof-card{
  background: #ffffff;
  border-radius:999px;
  padding:10px 16px;
  font-size:13px;
  font-weight:600;
  color:#1d4ed8;
  border:1px solid rgba(17,24,39,0.08);
  box-shadow:0 10px 20px rgba(17,24,39,0.08);
}

/* ============================
   ORDER FORM (LIGHT)
============================ */
.order-form-section{
  width:100%;
  max-width:480px;
  padding:22px 18px 10px;
  text-align:center;
}

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

.order-form{
  background: #ffffff;
  padding:22px 18px 18px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
  box-shadow:0 18px 34px rgba(17,24,39,0.12);
  border:1px solid rgba(17,24,39,0.08);
  text-align:left;
}

.order-form label{
  font-size:12px;
  font-weight:600;
  color:#111827;
  margin-bottom:2px;
  display:block;
}

.order-form input{
  width:100%;
  padding:12px 14px;
  font-size:16px;
  border:1px solid rgba(17,24,39,0.14);
  border-radius:12px;
  background: #ffffff;
  color:#111827;
  outline:none;
}

.order-form input::placeholder{
  color: rgba(17,24,39,0.45);
}

.order-form input:focus{
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

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

.checkbox-label{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:12px;
  font-weight:400;
  line-height:1.35;
  color: rgba(17,24,39,0.75);
}

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

.checkbox-label a{
  color:#2563eb;
  font-weight:600;
  text-decoration:none;
}

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

/* ============================
   FOOTER (LIGHT)
============================ */
.footer{
  padding:12px 14px 12px;
  margin-top:10px;
  background: #ffffff;
  border-top:1px solid rgba(17,24,39,0.08);
  text-align:center;
  color: rgba(17,24,39,0.70);
}

.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: rgba(17,24,39,0.72);
  text-decoration:none;
  font-size:13px;
  line-height:1.1;
  display:block;
}

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

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

.requisites-panel{
  display:none;
  margin:10px auto 0;
  width:90%;
  padding:10px 10px;
  border-radius:14px;
  background: rgba(17,24,39,0.03);
  border:1px solid rgba(17,24,39,0.08);
  box-shadow:0 10px 18px rgba(17,24,39,0.08);
  color: rgba(17,24,39,0.75);
  font-size:12.5px;
  line-height:1.25;
  text-align:center;
}

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

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

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

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

/* ============================
   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);
}