:root {
  --bg-main: #f4f7f4;
  --bg-card: #ffffff;
  
  --text-main: #1f2937;
  --text-body: #4b5563;
  --text-muted: #9ca3af;
  
  --accent-primary: #4d7c0f;
  --accent-secondary: #65a30d;
  --accent-action: #d97706;
  
  --shadow-soft: 0 10px 30px rgba(77, 124, 15, 0.08);
  --shadow-btn: 0 8px 25px rgba(77, 124, 15, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

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

.mobile-wrapper {
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-main);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}

.section-title {
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}

.text-vibrant {
  color: var(--accent-primary);
}

/* #region Hero Section */
.hero {
  padding: 40px 20px;
  background-image: radial-gradient(circle at top, rgba(101, 163, 13, 0.1) 0%, var(--bg-main) 70%);
}

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

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--text-main);
}

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

.subtitle {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  background-color: var(--accent-primary);
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(77, 124, 15, 0.3);
}

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

.product-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  background-color: var(--bg-card);
  border: 1px solid rgba(77, 124, 15, 0.1);
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.discount-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--accent-action);
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
  transform: rotate(15deg);
  border: 2px solid #ffffff;
  z-index: 2;
}

.price-block {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(77, 124, 15, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.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: 15px;
}

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

.price-item.new .price-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-primary);
}

.price-item.new .price-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-primary);
}

.stock-block {
  margin-bottom: 20px;
  background-color: var(--bg-card);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.05);
}

.stock-text {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 700;
}

.stock-count {
  color: var(--accent-action);
}

.stock-bar {
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.stock-progress {
  height: 100%;
  background-color: var(--accent-action);
  border-radius: 4px;
}

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

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

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

.timer-item {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  padding: 10px;
  border-radius: 8px;
  min-width: 60px;
  border: 1px solid rgba(77, 124, 15, 0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.timer-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-primary);
}

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

.timer-sep {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-action);
  animation: blink 1s infinite;
}

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

.form .field {
  width: 100%;
  padding: 18px;
  background-color: var(--bg-card);
  border: 2px solid rgba(77, 124, 15, 0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form .field::placeholder {
  color: var(--text-muted);
}

.form .field:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(77, 124, 15, 0.15);
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-field {
  appearance: none;
  cursor: pointer;
  padding-right: 40px !important;
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 14px;
  pointer-events: none;
}

.form .button {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: var(--accent-primary);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  animation: pulse-green 2s infinite;
  letter-spacing: 1px;
}

.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: 700;
  background-color: var(--bg-card);
  padding: 12px 5px;
  border-radius: 8px;
  border: 1px solid rgba(77, 124, 15, 0.05);
}

.trust-icon {
  font-size: 24px;
  margin-bottom: 5px;
}
/* #endregion */

/* #region How It Works Section */
.how-it-works-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}

.result-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(77, 124, 15, 0.1);
  background-color: var(--bg-main);
}

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

.mechanism-content {
  background-color: var(--bg-main);
  padding: 22px 18px;
  border-radius: 12px;
  border: 1px dashed rgba(77, 124, 15, 0.3);
}

.mechanism-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mechanism-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
  margin-bottom: 20px;
  font-weight: 500;
}

.mechanism-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mechanism-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mech-icon {
  font-size: 22px;
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-card);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(77, 124, 15, 0.08);
  border: 1px solid rgba(77, 124, 15, 0.15);
}

.mechanism-list li div {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
}

.mechanism-list li strong {
  display: block;
  color: var(--accent-primary);
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 14px;
}
/* #endregion */

/* #region Benefits Section */
.benefits-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}

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

.benefit-item {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.benefit-image-wrapper {
  position: relative;
  width: 100%;
}

.benefit-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.benefit-content {
  padding: 20px 15px;
}

.benefit-content.text-only-benefit {
  background-color: rgba(101, 163, 13, 0.05);
  border-left: 4px solid var(--accent-secondary);
}

.benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.benefits-cta {
  margin-top: 25px;
}
/* #endregion */

/* #region How To Use Section */
.how-to-use-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}

.instruction-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(77, 124, 15, 0.1);
}

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

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

.step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--bg-card);
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(77, 124, 15, 0.1);
}

.step-number {
  min-width: 45px;
  height: 45px;
  background-color: rgba(101, 163, 13, 0.1);
  color: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  margin-right: 15px;
  box-shadow: inset 0 0 0 1px rgba(77, 124, 15, 0.1);
}

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

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* #region Specifications Section */
.specs-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}

.specs-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
  background-color: var(--bg-main);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(77, 124, 15, 0.1);
}

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

.specs-group {
  margin-bottom: 25px;
}

.specs-group:last-child {
  margin-bottom: 0;
}

.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.1);
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(77, 124, 15, 0.2);
  font-size: 13px;
}

.specs-list li:first-child {
  padding-top: 0;
}

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

.spec-name {
  color: var(--text-muted);
  width: 40%;
  line-height: 1.4;
  font-weight: 600;
}

.spec-value {
  color: var(--text-main);
  font-weight: 800;
  width: 60%;
  text-align: right;
  line-height: 1.4;
}

.spec-value.text-accent {
  color: var(--accent-primary);
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-item {
  display: flex;
  align-items: center;
  background-color: var(--bg-main);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.1);
}

.package-item.highlight-green {
  background-color: rgba(101, 163, 13, 0.05);
  border: 1px dashed rgba(101, 163, 13, 0.4);
}

.package-icon {
  font-size: 24px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-item strong {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.4;
}

.package-item.highlight-green strong {
  color: var(--accent-primary);
}
/* #endregion */

/* #region Reviews Section */
.reviews-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}

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

.review-item {
  background-color: var(--bg-card);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

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

.avatar-placeholder {
  width: 45px;
  height: 45px;
  background-color: rgba(101, 163, 13, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  margin-right: 15px;
  border: 1px solid rgba(77, 124, 15, 0.2);
}

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

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

.rating-stars {
  color: var(--accent-action);
  font-size: 14px;
  letter-spacing: 2px;
}

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

.review-photo-wrapper {
  width: 200px;
  height: 200px;
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(77, 124, 15, 0.1);
}

.review-photo {
  width: 100%;
  height: auto;
  display: block;
}

.reviews-cta {
  margin-top: 25px;
}
/* #endregion */

/* #region How To Order Section */
.how-to-order-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}
/* #endregion */

/* #region Guarantees Section */
.guarantees-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(101, 163, 13, 0.1);
}

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

.guarantee-item {
  text-align: center;
  padding: 25px 20px;
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(77, 124, 15, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.guarantee-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 15px;
  background-color: rgba(101, 163, 13, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(77, 124, 15, 0.2);
}

.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.guarantee-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  font-weight: 500;
}
/* #endregion */

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

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

.footer__distributor {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__policy p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer__link {
  font-size: 13px;
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer__link:hover {
  text-decoration: underline;
  color: var(--accent-primary);
}
/* #endregion */

.cta-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: var(--accent-primary);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: var(--shadow-btn);
  animation: pulse-green 2s infinite;
  letter-spacing: 1px;
}

@keyframes pulse-green {
  0% { 
    transform: scale(1); 
    box-shadow: 0 0 10px rgba(77, 124, 15, 0.2); 
  }

  50% { 
    transform: scale(1.02); 
    box-shadow: 0 0 25px rgba(77, 124, 15, 0.5); 
  }

  100% { 
    transform: scale(1); 
    box-shadow: 0 0 10px rgba(77, 124, 15, 0.2); 
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}