html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fff;
  max-width: 375px;
  margin: 0 auto;
}

/* ===== PURCHASE POPUP ===== */

.purchase-popup {
  position: fixed;
  bottom: 32px;
  left: 20px;
  z-index: 1000;
  max-width: 260px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-120%) translateZ(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.purchase-popup.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.purchase-popup img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  flex-shrink: 0;
}

.purchase-popup-text {
  flex: 1;
  line-height: 1.3;
}

.purchase-main {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
  white-space: pre-line;
}

.purchase-time {
  font-size: 0.7rem;
  color: #6b7280;
}

/* ========================== */

/* ===== STICKY CTA ===== */

.sticky-cta {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 375px;
  max-width: 100%;
  background: #fff;
  border: 1px solid #019557;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  z-index: 999;
  transition: transform 0.35s ease;
}

.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 2px;
}

.sticky-cta__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sticky-cta__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  white-space: nowrap;
}

.sticky-cta__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  padding: 2px 6px;
  border-radius: 5px;
  background: linear-gradient(179.31deg, #ff0000 1.8%, #990000 105.44%);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-cta__note {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* ====================== */

/* ===== PROMO BAR ===== */

.promo-bar {
  background: linear-gradient(0deg, #110e0d 0%, #3b3a3a 100%);
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
}

.promo-bar__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}

.promo-bar__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.promo-bar__icon {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
  flex-shrink: 0;
}

.promo-bar__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 2px 6px;
  border-radius: 10px;
  background: linear-gradient(178.9deg, #ff0000 1.8%, #990000 105.44%);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===================== */

.hero {
  background: #fff;
}

.hero__block {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #fff;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  background: linear-gradient(to top, #110e0d, #3b3a3a);
}

.price__inner {
  padding: 10px 0;
  background-image: url("../images/priceback.jpg");
  background-size: cover;
  background-position: center;
}

.price__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 8px 30px;
}

.price__item {
  width: 139px;
  flex-shrink: 0;
}

.price__item--promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 10px;
}

.price__item--promo .price__label {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.price__item--promo .price__value {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.38px;
}

/* ===== GIFT SECTION ===== */

.gift {
  background: #110e0d;
}

.gift__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 30px;
}

.gift__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.gift__icon {
  display: block;
}

.gift__title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.gift__list {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  padding-left: 24px;
  width: 315px;
  max-width: 100%;
}

.gift__list li {
  margin-bottom: 0;
}

.gift__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.gift__photo-wrap {
  width: 304px;
  max-width: 100%;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
}

.gift__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift__btn,
.gift2__btn {
  animation: pulse 1.5s infinite;
}

.gift__btn:hover,
.gift2__btn:hover {
  animation: none;
}

.gift__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 305px;
  max-width: 100%;
  height: 60px;
  padding: 6px 12px;
  border-radius: 10px;
  background: linear-gradient(179.58deg, #ff0000 1.8%, #990000 105.44%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.gift__note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  width: 256px;
  max-width: 100%;
}

/* ===== ABOUT SECTION ===== */

.about {
  background: #fff;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
}

.about__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

.about__text-line {
  display: block;
  white-space: nowrap;
}

.about__photo-wrap {
  width: 100%;
  height: 448px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.about__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== COMPLECT SECTION ===== */

.complect {
  background: rgba(255, 255, 255, 0.49);
}

.complect__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px 24px;
}

.complect__photo-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.complect__photo-wrap--shadow {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.complect__photo {
  display: block;
  width: 100%;
  height: auto;
}

.complect__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

/* ============================= */

/* ===== GIFT2 SECTION ===== */

.gift2 {
  background-image: url("../images/giftlow.jpg");
  background-size: cover;
  background-position: center;
}

.gift2__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 20px;
}

.gift2__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.gift2__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.42px;
  color: #f60101;
}

.gift2__title-plus {
  color: #f60101;
}

.gift2__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}

.gift2__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.gift2__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  width: 100px;
  border-bottom: 1px solid red;
  flex-shrink: 0;
}

.gift2__tab-img-wrap {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.gift2__tab-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gift2__tab-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  white-space: nowrap;
}

.gift2__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gift2__note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

.gift2__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 305px;
  max-width: 100%;
  height: 60px;
  padding: 6px 12px;
  border-radius: 10px;
  background: linear-gradient(179.58deg, #ff0000 1.8%, #990000 105.44%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.gift2__girl {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== REVIEWS SECTION ===== */

.reviews {
  background: #021c1c;
}

.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
}

.reviews__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.32px;
  color: #fff;
  text-align: center;
}

.reviews__summary {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px;
  gap: 0;
  filter: drop-shadow(0 3px 2px rgba(0,0,0,0.05));
}

.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 139px;
  flex-shrink: 0;
}

.reviews__rating-score {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.32px;
  color: #e85f00;
  text-align: center;
}

.reviews__rating-label {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1px;
  color: rgba(0,0,0,0.7);
  text-align: center;
}

.reviews__divider {
  width: 1px;
  height: 67px;
  background: #504f4f;
  flex-shrink: 0;
}

.reviews__count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.reviews__count-num {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.26px;
  color: #1f5b3a;
}

.reviews__count-label {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1px;
  color: rgba(0,0,0,0.7);
}

.reviews__stars {
  display: flex;
  align-items: center;
}

