/* ============================
   БАЗА И ГЛОБАЛЬНЫЙ ФОН (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: #191f1d;
  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);
}

/* =========================================================
   DARK ART / NFT STYLE OVERRIDE
   Подключать ПОСЛЕ основного style.css
   Ничего не удаляет, только переопределяет внешний вид
========================================================= */

:root{
  --bg:#0b0d0d;
  --bg-2:#101313;
  --card:rgba(19,24,23,0.82);
  --card-2:rgba(24,30,28,0.82);
  --line:rgba(206,255,102,0.08);
  --line-strong:rgba(206,255,102,0.18);
  --text:#f4f3ee;
  --muted:rgba(244,243,238,0.68);
  --soft:rgba(244,243,238,0.52);
  --accent:#dbe85b;
  --accent-2:#a9c843;
  --accent-dark:#12150c;
  --shadow:0 18px 50px rgba(0,0,0,0.45);
  --radius:24px;
}

html{
  background:
    radial-gradient(circle at 18% 16%, rgba(214,232,90,0.12), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(110,176,142,0.12), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(255,175,70,0.10), transparent 18%),
    radial-gradient(circle at 88% 86%, rgba(87,139,157,0.14), transparent 20%),
    linear-gradient(180deg, #0b0d0d 0%, #101212 100%);
  min-height:100%;
}

body{
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(219,232,91,0.08), transparent 22%),
    radial-gradient(circle at 80% 12%, rgba(103,160,140,0.08), transparent 18%),
    radial-gradient(circle at 16% 80%, rgba(255,179,82,0.08), transparent 18%),
    radial-gradient(circle at 85% 88%, rgba(92,144,162,0.10), transparent 22%),
    linear-gradient(180deg, #0b0d0d 0%, #101212 100%);
  letter-spacing:-0.01em;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0) 8%, rgba(255,255,255,0.02) 16%, rgba(255,255,255,0) 24%, rgba(255,255,255,0.022) 32%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.018) 48%, rgba(255,255,255,0) 56%, rgba(255,255,255,0.02) 64%, rgba(255,255,255,0) 72%, rgba(255,255,255,0.018) 80%, rgba(255,255,255,0) 88%, rgba(255,255,255,0.02) 100%);
  mix-blend-mode:screen;
}

.page{
  max-width:480px;
  position:relative;
}

.page::before{
  content:"";
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:0;
  width:min(100vw, 560px);
  height:100vh;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 12%, rgba(228,233,102,0.12), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(130,202,170,0.08), transparent 16%),
    radial-gradient(circle at 14% 86%, rgba(255,186,93,0.10), transparent 16%),
    radial-gradient(circle at 86% 82%, rgba(83,132,151,0.10), transparent 16%);
  filter:blur(8px);
}

.section-title,
.product-title{
  color:var(--text);
  text-transform:none;
  letter-spacing:-0.04em;
  font-weight:700;
}

.product-title{
  font-size:clamp(34px, 7vw, 48px);
  line-height:0.94;
  margin-bottom:18px;
  max-width:92%;
  text-align:left;
}

.section-title{
  font-size:13px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(219,232,91,0.78);
  margin-bottom:14px;
  text-align:left;
  padding-left:4px;
}

.top-marquee{
  background:rgba(14,18,18,0.86);
  border-bottom:1px solid rgba(255,255,255,0.05);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter:blur(14px);
}

.top-marquee-inner{
  color:rgba(244,243,238,0.76);
  font-size:12px;
  letter-spacing:.02em;
}

.product-section,
.video-section,
.gallery-desc-section,
.description-section,
.specs-section,
.reviews-section,
.faq-section,
.guarantee-section,
.order-form-section,
.features-section,
.how-to-order,
.social-proof-section{
  padding-left:18px;
  padding-right:18px;
}

.product-section{
  padding-top:28px;
}

.product-badge{
  color:#12140f;
  background:linear-gradient(135deg, #dbe85b 0%, #afcf4c 100%);
  box-shadow:0 10px 26px rgba(219,232,91,0.24);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:14px;
}

.product-image-container{
  margin-bottom:22px;
}

.product-image,
.description-image,
.review-image,
.gdesc-viewport,
.video-container,
.review-main,
.description-item,
.specs-container,
.guarantee-card,
.order-form,
.features-container,
.social-proof-card,
.faq-item,
.price-container,
.bulk-pricing,
.order-step{
  background:linear-gradient(180deg, rgba(27,33,31,0.90) 0%, rgba(14,18,17,0.92) 100%);
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:var(--shadow);
}

.product-image,
.description-image,
.review-image{
  border-radius:28px;
  overflow:hidden;
}

.product-image{
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 30px 60px rgba(0,0,0,0.46);
}

.product-image-container::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius:34px;
  background:radial-gradient(circle at 50% 12%, rgba(219,232,91,0.10), transparent 48%);
  z-index:-1;
  filter:blur(8px);
}

.product-label{
  top:14px;
  left:14px;
  background:rgba(12,15,15,0.78);
  color:var(--accent);
  border:1px solid rgba(219,232,91,0.18);
  box-shadow:0 10px 24px rgba(0,0,0,0.32);
  backdrop-filter:blur(10px);
}

.price-container{
  border-radius:26px;
  width:100%;
  padding:20px 18px;
  margin:10px auto 12px;
}

.price-label,
.bulk-pricing-title,
.stock-bar-text,
.feature-text,
.gdesc-caption,
.reviews__comment,
.faq-body-inner,
.guarantee-text,
.order-text,
.checkbox-label,
.order-form label{
  color:var(--muted);
}

