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;
}

/* ====================== */

.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: #212420;
}

.price__compare {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5px 0;
  background: #dedede;
  font-family: 'Oswald', sans-serif;
}

.price__compare--white {
  background: #fff;
}

.price__compare-promo,
.price__compare-old {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 70px;
  padding: 10px 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.price__compare-old {
  align-items: flex-start;
}

.price__compare-old-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.price__compare-promo {
  gap: 0;
}

.price__compare-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 18px;
  padding: 0;
  border-radius: 5px;
  background: #e50000;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.price__compare-current {
  margin: 0;
  color: #000;
  font-size: 26px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.38px;
  text-align: center;
  white-space: nowrap;
}

.price__compare-label {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.price__compare-was {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.26px;
  text-align: center;
  text-decoration: line-through;
  white-space: nowrap;
}

.price__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 20px 36px;
  background: #fff;
  box-sizing: border-box;
}

.price__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.price__benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 12px 0;
  box-sizing: border-box;
}

.price__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-shrink: 0;
  width: 92px;
  height: 83px;
  padding: 4px;
  border-radius: 8px;
  border: 0.5px solid #79e934;
  background: linear-gradient(157deg, #79e934 20%, #44831d 89%);
  box-shadow: 0 4px 12px rgba(121, 233, 52, 0.28);
  box-sizing: border-box;
}

.price__card-icon {
  display: block;
  width: 31px;
  height: 33px;
  object-fit: contain;
  flex-shrink: 0;
}

.price__card-icon--logo {
  width: 46px;
  height: 25px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.price__card-text {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.price__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 80px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #fedb2f;
  background: linear-gradient(180deg, #fedb2f 0%, #feaf01 100%);
  box-shadow: 0 0 7px rgba(254, 175, 1, 0.71);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
  animation: pulse 1.5s infinite;
}

.price__cta:hover {
  animation: none;
  filter: brightness(1.05);
}

.price__note {
  margin: 0;
  width: 100%;
  max-width: 375px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.38px;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}

.price__note-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background: #ff0000;
  vertical-align: middle;
  animation: note-mark-fade 2.4s ease-in-out infinite;
}

.price__disclaimer {
  margin: 0;
  max-width: 283px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.38px;
  color: #000;
  text-align: center;
}

.price__inner--upsell {
  gap: 24px;
  padding: 36px 20px;
  background: #dedede;
}

.price__upsell-title {
  margin: 0;
  max-width: 315px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.price__upsell-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.price__upsell-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  width: 100%;
}

.price__upsell-card {
  display: flex;
  flex-direction: column;
  width: 139px;
  min-height: 261px;
  padding: 7px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.price__upsell-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 13px;
  padding: 0 6px;
  border-radius: 4px;
  background: #e00027;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.price__upsell-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 108px;
  margin-top: 4px;
}

.price__upsell-image {
  display: block;
  width: 100%;
  max-width: 123px;
  height: auto;
  max-height: 89px;
  object-fit: contain;
}

.price__upsell-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 4px;
}

.price__upsell-stock {
  align-self: flex-end;
  margin-bottom: 4px;
  padding: 2px 6px;
  border-radius: 5px;
  background: #f2f2f2;
  color: #008e1f;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.price__upsell-name {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #212121;
}

.price__upsell-variant {
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: #212121;
}

.price__upsell-stars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4px;
}

.price__upsell-stars img {
  display: block;
  width: 13px;
  height: 12px;
}

.price__upsell-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}

.price__upsell-old {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #a5a5a5;
  text-decoration: line-through;
}

.price__upsell-current {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #e00027;
}

.price__upsell-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}

