/* ============================
   БАЗА И ГЛОБАЛЬНЫЙ СТИЛЬ
   Палитра: синий + оранжевый + светлый фон
============================ */

:root{
  --bg: #f5f2ed;
  --bg-soft: #fbf9f6;
  --surface: #ffffff;
  --surface-2: #f8f8fa;
  --text: #223047;
  --text-soft: #5f6b7d;
  --text-muted: #8d97a6;

  --blue: #5d708a;
  --blue-dark: #31455f;
  --blue-deep: #26384d;
  --blue-soft: #e7edf4;

  --orange: #f29a63;
  --orange-dark: #e5854a;
  --orange-soft: #fde7d9;

  --line: rgba(49, 69, 95, 0.10);
  --line-strong: rgba(49, 69, 95, 0.16);

  --shadow-sm: 0 8px 20px rgba(39, 56, 77, 0.06);
  --shadow-md: 0 16px 36px rgba(39, 56, 77, 0.10);
  --shadow-lg: 0 24px 54px rgba(39, 56, 77, 0.14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --container-pad: 18px;
}

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

html{
  min-height:100%;
  background:
    radial-gradient(circle at top left, rgba(242,154,99,0.09), transparent 28%),
    linear-gradient(180deg, #f7f4ef 0%, #f3f1ec 100%);
  scroll-behavior:smooth;
}

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

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

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

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

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

.product-title{
  font-size:28px;
  line-height:1.05;
  margin-bottom:18px;
}

.section-title{
  font-size:19px;
  line-height:1.15;
  margin-bottom:16px;
  position:relative;
  display:inline-block;
  padding-bottom:8px;
}

.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:56px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--orange), var(--blue));
}

/* ============================
   TOP MARQUEE
============================ */
.top-marquee{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  max-width:480px;
  margin:0 auto;
  background:rgba(255,255,255,0.88);
  border-bottom:1px solid rgba(49,69,95,0.08);
  box-shadow:0 10px 24px rgba(39,56,77,0.06);
  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:12px;
  font-weight:700;
  letter-spacing:0.04em;
  color:var(--blue-dark);
}

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

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

.product-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 14px;
  margin-bottom:12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.10em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow:0 12px 24px rgba(242,154,99,0.25);
}

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

.product-image{
  max-width:100%;
  height:auto;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(49,69,95,0.08);
  background:linear-gradient(180deg, #edf2f7 0%, #dde4ef 100%);
}

.product-label{
  position:absolute;
  top:12px;
  left:12px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow:0 12px 24px rgba(49,69,95,0.25);
}

/* ============================
   PRICE BLOCK
============================ */
.price-container{
  display:flex;
  justify-content:center;
  align-items:center;
  background:var(--surface);
  padding:18px 14px;
  border-radius:0 0 20px 20px;
  margin:0 auto 10px;
  width:92%;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
}

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

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

.price-label{
  font-size:12px;
  font-weight:700;
  color:var(--text-soft);
  display:block;
  margin-bottom:6px;
}

.price-strikethrough{
  font-size:22px;
  font-weight:700;
  text-decoration:line-through;
  color:#8c96a5;
}

.price-today{
  display:inline-block;
  font-size:26px;
  font-weight:900;
  color:#255fd1;
  line-height:1;
}

/* Bulk pricing */
.bulk-pricing{
  width:92%;
  margin:12px auto 8px;
  padding:12px 14px;
  border-radius:16px;
  background:var(--surface);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13px;
}

.bulk-pricing-title{
  font-size:12px;
  font-weight:900;
  margin-bottom:4px;
  color:var(--blue-deep);
  text-transform:uppercase;
  letter-spacing:0.08em;
}

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

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

.bulk-price{
  font-weight:800;
  color:var(--blue-dark);
  white-space:nowrap;
}

/* Stock bar */
.stock-bar{
  position:relative;
  width:92%;
  margin:12px auto 0;
  height:30px;
  border-radius:999px;
  overflow:hidden;
  background:linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  border:1px solid var(--line-strong);
  box-shadow:var(--shadow-sm);
}

.stock-bar-fill{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:65%;
  background:linear-gradient(90deg, var(--blue), #6f84a0 68%, var(--orange) 100%);
  animation:stockPulse 2.8s infinite ease-in-out;
}

.stock-bar-text{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  line-height:28px;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.03em;
  color:var(--blue-deep);
}

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

/* ============================
   BUTTONS
============================ */
.order-button{
  display:block;
  margin:22px auto 0;
  padding:16px 18px;
  background:linear-gradient(135deg, var(--blue), var(--blue-dark));
  color:#fff;
  font-size:17px;
  font-weight:800;
  letter-spacing:0.03em;
  border-radius:10px;
  width:92%;
  border:1px solid rgba(49,69,95,0.14);
  box-shadow:0 16px 28px rgba(49,69,95,0.20);
  cursor:pointer;
  transition:transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  position:relative;
  overflow:hidden;
}

.order-button:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 34px rgba(49,69,95,0.24);
}

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

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

.order-button:hover::after{
  left:130%;
}

.gradient-button{
  width:100%;
}

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

.features-container{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:14px 14px;
  gap:10px;
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  background:var(--surface);
  border:1px solid var(--line);
}

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

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

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

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

.feature-image.emoji{
  font-size:24px;
  background:var(--orange-soft);
  border-radius:12px;
  box-shadow:inset 0 0 0 1px rgba(242,154,99,0.18);
}

.order-image.emoji{
  font-size:20px;
  background:var(--blue-soft);
  border:1px solid rgba(93,112,138,0.12);
}

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

.video-container{
  position:relative;
  width:100%;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(49,69,95,0.10);
  background:#0f1722;
}

.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
============================ */
.gallery-desc-section{
  width:100%;
  max-width:480px;
  padding:24px var(--container-pad) 10px;
  text-align:center;
}

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

.gdesc-viewport{
  width:92%;
  margin:0 auto;
  overflow:hidden;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
  background:var(--surface);
  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;
  background:var(--surface);
}

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

.gdesc-caption{
  padding:14px 14px 16px;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
  text-align:left;
  color:var(--text);
  background:linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
  border-top:1px solid var(--line);
}

.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:3px;
  border:1px solid transparent;
  background:transparent;
  border-radius:14px;
  opacity:0.65;
  cursor:pointer;
  transition:0.2s;
}

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

