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

body {
  color: black;
  max-width: 430px;
  margin: auto;
}

/* Block 1 – Black background, white text */
.block-black {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 4vw, 23px); /* responsive text size */
  text-align: center ;
  word-break: break-word;
  line-height: 1.2;
  padding-bottom: 5px;
  padding-top: 5px;
  font-weight: 400;


}
.headline-28463715 {
  white-space: nowrap; /* ❗️forces single-line */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(24px, 8vw, 35px); /* responsive text size */
  color: white;
  font-family: "bpg nino mtavruli bold", sans-serif;
  background-color: #0d0d0d; /* optional background */
  padding-top: 10px;
  text-align: center;
  max-width: 100%;
}
.highlight-28463715 {
  color: rgb(255, 218, 27);
  margin-left: 3px;
}
/* Hero Section – Black background */
.hero {
  background-color: black;
  position: relative;
  width: 100%;
}

/* Hero Image */
.hero-image {
  width: 100%;
  display: block;
  height: auto;
}


/* Price Badge */
.price-badge {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 90px;
  border-radius: 360px;
  background-color:rgba(0, 145, 152, 1);
  border: 4px solid white;
  color: white;
  font-size: 16px;
  font-weight: bold;
  z-index: 1;
}

/* Внутренний flex-контейнер для price-badge */
.price-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* Старый ценник */
.old-price {
  text-decoration: line-through;
  opacity: 0.7;
}

/* Разделительная линия */
.divider {
  width: 1px;
  height: 70%;
  background-color: white;

}

/* Новый ценник */
.new-price {
  color: #FFD700;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

/* Подписи под ценами */
.price-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 90%;
}

.price-column.left {
  text-align: right;
}

.price-column.right {
  text-align: left;
}

/* Обёртка hero + фон под бейджем */
.hero-wrapper {
  background-color: black;
  padding-bottom: 90px;
  position: relative;
  z-index: 0;
  padding-bottom: 250px;

}
.hero-wrapper-2 {
  background-color: black;
  position: relative;
  z-index: 0;  
  padding-bottom: 150px;


}



/* Бантик 🎀 */
.badge-ribbon {
  position: absolute;
  top: 0px;
  right: -15px;
  transform: translateY(-50%);
  width: 75px;
  height: auto;
  pointer-events: none;
}




.main-button {
  display: block;
  width: 80%;
  height: 55px;
  margin: 24px auto 0;
  background: linear-gradient(to bottom, #FFB41E, #D70E01);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.3s ease;
animation: pulse 1s infinite ease-in-out;
font-family: "bpg nino mtavruli bold", sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.main-button:hover {
  opacity: 0.9;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.features {
  padding: 32px 16px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 5 0px;

}

/* Один пункт преимущества */
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f9f9f9;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
}

/* Иконка */
.feature-icon {
  position: relative;
  width: 64px;         /* ↑ Было 48px */
  height: 64px;
  min-width: 64px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.feature-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; /* 64px + 2 * 6px */
  height: 76px;
  border-radius: 50%;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  background: transparent;
  z-index: -1;
}


/* Изображение внутри иконки */
.feature-icon img {
 width: 100%;
  height: 100%;
  object-fit: cover; /* Заполняет круг красиво */
  border-radius: 50%;

}

/* Текст преимущества */
.feature-text {
  font-size: 19px;
  color: rgba(3, 152, 158, 1);
  flex: 1;
  line-height: 1.15;
  text-align: left;
  font-weight: 900;
}


.scarcity-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0 16px;
}

.scarcity-icon {
  width: 10px;
  height: 15px;
  height: auto;
      animation: pulse 0.5s infinite ease-in-out;

}

.scarcity-track {
  flex: 1;
  height: 24px;
  background-color: #888888;
  border-radius: 999px;
  overflow: hidden;

}

.scarcity-fill {
  width: 70%; /* Change this to represent actual progress */
  height: 100%;
  background-color: #fadb3f; /* Yellow */
  border-radius: 999px;
  animation: pulse 0.5s infinite ease-in-out;

}

.scarcity-text {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: white;
  font-weight: 400;
}

.scarcity-text .highlight {
  color: #fadb3f; /* Yellow */
  font-weight: 600;
}


.info-block {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background-color: white;
}

/* Top colored section */
.info-header {
  background-color: #2c9a99; /* Teal-green color */
  padding: 24px 5px 12px;
  text-align: center;
  color: white;
}

.info-title {
  font-family: "BPG Nino Mtavruli Bold", sans-serif;
  font-size: 25px;
  font-weight: 10;
  margin-bottom: 3px;
}

.info-subtitle {
  font-family: "Arial GEO", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

/* Content section */
.info-body {
  padding: 10px;
  background-color: white;
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  font-weight: 100;
}
.info-body p + p {
  margin-top: 8px;
}




.product-image {
  margin-top: 15px;
  margin-bottom: 15px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* same as .info-block */
  display: block;
box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.3);
}

.section-wrapper {
  padding: 0 10px;
}

.text-card {
  margin-top: 10px; /* <-- this controls spacing from the element above */
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-weight: 100;
  line-height: 1.6;
  color: #222;
  margin-bottom: 10px; /* <-- this controls spacing from the element below */

}

.text-card p + p {
  margin-top: 10px; /* Adjust spacing between paragraphs */
}

.dark-section {
  background-color: #000;
  padding: 10px 10px;
  color: white;
  text-align: center;
  text-align: left;
}

.features-section {
  padding: 40px 16px;
  background-color: #f9f9f9;
  text-align: center;
}

.features-main-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.features-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; /* keeps line only under the text */
  padding-bottom: 15px;
  color: rgba(56, 89, 147, 1.0);
}