.reviews__stars--sm .reviews__star {
  font-size: 13px;
  color: #FFD166;
  line-height: 1;
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews__item {
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  filter: drop-shadow(0 3px 2px rgba(0,0,0,0.05));
}

.reviews__item-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__avatar {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14px;
  color: #000;
}

.reviews__city {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1px;
  color: rgba(0,0,0,0.6);
}

.reviews__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}

.reviews__photo {
  display: block;
  width: 120px;
  height: 135px;
  border-radius: 10px;
  object-fit: cover;
}

.reviews__photos {
  display: flex;
  gap: 8px;
}

/* ============================= */

/* ========================= */

.price__item--regular {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
  padding-right: 30px;
}

.price__item--regular .price__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}

.price__item--regular .price__value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.26px;
  text-decoration: line-through;
}

/* ===== PRICE COLOR VARIANT ===== */

.price--color {
  background: none;
}

.price--color .price__inner {
  padding: 0;
  background: none;
}

.price--color .price__list {
  gap: 0;
  padding: 0;
  justify-content: stretch;
  align-items: stretch;
  height: 70px;
  overflow: hidden;
}

.price--color .price__item {
  width: 50%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 10px 12px;
  box-shadow: inset 0 4px 4px rgba(0,0,0,0.25);
}

.price--color .price__item--promo {
  background: linear-gradient(179.19deg, #ff0000 1.8%, #990000 105.44%);
}

.price--color .price__item--regular {
  background: linear-gradient(0deg, #110e0d 0%, #3b3a3a 100%);
  align-items: center;
}

.price--color .price__item--promo .price__label,
.price--color .price__item--promo .price__value {
  color: #fff;
}

.price--color .price__item--regular .price__label,
.price--color .price__item--regular .price__value {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* ================================ */

/* ===== ORDER FORM SECTION ===== */

.order-section {
  background: #ecfdf3;
}

.order-section__inner {
  padding: 24px 20px 40px;
}

.order-form {
  width: 100%;
  box-sizing: border-box;
}

.order-form__field-wrap {
  position: relative;
  margin-bottom: 20px;
}

.order-form__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.order-form__input {
  width: 100%;
  box-sizing: border-box;
  height: 66px;
  padding: 0 16px 0 50px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}

.order-form__input:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

.order-form__btn-wrap {
  margin-top: 8px;
  text-align: center;
}

.order-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 0 16px;
  border: none;
  background: linear-gradient(179.58deg, #ff0000 1.8%, #990000 105.44%);
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-form__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  width: 60px;
  height: 100%;
  background: rgba(255,255,255,0.4);
  filter: blur(20px);
  transform: skewX(-25deg);
  animation: btn-shine 3s ease infinite;
}

@keyframes btn-shine {
  0% { left: -30px; }
  100% { left: 110%; }
}

@keyframes pulse {
  0%   { transform: scale(0.95); }
  70%  { transform: scale(1); }
  100% { transform: scale(0.95); }
}

.order-form__btn {
  animation: pulse 1.5s infinite;
}

.order-form__btn:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.order-form__turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.order-form__note {
  margin-top: 14px;
  font-size: 13px;
  color: #2f3c2f;
  text-align: center;
  line-height: 1.5;
}

.site-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #d1fae5;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  line-height: 1.8;
}

.site-footer a {
  color: #e85f00;
  text-decoration: none;
  margin: 0 4px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* =============================== */

/* ===== HOW TO ORDER SECTION ===== */

.howorder {
  background-image: url("../images/orderback.png");
  background-size: cover;
  background-position: center;
  background-color: #011b1b;
}

.howorder__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px 20px 48px;
}

.howorder__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.38px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.howorder__photo-wrap {
  width: 100%;
  height: 276px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 4px 4px rgba(0,0,0,0.25);
}

.howorder__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MOBILE RESPONSIVE (≤ 600px) ===== */
@media (max-width: 600px) {
  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }

  h2, h3, p, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Знімаємо фіксовані висоти — зображення тягнуть самі висоту */
  .hero__block,
  .about__photo-wrap,
  .gift__photo-wrap,
  .howorder__photo-wrap {
    height: auto;
  }

  .hero__image,
  .about__photo,
  .gift__photo,
  .howorder__photo {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  /* Кнопки */
  .gift__btn,
  .gift2__btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .order-form__btn {
    font-size: 18px;
    white-space: normal;
  }

  /* Ціни */
  .price--color .price__list {
    height: auto;
    min-height: 70px;
  }

  /* Відгуки — фото підлаштовуються */
  .reviews__photo {
    width: 100px;
    height: auto;
  }

  /* Promo bar — зменшуємо щоб не вилазив за екран */
  .promo-bar__inner {
    padding: 8px 10px;
    gap: 5px;
  }

  .promo-bar__text {
    font-size: 11px;
  }

  .promo-bar__icon {
    width: 22px;
    height: 22px;
  }

  .promo-bar__badge {
    font-size: 11px;
    padding: 2px 5px;
    height: 28px;
  }

  /* Sticky CTA — зменшуємо розміри, структура незмінна */
  .sticky-cta__text {
    font-size: 11px;
  }

  .sticky-cta__badge {
    font-size: 11px;
    padding: 2px 5px;
  }

  .sticky-cta__note {
    font-size: 9px;
  }

  .sticky-cta__inner {
    padding: 8px 10px;
  }

  /* Gift2 title — в один рядок */
  .gift2__title {
    white-space: nowrap;
    font-size: 36px;
  }

  .about__text-line {
    font-size: 13px;
  }
}
/* ======================================= */