.price__upsell-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: linear-gradient(180deg, #fedb2f 0%, #feaf01 100%);
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.price__upsell-qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.price__upsell-qty-value {
  min-width: 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-align: center;
}

.price__upsell-add {
  width: 100%;
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: #212121;
  text-align: center;
}

/* ===== PRODUCT INTRO (gift) ===== */

.gift {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.gift__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.gift__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 335px;
  padding: 0 20px;
  box-sizing: border-box;
}

.gift__title {
  margin: 0;
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.34px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.gift__text {
  margin: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.14px;
  color: #fff;
  text-align: center;
}

.gift__visual {
  position: relative;
  z-index: 1;
  width: 100%;
}

.gift__photo {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== ABOUT SECTION ===== */

/* ===== ABOUT / ATTACHMENTS ===== */

.about {
  position: relative;
  overflow: hidden;
  background-color: #242424;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 36px 20px 48px;
  box-sizing: border-box;
}

.about__title {
  margin: 0;
  width: 100%;
  max-width: 304px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.about__visual {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.about__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ===== COMPLECT SECTION ===== */

/* ===== COMPLECT / FEATURES ===== */

.complect {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.complect__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 0 0 36px;
  box-sizing: border-box;
}

.complect__visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.complect__photo {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================= */

/* ===== GIFT2 / CONVENIENCE ===== */

.gift2 {
  position: relative;
  overflow: hidden;
  background-color: #242424;
}

.gift2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 36px 20px;
  box-sizing: border-box;
}

.gift2__title {
  margin: 0;
  width: 100%;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.gift2__visual {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.gift2__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ===== SPECS / CHARACTERISTICS ===== */

.specs {
  position: relative;
  overflow: hidden;
  background-color: #242424;
}

.specs__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 36px 20px;
  box-sizing: border-box;
}

.specs__title {
  margin: 0;
  width: 100%;
  max-width: 303px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.specs__visual {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.specs__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.specs__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 319px;
  height: 62px;
  padding: 17px 33px;
  border-radius: 14px;
  border: 1px solid #fedb2f;
  background: linear-gradient(180deg, #fedb2f 0%, #feaf01 100%);
  box-shadow: 0 0 7px rgba(254, 175, 1, 0.71);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
  animation: pulse 1.5s infinite;
}

.specs__cta:hover {
  animation: none;
  filter: brightness(1.05);
}

/* ===== REVIEWS SECTION ===== */

.reviews {
  background: #dcdddc;
}

.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 20px;
}

.reviews__title {
  margin: 0 auto;
  max-width: 266px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.32px;
  color: #000;
  background: linear-gradient(-21deg, #000 30%, #666 98%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-transform: uppercase;
}

.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;
  gap: 0;
}

.reviews__star {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.reviews__star img {
  display: block;
  width: 13px;
  height: 12px;
}

.reviews__stars--sm .reviews__star img {
  width: 13px;
  height: 12px;
}

.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: 115px;
  height: 153px;
  border-radius: 0;
  object-fit: cover;
}

.reviews__photo--wide {
  width: 153px;
  height: 115px;
}

.reviews__photos {
  display: flex;
  gap: 12px;
}

/* ============================= */

/* ========================= */

/* ===== 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); }
}

@keyframes note-mark-fade {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.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-color: #242424;
}

.howorder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  padding: 36px 23px;
  box-sizing: border-box;
}

.howorder__title {
  margin: 0;
  width: 100%;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.howorder__title-accent {
  background: linear-gradient(180deg, #fedb2f 0%, #feaf01 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.howorder__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 328px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.howorder__step {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 125px;
  padding: 9px 20px 9px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.21);
  box-sizing: border-box;
}

.howorder__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fedb2f 0%, #feaf01 100%);
}

.howorder__icon {
  display: block;
  width: 59px;
  height: auto;
}

.howorder__icon--phone {
  width: 54px;
}

.howorder__icon--wallet {
  width: 56px;
}

.howorder__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.howorder__step-title {
  margin: 0;
  font-size: 15.625px;
  font-weight: 700;
  line-height: 20px;
  color: #333;
}

.howorder__step-text {
  margin: 0;
  font-size: 15.625px;
  font-weight: 400;
  line-height: 20px;
  color: #333;
}

/* ===== 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 {
    height: auto;
  }

  .hero__image {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .howorder__title {
    font-size: clamp(28px, 8vw, 32px);
    white-space: normal;
  }

  .howorder__step-text {
    white-space: normal;
  }

  .gift__title {
    font-size: clamp(28px, 8vw, 32px);
  }

  .about__title {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .gift__inner {
    gap: clamp(20px, 5vw, 24px);
  }

  .gift2__title {
    font-size: clamp(28px, 8vw, 32px);
  }

  .specs__title {
    font-size: clamp(28px, 8vw, 32px);
  }

  /* Кнопки */
  .price__cta,
  .specs__cta,
  .order-form__btn {
    width: 100%;
    max-width: 100%;
    height: 80px;
    font-size: 18px;
    white-space: normal;
  }

  .specs__cta {
    max-width: 319px;
    height: 62px;
  }

  .price__cta {
    max-width: 100%;
    height: 80px;
  }

  .price__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price__benefits {
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
  }

  .price__card {
    flex-shrink: 0;
    width: 92px;
  }

  .price__compare-promo,
  .price__compare-old {
    padding: 10px 30px;
  }

  .price__compare-current {
    font-size: 26px;
  }

  /* Відгуки — фото підлаштовуються */
  .reviews__photo {
    width: 100px;
    height: auto;
  }

  .reviews__photo--wide {
    width: 140px;
    height: auto;
  }

  /* 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;
  }

}
/* ======================================= */