.features-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 30%;
  height: 3px;
  background-color: #ccc; /* adjust color if needed */
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

@media (max-width: 380px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* ALWAYS 2 columns */
  gap: 16px;

}

/* Feature Card */
.feature-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 3px;
}

/* Image */
.feature-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* Inner bordered content */

.feature-inner-box {
  padding: 6px;
  border: 1px solid #b87068;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  margin-top: 3px;
  height: 100%;
}

.feature-title {
  color: #b87068;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-description {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.feature-number {
  font-size: 20px;
  font-weight: bold;
  color: #444;
  text-align: right;
}


.space-between {
  height: 50px;
  width: 100%;
}
.space-between-30 {
  height: 30px;
  width: 100%;
}
.space-between-20 {
  height: 20px;
  width: 100%;
}
.space-between-10 {
  height: 10px;
  width: 100%;
}




.slidersections {
  background-color: #000;
  padding: 10px 10px;
  color: rgb(0, 0, 0);
  text-align: center;

}

.slidet-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; /* keeps line only under the text */
  padding-bottom: 15px;
  color: rgb(255, 255, 255);
}
.slidet-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 30%;
  height: 3px;
  background-color: #ffffff; /* adjust color if needed */
  border-radius: 2px;
}


.slidet79title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  color: #385993;
  text-align: center;
}
.slidet79title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 30%;
  height: 3px;
  background-color: #D9D9D9; /* adjust color if needed */
  border-radius: 2px;
}


.slider-with-thumbs {
  max-width: 430px;
  margin: auto;
  padding: 10px;
    overflow: hidden; /* makes sure thumbnails don’t break layout */

}

.specs-box {
  background-color: #000;
  color: white;
  border: 1px solid #00aeff; /* outer stroke */
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  font-size: 16px;
  max-width: 430px;
  margin: 0 auto;
  margin-top: 25px;
}

.spec-row {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #00aeff; /* inner stroke line */
    align-items: center;

}

.spec-row:last-child {
  border-bottom: none;
}

.spec-icon {
  width: 13px;
  height: 13px;
  margin-top: 2px;
}

.spec-text {
  flex: 1;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
font-size: 15px;
}

.call-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #f2709c, #ff9472);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 8px; /* 👈 this gives space between image and border */
  z-index: 9999;
  transition: transform 0.3s ease;
  animation: pulse 1.5s infinite ease-in-out;
  text-decoration: none;
  box-shadow:
    0 0 0 3px rgb(255, 255, 255),        /* 👈 1st outer ring (white gap) */
    0 0 0 4px #f2709c,      /* 👈 2nd outer border */
    0 4px 15px rgba(0,0,0,0.2); /* shadow */
}

.call-icon {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.call-button:hover {
  transform: scale(1.1);
}



.webhook-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 20px auto;
  padding: 16px;
  background: #f7f7f7;
  border-radius: 10px;
}