.price-strikethrough{
  color:rgba(244,243,238,0.34);
}

.price-today{
  color:var(--text);
  text-shadow:none;
}

.bulk-pricing{
  width:100%;
  border-radius:22px;
  padding:14px 16px;
}

.bulk-pricing-row{
  color:var(--muted);
}

.bulk-price{
  color:var(--accent);
  font-weight:700;
}

.stock-bar{
  width:100%;
  height:34px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.05);
  border-radius:999px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.24);
}

.stock-bar-fill{
  background:linear-gradient(90deg, rgba(196,216,77,0.94), rgba(153,189,58,0.94));
}

.stock-bar-text{
  color:#11150f;
  font-weight:700;
}

.order-button{
  width:100%;
  border-radius:999px;
  padding:16px 18px;
  background:linear-gradient(135deg, #dbe85b 0%, #afcf4c 100%);
  color:#10130f;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 16px 34px rgba(171,205,70,0.24), inset 0 1px 0 rgba(255,255,255,0.22);
  font-size:17px;
  font-weight:800;
  letter-spacing:-0.02em;
}

.order-button:hover{
  box-shadow:0 20px 42px rgba(171,205,70,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}

.order-button::after{
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.24), transparent 70%);
}

.features-container{
  border-radius:26px;
  padding:16px 14px;
  gap:8px;
}

.feature-item{
  min-height:50px;
  padding:4px 2px;
}

.feature-image.emoji,
.order-image.emoji{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(219,232,91,0.10);
  border-radius:14px;
}

.feature-text{
  color:var(--text);
  font-weight:500;
}

.video-container,
.gdesc-viewport,
.review-main,
.description-item,
.specs-container,
.guarantee-card,
.order-form,
.faq-item{
  border-radius:26px;
}

.video-container{
  background:#0a0c0b;
}

.gdesc-viewport{
  width:100%;
}

.gdesc-card,
.gdesc-card img{
  border-radius:26px;
}

.gdesc-caption{
  background:rgba(255,255,255,0.03);
  border-top:1px solid rgba(255,255,255,0.05);
  color:var(--muted);
}

.gdesc-thumbs{
  width:100%;
  gap:12px;
}

.gdesc-thumb{
  opacity:.5;
}

.gdesc-thumb img,
.thumb{
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.04);
}

.gdesc-thumb.active,
.thumb.active{
  border-color:rgba(219,232,91,0.75);
  box-shadow:0 12px 24px rgba(0,0,0,0.3);
}

.gdesc-arrow{
  background:rgba(14,18,18,0.78);
  color:var(--text);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 24px rgba(0,0,0,0.35);
}

.gdesc-indicator{
  background:rgba(14,18,18,0.80);
  color:var(--text);
  border:1px solid rgba(255,255,255,0.08);
}

.description-item{
  align-items:flex-start;
  text-align:left;
  padding:12px;
}

.description-text{
  max-width:100%;
  margin-top:14px;
  color:var(--text);
  font-size:17px;
  font-weight:600;
  line-height:1.3;
}

.specs-item{
  color:var(--text);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.specs-name{
  color:var(--muted);
}

.specs-value{
  color:var(--text);
}

.dots{
  border-bottom:1px solid rgba(219,232,91,0.16);
}

.reviews__info,
.reviews__name,
.reviews__comment{
  color:var(--text);
}

.reviews__comment{
  color:var(--muted);
}

.review-main{
  padding:12px;
}

.review-thumbs{
  gap:12px;
}

.faq-item.is-open{
  border-color:rgba(219,232,91,0.24);
  box-shadow:0 18px 42px rgba(0,0,0,0.44);
}

.faq-head{
  color:var(--text);
}

.faq-title{
  font-size:15px;
  white-space:normal;
  line-height:1.28;
}

.faq-chevron{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
}

.faq-chevron::before{
  border-right-color:var(--accent);
  border-bottom-color:var(--accent);
}

.faq-body-inner{
  border-top:1px solid rgba(255,255,255,0.05);
}

.guarantee-card{
  gap:12px;
}

.guarantee-item{
  padding:2px 0;
}

.how-to-order{
  text-align:left;
}

.order-step{
  border-radius:22px;
  padding:14px 14px;
}

.order-text{
  color:var(--text);
}

.social-proof-card{
  color:var(--accent);
  background:rgba(19,24,23,0.84);
}

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

.order-form{
  padding:20px 16px 16px;
}

.order-form label{
  color:var(--soft);
  font-size:12px;
  letter-spacing:.03em;
}

.order-form input{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text);
  border-radius:16px;
  padding:14px 14px;
}

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

.order-form input:focus{
  border-color:rgba(219,232,91,0.45);
  box-shadow:0 0 0 3px rgba(219,232,91,0.12);
}

.checkbox-label{
  color:var(--muted);
}

.checkbox-label input[type="checkbox"]{
  accent-color:var(--accent-2);
}

.checkbox-label a{
  color:var(--accent);
}

.footer,
.footer a,
.footer p,
.footer div,
.footer span{
  color:rgba(244,243,238,0.56) !important;
}

@media (max-width: 480px){
  .product-title{
    max-width:100%;
  }

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

  .price-container,
  .bulk-pricing,
  .stock-bar,
  .order-button,
  .gdesc-viewport,
  .gdesc-thumbs{
    width:100%;
  }
}



