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

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

html {
    min-height: 100%;
    background: radial-gradient(circle at top, #1e2434 0%, #070914 45%, #020308 100%);
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f5f5f7;
    text-align: center;
    background: transparent; /* фон убрали с body */
    padding-bottom: 40px;
}

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


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

a{
  color:inherit;
}

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

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

/* чуть компактнее заголовки блоков */
.section-title{
  font-size:22px;
  margin-bottom:14px;
}

/* ============================
   TOP MARQUEE
============================ */
.top-marquee{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  max-width:480px;
  margin:0 auto;
  background: radial-gradient(circle at top, rgba(40, 44, 70, 0.98) 0%, rgba(10, 12, 22, 1) 70%);
  border-bottom:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.8);
  overflow:hidden;
}

.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:#f5f5f7;
}

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

/* ============================
   PRODUCT SECTION
============================ */
.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:#14151f;
  background: linear-gradient(135deg, #ff7a1a, #ffb347);
  box-shadow:0 8px 18px rgba(255,140,60,0.55);
}

.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(0,0,0,0.8);
}

.product-label{
  position:absolute;
  top:10px;
  left:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:#14151f;
  background: linear-gradient(135deg, #ff4b2b, #ffb347);
  box-shadow:0 10px 20px rgba(0,0,0,0.7);
}

/* ============================
   PRICE BLOCK
============================ */
.price-container{
  display:flex;
  justify-content:center;
  align-items:center;
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.12) 0%,
    rgba(33,37,54,0.95) 40%,
    rgba(7,9,20,1) 100%);
  padding:20px 16px;
  border-radius:20px;
  margin:20px auto 10px;
  width:92%;
  box-shadow:0 18px 38px rgba(0,0,0,0.85);
  border:1px solid rgba(255,255,255,0.06);
}

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

.price-label{
  font-size:14px;
  font-weight:500;
  color:rgba(235,237,245,0.85);
  display:block;
  margin-bottom:6px;
}

.price-strikethrough{
  font-size:22px;
  font-weight:600;
  text-decoration:line-through;
  color:rgba(180,183,199,0.9);
}

.price-today{
  display:inline-block;
  font-size:26px;
  font-weight:800;
  color:#ffc35b;
  text-shadow:0 0 12px rgba(255,177,71,0.7);
  animation:pricePulse 1.6s infinite ease-in-out;
  transform-origin:center;
}

@keyframes pricePulse{
  0%{ transform:scale(1); text-shadow:0 0 8px rgba(255,177,71,0.4); }
  50%{ transform:scale(1.07); text-shadow:0 0 18px rgba(255,196,115,1); }
  100%{ transform:scale(1); text-shadow:0 0 8px rgba(255,177,71,0.4); }
}

/* Bulk pricing */
.bulk-pricing{
  width:92%;
  margin:12px auto 8px;
  padding:10px 14px;
  border-radius:16px;
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.10) 0%,
    rgba(24,27,46,0.98) 40%,
    rgba(7,9,20,1) 100%);
  box-shadow:0 14px 32px rgba(0,0,0,0.85);
  border:1px solid rgba(255,255,255,0.06);
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
}

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

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

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

/* Stock bar */
.stock-bar{
  position:relative;
  width:92%;
  margin:10px auto 0;
  height:30px;
  border-radius:999px;
  overflow:hidden;
  background: rgba(9,10,20,0.95);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 10px 24px rgba(0,0,0,0.8);
}

.stock-bar-fill{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:65%;
  background: linear-gradient(135deg, #ff7a1a, #ffb347);
  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:#f5f5f7;
}

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

/* ============================
   BUTTONS
============================ */
.order-button{
  display:block;
  margin:22px auto 0;
  padding:16px;
  background: linear-gradient(135deg, #ff7a1a, #ffb347);
  color:#14151f;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  border-radius:999px;
  width:92%;
  border:none;
  box-shadow:0 12px 28px rgba(255,140,60,0.55);
  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 16px 34px rgba(255,140,60,0.8);
  opacity:0.96;
}

/* 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.4),
    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 (compact)
============================ */
.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 26px rgba(0,0,0,0.7);
  background: linear-gradient(135deg,
    rgba(40,45,70,.95) 0%,
    rgba(17,21,40,.98) 50%,
    rgba(8,9,20,1) 100%);
  border:1px solid rgba(255,255,255,0.06);
}

.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:#fff;
  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(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}

/* ============================
   VIDEO
============================ */
.video-section{
  width:100%;
  max-width:480px;
  padding:22px 18px;
  text-align:center;
}

.video-container{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(0,0,0,0.9);
  border:1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at top, #262b3f 0%, #050814 70%);
}

.video-container iframe,
.video-container video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.video-container video{
  border-radius:0;
  object-fit:cover;
}

/* ============================
   GALLERY-DESCRIPTION (SWIPE)
============================ */
.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(255,255,255,0.08);
  box-shadow:0 18px 42px rgba(0,0,0,0.9);
  background: radial-gradient(circle at top, #262b3f 0%, #050814 70%);
  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(245,245,247,0.95);
  background: rgba(0,0,0,0.20);
  border-top:1px solid rgba(255,255,255,0.06);
}

/* 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:#ffc35b;
  box-shadow:0 10px 24px rgba(0,0,0,0.55);
}

/* arrows + indicator */
.gdesc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background: rgba(0,0,0,0.45);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:5;
  backdrop-filter: blur(4px);
  transition:0.2s;
}

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