.webhook-form input {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.webhook-form button {
  padding: 14px;
  background-color: #f2709c;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

#form-status {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}

.slider-block {
  background: #e0f0ef;
  padding: 3px;
  border-radius: 16px;
  max-width: 430px;
  margin: auto;
  overflow: hidden;
}

.slider-block h2 {
  text-align: center;
  font-family: sans-serif;
  margin-bottom: 20px;
  color: #005c63;
}

.slider-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slide {
  min-width: 100%;
  scroll-snap-align: start;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007c84;
  color: rgb(0, 0, 0);
  border: none;
  font-size: 18px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.arrow.left {
  left: 8px;
}

.arrow.right {
  right: 10px;
}
/* Positioning for wrapper (relative parent) */
.slider-wrapper {
  position: relative;
}

/* Arrows styling */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 124, 132, 0.9);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 90%;
  z-index: 999; /* make sure it's on top */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

}

/* Left and right positioning */
.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}



.whitesection {
  background-color: white;
  padding: 10px;

}

.allblacksection {
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;  
padding-bottom: 50px;

}



.sticky-order-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(145deg, #f2709c, #ff9472);
  color: white;
  font-weight: bold;
  padding: 14px 24px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  z-index: 10000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-order-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}



.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;   /* Optional max-width */
  margin: 0 auto;     /* Center horizontally */
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 12px; /* Optional rounded corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* 1 SECTION SLIDER */
.slider-wrapper-87123789 {
  max-width: 600px;
  position: relative;
  font-family: sans-serif;
}

.main-slider-container-87123789 {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
}

.slide-87123789 {
  min-width: 100%;
  scroll-snap-align: start;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slide-87123789 img {
  width: 100%;
  display: block;
}

.thumbnails-87123789 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.thumbnails-87123789 img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnails-87123789 img.active {
  opacity: 1;
  border-color: #007c84;
  transform: scale(1.05);
}
/* Arrow Button Wrapper */
.slider-arrow-87123789 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 124, 132, 0.8);
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  outline: none;
  border: none;
  box-shadow: none;
}

.slider-arrow-87123789:hover {
  background: rgba(0, 124, 132, 1);
  transform: translateY(-50%) scale(1.1);
}

/* Positioning */
.slider-arrow-87123789.left {
  left: 10px;
}

.slider-arrow-87123789.right {
  right: 10px;
}

/* SVG Icon Styling */
.arrow-icon-87123789 {
  width: 16px;
  height: 16px;
  display: block;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.arrow-icon-87123789 polyline {
  stroke-linecap: round;
  stroke-linejoin: round;
}






.step-card-left {
  position: relative;
  background: #ffffff;
  border: 2px solid #dce3f1;
  border-radius: 15px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10px;
  font-family: sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 40px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}


.step-card-right {
  position: relative;
  background: #ffffff;
  border: 2px solid #dce3f1;
  border-radius: 15px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10px;
  font-family: sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 10px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}



/* Icon base */
.step-icon-87123789 {
  position: absolute;
  top: 50%;
  width: 55px;
  height: 55px;
  background: #0066ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.step-icon-87123789 img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* Icon position LEFT */
.step-icon-87123789.left {
  left: 0;
  transform: translate(-50%, -50%);
}

/* Icon position RIGHT */
.step-icon-87123789.right {
  right: 0;
  transform: translate(50%, -50%);
}


/* Text block */
.step-content-87123789 {
  flex: 1;
}

.step-content-87123789 h3 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: bold;
}

.step-content-87123789 p {
  font-size: 15px;
  color: #444;
  margin: 0;
}

.step-content-87123789-right {
  flex: 1;
  text-align: right;
}

.step-content-87123789-right h3 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: bold;
}

.step-content-87123789-right p {
  font-size: 15px;
  color: #444;
  margin: 0;
}



.form-box-23987412 {
  max-width: 85%;
  background: #0097a7;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  text-align: center;
  font-family: "BPG Nino Mtavruli", sans-serif;
}

.form-box-23987412 h2 {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
}

.form-box-23987412 input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-box-23987412 button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #ffba00, #ff8c00);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  animation: pulse 1s infinite ease-in-out;

}

.form-box-23987412 button:hover {
  transform: scale(1.02);
}