.gdesc-thumb.active{
  opacity:1;
  border-color:rgba(49,69,95,0.14);
  background:#fff;
  box-shadow:0 10px 18px rgba(39,56,77,0.10);
}

.gdesc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.96);
  color:var(--blue-deep);
  font-size:22px;
  cursor:pointer;
  z-index:5;
  backdrop-filter:blur(4px);
  transition:0.2s;
  box-shadow:0 10px 18px rgba(39,56,77,0.12);
  border:1px solid rgba(49,69,95,0.10);
}

.gdesc-arrow:hover{
  background:#fff;
  color:var(--orange-dark);
}

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

.gdesc-indicator{
  position:absolute;
  bottom:10px;
  right:14px;
  font-size:12px;
  font-weight:800;
  color:var(--blue-deep);
  background:rgba(255,255,255,0.96);
  padding:5px 10px;
  border-radius:999px;
  backdrop-filter:blur(4px);
  z-index:4;
  border:1px solid rgba(49,69,95,0.10);
}

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

.description-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--surface);
  border-radius:20px;
  padding:8px 8px 12px;
  margin-bottom:18px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
}

.description-image{
  width:100%;
  border-radius:14px;
  box-shadow:0 12px 24px rgba(39,56,77,0.10);
  border:1px solid rgba(49,69,95,0.08);
  background:#fff;
}

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

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

.specs-container{
  background:var(--surface);
  border-radius:18px;
  padding:16px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}

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

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

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

.specs-value{
  font-weight:800;
  color:var(--blue-dark);
  white-space:nowrap;
}

.dots{
  flex:1;
  height:1px;
  opacity:0.30;
  border-bottom:1px dashed rgba(49,69,95,0.25);
}

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

.review-main{
  background:var(--surface);
  padding:8px;
  border-radius:18px;
  margin-bottom:12px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
}

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

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

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

.reviews__name{
  font-size:15px;
  font-weight:800;
  color:var(--blue-deep);
}

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

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

.thumb{
  width:58px;
  height:58px;
  border-radius:12px;
  opacity:0.52;
  border:2px solid transparent;
  cursor:pointer;
  transition:0.2s;
  object-fit:cover;
  background:#fff;
}

.thumb.active{
  opacity:1;
  border-color:var(--blue);
  box-shadow:0 8px 18px rgba(39,56,77,0.12);
}

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

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

.faq-item{
  border-radius:16px;
  overflow:hidden;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item.is-open{
  border-color:rgba(93,112,138,0.24);
  box-shadow:var(--shadow-md);
  transform:translateY(-1px);
}

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

.faq-title{
  font-size:15px;
  font-weight:800;
  line-height:1.2;
  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:var(--surface-2);
  border:1px solid rgba(49,69,95,0.10);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}

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

.faq-item.is-open .faq-chevron{
  transform:rotate(180deg);
  background:var(--orange-soft);
  border-color:rgba(242,154,99,0.20);
}

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

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

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

.guarantee-card{
  background:var(--surface);
  border-radius:20px;
  padding:16px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
  gap:14px;
}

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

.guarantee-icon{
  font-size:20px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:var(--orange-soft);
}

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

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

.order-step{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin-bottom:10px;
  padding:12px 12px;
  border-radius:14px;
  gap:10px;
  background:var(--surface);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
}

.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:600;
  color:var(--text);
  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, #fff 0%, #f9f8f5 100%);
  border-radius:999px;
  padding:11px 16px;
  font-size:13px;
  font-weight:800;
  color:var(--blue-dark);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}

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

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

.order-form{
  background:var(--surface);
  padding:22px 16px 18px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--line);
  text-align:left;
}

.order-form label{
  font-size:12px;
  font-weight:800;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--blue-deep);
  margin-bottom:2px;
  display:block;
}

.order-form input{
  width:100%;
  padding:13px 14px;
  font-size:16px;
  border:1px solid rgba(49,69,95,0.14);
  border-radius:12px;
  background:#fff;
  color:var(--text);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.order-form input::placeholder{
  color:#98a1ae;
}

.order-form input:focus{
  border-color:rgba(93,112,138,0.45);
  box-shadow:0 0 0 4px rgba(93,112,138,0.10);
}

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

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

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

.checkbox-label a{
  color:var(--blue-dark);
  font-weight:700;
  text-decoration:none;
}

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

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

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

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

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

.footer-link:hover{
  color:var(--orange-dark);
  text-decoration:underline;
}

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

.requisites-panel{
  display:none;
  margin:10px auto 0;
  width:90%;
  padding:10px 10px;
  border-radius:14px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  color:var(--text-soft);
  font-size:12.5px;
  line-height:1.3;
  text-align:center;
}

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

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

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

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

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

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

/* ============================
   ДОП. МЕЛОЧИ ПОД МОБИЛКУ
============================ */
@media (max-width:380px){
  .product-title{
    font-size:24px;
  }

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

  .price-strikethrough,
  .price-today{
    font-size:22px;
  }

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

  .thumb{
    width:52px;
    height:52px;
  }
}