:root{
  --beige: #f6e6c5;
  --beige-soft: #fdf5df;
  --green-dark: #3d8f52;
  --green: #67b96f;
  --orange: #e58d2f;
  --yellow: #f0ba3d;
  --text: #362f28;
  --text-soft: #5f564d;
}

*{
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html, body{
  width: 100%;
  scroll-behavior: smooth;
}

body{
  line-height: 1.45;
  font-family: "Montserrat", Arial, sans-serif;
  background: linear-gradient(180deg, #f4e0b3 0%, #f8edd9 35%, #f3d9a4 100%);
  color: var(--text);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image: radial-gradient(circle at 20% 10%, rgba(229,141,47,.10) 0, rgba(229,141,47,.10) 130px, transparent 131px),
    radial-gradient(circle at 80% 20%, rgba(245,199,64,.10) 0, rgba(245,199,64,.10) 110px, transparent 111px),
    radial-gradient(circle at 25% 65%, rgba(63,144,86,.10) 0, rgba(63,144,86,.10) 110px, transparent 111px);
  opacity: 0.65;
}
.product-box img{
  width: 100%;
  display: block;
}
a{
  color: inherit;
}

.page{
  max-width: 575px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px 32px;
  position: relative;
  z-index: 1;
}

.sales-popups{
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 30;
  pointer-events: none;
}

.sales-popup{
  width: min(320px, calc(100vw - 28px));
  display: grid;
  max-width: 320px;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(230, 184, 99, .45);
  box-shadow: 0 16px 34px rgba(85, 61, 18, .20);
  backdrop-filter: blur(6px);
  transform: translateX(120%) scale(.96);
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease;
}

.sales-popup.is-visible{
  transform: translateX(0) scale(1);
  opacity: 1;
}

.sales-popup-image{
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff8e8;
  box-shadow: 0 8px 16px rgba(100, 84, 48, .12);
}

.sales-popup-content{
  min-width: 0;
}

.sales-popup-title{
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #cf6f1d;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.sales-popup-name{
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #2f6d42;
}

.sales-popup-time{
  margin: 0;
  font-size: 14px;
  color: #72675c;
}

.hero{
  position: relative;
  margin-top: 12px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(79, 54, 17, .14);
}

.hero-media{
  width: 100%; 
  background: linear-gradient(140deg, var(--green-dark), var(--green));
  display: grid; 
  padding: 8px;
}

.hero-media svg{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-content{
  padding: 18px 16px 20px;
  background: linear-gradient(180deg, #fff9eb 0%, #fef4dc 100%);
}

.eyebrow{
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 8px;
}

h1{
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
}

p{
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.5;
}

.hero-content p{
  font-size: 16px;
  margin-bottom: 14px;
}

.hero-actions{
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-media img{
  display: block;
  width: 100%;
  border-radius: 14px 14px 0  0;
}
 
.btn-primary{
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f2b33a);
  box-shadow: 0 8px 16px rgba(229,141,47,.35);
}

.btn-secondary{
  color: var(--text);
  background: #ffffff;
  border: 1px solid #e6ca8c;
}

.hero-actions a:hover{
  transform: translateY(-2px);
}

.block{
  margin-top: 12px;
  border-radius: 18px;
  padding: 18px 16px;
  background: var(--beige-soft);
  border: 2px solid rgba(255, 255, 255, .65);
}

.emphasis{
  background: linear-gradient(180deg, #fff8e5 0%, #f8dfb5 100%);
}

.warning{
  background: linear-gradient(180deg, #ffefd0 0%, #fae2ac 100%);
}

.block-accent{
  background: linear-gradient(160deg, #fffaed 0%, #f4e2ba 100%);
  border: 2px solid rgba(230, 152, 48, .3);
}

h2{
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--text);
}

.lead{
  font-size: 16px;
  color: var(--text-soft);
}

.title-mini{
  margin-top: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #5d4a2c;
}

.check-list{
  list-style: none;
  margin-bottom: 10px;
  display: grid;
  gap: 8px;
}

.check-list li{
  padding: 10px 10px 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.9);
}

.reviews-list{
  display: grid;
  gap: 12px;
}

.review-card{
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(224, 167, 84, .35);
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 18px rgba(129, 97, 33, .08);
}

.review-avatar{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img{
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}
.review-photo{
  object-fit: cover;
  border: 3px solid #fff4dd;
  box-shadow: 0 8px 16px rgba(109, 88, 35, .16);
}

.review-avatar--initials{
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  color: #fffdf6;
  background: linear-gradient(135deg, var(--green), var(--orange));
  border: 3px solid #fff4dd;
  box-shadow: 0 8px 16px rgba(109, 88, 35, .16);
}

.review-body{
  min-width: 0;
}

.review-name{
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: #2f6d42;
  background: #edf8dd;
}

.review-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #554b42;
}

.block + .block{
  margin-top: 12px;
}

.order-form-section{
  margin-top: 12px;
  padding: 18px 10px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.1)),
    radial-gradient(circle at top, rgba(255,255,255,.65), rgba(255,255,255,0) 52%),
    linear-gradient(180deg, #dfe8f5 0%, #c7d4ec 45%, #dfe5f0 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.order-form-card{
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
  border-radius: 24px;
  padding: 22px 18px 18px;
  box-shadow: 0 18px 32px rgba(60, 76, 114, .18);
  border: 1px solid rgba(255,255,255,.9);
}

.order-form-head{
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(92, 106, 145, .12);
}

.order-form-kicker{
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #233d7b;
}

.order-form-head h2{
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #4f5668;
}

.order-timer{
  margin: 0 0 14px;
  padding: 12px 14px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7e1 0%, #ffe7b9 100%);
  border: 1px solid rgba(231, 169, 59, .35);
}

.order-timer-label{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #86612b;
}

.order-timer-value{
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  color: #cb5633;
}

.order-form-offer{
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: end;
}

.product-visual{
  position: relative; 
  display: flex;
  align-items: end;
  justify-content: center;
}

.product-box{
  position: relative;
 
}

/* .product-box::before{
  content:"";
  position:absolute;
  inset: 10px 12px 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(122,162,232,.18) 0%, rgba(122,162,232,0) 18%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(185, 204, 242, .8);
}

.product-box::after{
  content:"";
  position:absolute;
  left: 28px;
  bottom: 26px;
  width: 40px;
  height: 56px;
  border-radius: 50% 50% 54% 54%;
  background: radial-gradient(circle at 40% 35%, #fafdff 0%, #b7daf8 48%, #73afe4 100%);
  box-shadow: 0 0 0 4px rgba(194, 223, 251, .55);
} */

.product-box-label{
  position: absolute;
  left: 16px;
  right: 16px;
  top: 34px;
  z-index: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #385c9d;
}

.product-bottle{
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 48px;
  height: 102px;
  border-radius: 14px 14px 12px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 74%, #d5e2f8 100%);
  border: 1px solid #c8d5ee;
  box-shadow: 0 10px 20px rgba(87, 112, 160, .16);
}

.product-bottle::before{
  content:"";
  position:absolute;
  left: 13px;
  top: -18px;
  width: 22px;
  height: 24px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #f8fbff 0%, #d6e4fb 100%);
  border: 1px solid #c8d5ee;
}

.product-bottle::after{
  content:"";
  position:absolute;
  left: 13px;
  top: -30px;
  width: 22px;
  height: 18px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #f8fbff 0%, #d6e4fb 100%);
}

.product-bottle-label{
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 18px;
  height: 36px;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 35%, #ffffff 0%, #c7e3fb 42%, #7eb8e8 100%);
}

.price-row{
  display: flex;
   flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.old-price{
  font-size: 24px;
  color: #5f6170;
  text-decoration: line-through;
}

.new-price{
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #cb5633;
}

.quick-order-form{
  display: grid;
  gap: 10px;
}

.quick-order-form input{
  width: 100%;
  height: 54px;
  box-sizing: border-box;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #d7d7df;
  background: #ffffff;
  font-family: inherit;
  font-size: 16px;
  color: #3d4050;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.quick-order-form input::placeholder{
  color: #8a8d97;
}

.quick-order-form button{
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #fff7e8;
  background: linear-gradient(180deg, #f6b32f 0%, #ee8b1d 52%, #d96b16 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.35), 0 5px 0 #c15d11, 0 14px 22px rgba(221, 130, 28, .26);
  cursor: pointer;
}

.secure-note{
  margin: 18px 0 0;
  padding-top: 14px;
  text-align: center;
  font-size: 16px;
  color: #58606e;
  border-top: 1px solid rgba(92, 106, 145, .12);
}

@media (max-width: 380px){
  h1{
    font-size: 27px;
  }
  h2{
    font-size: 22px;
  }
}

@media (max-width: 560px){
  .order-form-offer{
    grid-template-columns: 1fr;
  }

  .product-visual{ 
    justify-content: flex-start;
    padding-left: 8px;
  }

  .price-row{
    justify-content: center;
    flex-wrap: wrap;
  }

  .old-price{
    font-size: 22px;
  } 

  .review-card{
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .review-avatar{
    width: 56px;
    height: 56px;
  }

  .review-avatar--initials{
    font-size: 22px;
  }

  .sales-popups{
    right: 10px; 
    top: 12px;
  }

  .sales-popup{
    width: 100%;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    padding: 9px;
  }

  .sales-popup-image{
    width: 64px;
    height: 64px;
  }
}
