:root {
  --bg-main: #f4f8f5;
  --bg-card: #ffffff;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --accent-primary: #1b4332;  /* Темно-зеленый (под стиль упаковки) */
  --accent-secondary: #d8f3dc;
  --accent-action: #2d6a4f;   /* Насыщенный зеленый для кнопок */
  
  --shadow-soft: 0 10px 30px rgba(27, 67, 50, 0.04);
  --shadow-card: 0 4px 15px rgba(45, 106, 79, 0.08);
  --shadow-btn: 0 8px 25px rgba(45, 106, 79, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #081c15;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  color: var(--text-body);
}

.mobile-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--bg-main);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  overflow: hidden !important;
  position: relative;
}

/* #region Hero */
.hero {
  padding: 30px 20px 40px;
  background-image: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
}

.hero-header {
  text-align: center;
  margin-bottom: 25px;
}

.main-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text-main);
}

.main-title .text-vibrant {
  color: var(--accent-action);
}

.subtitle-wrapper {
  margin-bottom: 15px;
}

.subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--accent-primary);
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 500;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--accent-secondary);
  background: #fff;
}

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

.discount-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #d90429; /* Красный для скидки */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 2px solid #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.price-block {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid var(--accent-action);
  box-shadow: var(--shadow-card);
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-item.old {
  align-items: flex-start;
}

.price-item.new {
  align-items: flex-end;
  text-align: right;
}

.price-text {
  font-size: 11px;
  margin-bottom: 5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.price-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-item.old .price-text {
  margin-bottom: 12px;
}

.price-item.old .price-value,
.price-item.old .price-currency {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-item.new .price-value {
  font-size: 32px;
  font-weight: 900;
  color: #d90429; 
}

.price-item.new .price-currency {
  font-size: 20px;
  font-weight: 800;
  color: #d90429;
}

.scarcity-block {
  margin-bottom: 25px;
}

.timer-wrapper {
  text-align: center;
}

.timer-title {
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.timer-item {
  display: flex;
  flex-direction: column;
  background-color: var(--accent-primary);
  padding: 10px;
  border-radius: 6px;
  min-width: 60px;
}

.timer-val {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.timer-text {
  font-size: 9px;
  color: var(--accent-secondary);
  margin-top: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.timer-sep {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-primary);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.form .field {
  width: 100%;
  padding: 18px;
  background-color: #ffffff;
  border: 1px solid var(--accent-secondary);
  border-radius: 6px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
}

.form .field:focus {
  outline: none;
  border-color: var(--accent-action);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form .button {
  width: 100%;
  padding: 18px;
  background-color: var(--accent-action);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.form .button:hover {
  background-color: var(--accent-primary);
}

.trust-block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 11px;
  color: var(--text-body);
  font-weight: 600;
  background-color: var(--bg-card);
  padding: 12px 5px;
  border-radius: 6px;
  border: 1px solid var(--accent-secondary);
}

.trust-icon {
  font-size: 22px;
  margin-bottom: 5px;
}

/* #region Description & Ingredients */
.description-block, .benefits-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--accent-secondary);
}

.benefits-block {
  background-color: var(--bg-main);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1.2;
}

.section-title .text-vibrant {
  color: var(--accent-action);
}

.desc-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--accent-secondary);
  background: #fff;
}

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

.desc-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 15px;
  font-weight: 500;
}

.desc-content p:last-child {
  margin-bottom: 0;
}

.desc-content p strong {
  color: var(--accent-primary);
  font-weight: 800;
}

/* Ingredients Grid */
.ingredients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-secondary);
  border-radius: 8px;
  padding: 15px;
  width: calc(50% - 7.5px);
  box-shadow: var(--shadow-soft);
}

.ingredient-card.full-width {
  width: 100%;
}

.ingredient-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.ingredient-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
}

/* #region Specs */
.specs-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--accent-secondary);
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--accent-secondary);
  box-shadow: var(--shadow-soft);
}

.specs-list li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(45, 106, 79, 0.2);
}

.specs-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-name {
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.spec-value {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.spec-value.text-accent {
  color: var(--accent-action);
  font-weight: 800;
}

/* #region Reviews */
.reviews-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid var(--accent-secondary);
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  background-color: var(--bg-card);
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid var(--accent-secondary);
  box-shadow: var(--shadow-soft);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.avatar-placeholder {
  width: 45px;
  height: 45px;
  background-color: var(--accent-secondary);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  border-radius: 50%;
  margin-right: 12px;
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.avatar-placeholder.alt-color {
  background-color: #e2e8f0;
  color: var(--text-main);
  border-color: #cbd5e1;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  font-weight: 500;
}

.reviews-cta {
  margin-top: 30px;
}

/* #region How to order */
.how-to-order-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--accent-secondary);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--bg-main);
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid var(--accent-secondary);
  box-shadow: var(--shadow-card);
}

.step-number {
  min-width: 42px;
  height: 42px;
  background-color: var(--accent-secondary);
  color: var(--accent-primary);
  border: 2px solid var(--accent-action);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-right: 15px;
}

.step-content {
  padding-top: 2px;
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.step-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

/* #region Footer */
.footer-mobile {
  background-color: #081c15;
  padding: 35px 20px 45px;
  border-top: 4px solid var(--accent-action);
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__distributor,
.footer__policy p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer__link {
  font-size: 13px;
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: var(--accent-action);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: var(--shadow-btn);
  letter-spacing: 1px;
}