.gdesc-indicator{
  position:absolute;
  bottom:10px;
  right:14px;
  font-size:13px;
  font-weight:500;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  padding:4px 10px;
  border-radius:999px;
  backdrop-filter: blur(4px);
  z-index:4;
}

/* ============================
   DESCRIPTION BLOCK
============================ */
.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: radial-gradient(circle at top left,
    rgba(255,255,255,0.08) 0%,
    rgba(20,24,40,0.98) 45%,
    rgba(6,7,18,1) 100%);
  border-radius:20px;
  padding:14px 12px;
  margin-bottom:18px;
  box-shadow:0 16px 40px rgba(0,0,0,0.85);
  border:1px solid rgba(255,255,255,0.05);
}

.description-image{
  width:100%;
  border-radius:14px;
  box-shadow:0 14px 30px rgba(0,0,0,0.8);
}

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

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

.specs-container{
  background: linear-gradient(135deg,#262b3f,#0c0f1a);
  border-radius:18px;
  padding:16px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 8px 24px rgba(0,0,0,0.6);
}

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

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

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

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

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

.review-main{
  background: linear-gradient(135deg,#2a2f46,#090b14);
  padding:12px;
  border-radius:18px;
  margin-bottom:12px;
  box-shadow:0 12px 32px rgba(0,0,0,0.7);
}

.review-image{
  display:none;
  width:100%;
  border-radius:14px;
}

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

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

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

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

.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:#ffc35b;
}

/* ============================
   FAQ
============================ */
.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: linear-gradient(135deg,
    rgba(38, 44, 70, 0.98) 0%,
    rgba(13, 16, 30, 0.98) 70%,
    rgba(5, 7, 16, 1) 100%);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 34px rgba(0,0,0,0.75);
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item.is-open{
  border-color: rgba(255,195,91,0.60);
  box-shadow: 0 18px 44px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,195,91,0.20) inset;
  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:#fff;
  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(255,255,255,0.06);
  border:1px solid rgba(255,255,255,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(255,195,91,0.95);
  border-bottom:2px solid rgba(255,195,91,0.95);
  transform: rotate(45deg);
  top:2px;
}

.faq-item.is-open .faq-chevron{
  transform: rotate(180deg);
  background: rgba(255,195,91,0.10);
  border-color: rgba(255,195,91,0.25);
}

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

.faq-body-inner{
  padding:12px 16px 16px;
  border-top:1px solid rgba(255,255,255,0.06);
  font-size:14px;
  line-height:1.45;
  color: rgba(235,237,245,0.92);
}

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

.guarantee-card{
  background: radial-gradient(circle at top,
    rgba(255,255,255,0.08) 0%,
    rgba(20,24,40,0.98) 50%,
    rgba(6,7,18,1) 100%);
  border-radius:20px;
  padding:16px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 18px 40px rgba(0,0,0,0.8);
  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:#f5f5f7;
}

/* ============================
   HOW TO ORDER (compact)
============================ */
.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: linear-gradient(135deg,
    rgba(38, 44, 70, 0.98) 0%,
    rgba(13, 16, 30, 0.98) 70%,
    rgba(5, 7, 16, 1) 100%);
  box-shadow:0 10px 26px rgba(0,0,0,0.7);
  border:1px solid rgba(255,255,255,0.05);
}

.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:#f5f5f7;
  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(135deg,
    rgba(40,45,70,0.95) 0%,
    rgba(15,18,35,0.98) 100%);
  border-radius:999px;
  padding:10px 16px;
  font-size:13px;
  font-weight:600;
  color:#ffc35b;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 26px rgba(0,0,0,0.7);
}

/* ============================
   ORDER FORM
============================ */
.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: linear-gradient(135deg,
    rgba(38, 44, 70, 0.98) 0%,
    rgba(16, 20, 38, 0.98) 50%,
    rgba(6, 8, 18, 1) 100%);
  padding:22px 18px 18px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
  box-shadow:0 18px 42px rgba(0,0,0,0.9);
  border:1px solid rgba(255,255,255,0.08);
  text-align:left;
}

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

.order-form input{
  width:100%;
  padding:12px 14px;
  font-size:16px;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:12px;
  background: rgba(3,5,14,0.96);
  color:#fff;
  outline:none;
}

.order-form input::placeholder{
  color: rgba(197,199,213,0.85);
}

/* 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(235,237,245,0.9);
}

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

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

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

/* ============================
   FOOTER (ultra-compact)
============================ */
.footer{
  padding:10px 14px 12px;
  margin-top:10px;
  background: radial-gradient(circle at top,
    rgba(32, 38, 60, 0.98) 0%,
    rgba(10, 12, 22, 1) 55%,
    rgba(3, 4, 10, 1) 100%);
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  color: rgba(226,228,239,0.9);
}

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

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

.footer-link{
  color: rgba(226,228,239,0.9);
  text-decoration:none;
  font-size:13px;
  line-height:1.05;
  display:block;
}

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

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

.requisites-panel{
  display:none;
  margin:8px auto 0;
  width:90%;
  padding:10px 10px;
  border-radius:14px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 26px rgba(0,0,0,0.65);
  color: rgba(235,237,245,0.9);
  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:#fff;
}

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

.footer-copy{
  margin-top:8px;
  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);
}
