:root {
  --bg-main: #0f172a;
  --bg-card: #1e293b;
  
  --text-main: #fef3c7;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  
  --accent-glow: #f59e0b;
  --accent-light: #fbbf24;
  --accent-action: #ef4444;
  
  --shadow-amber: 0 10px 35px rgba(245, 158, 11, 0.25);
  --shadow-btn: 0 8px 25px rgba(245, 158, 11, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #020617;
  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.8);
  overflow-x: hidden;
}

/* #region Hero Section */
.hero {
  padding: 30px 20px 40px;
  background-image: radial-gradient(circle at top, rgba(245, 158, 11, 0.1) 0%, var(--bg-main) 60%);
}

.hero-header {
  text-align: center;
  margin-bottom: 25px;
}

.hero-header .main-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-main);
  letter-spacing: 1px;
}

.main-title .text-vibrant {
  color: var(--accent-light);
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.hero-header .subtitle-wrapper {
  margin-bottom: 15px;
}

.hero-header .subtitle {
  font-size: 13px;
  font-weight: 800;
  color: #000000;
  background-color: var(--accent-glow);
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-header .desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-amber);
  background-color: var(--bg-card);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
}

.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(239, 68, 68, 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(245, 158, 11, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.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: #64748b;
  text-decoration: line-through;
  font-weight: 600;
}

.price-item.new .price-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-light);
}

.price-item.new .price-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-light);
}

.savings-block {
  background-color: var(--bg-card);
  border: 2px solid var(--accent-glow);
  border-radius: 16px;
  padding: 20px 15px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-amber);
}

.savings-title {
  text-align: center;
  color: var(--accent-glow);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.savings-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.savings-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: 8px;
  padding: 12px 15px;
  background-color: var(--bg-main);
  transition: transform 0.2s ease;
}

.savings-list li:hover {
  transform: scale(1.02);
  border-color: var(--accent-glow);
}

.savings-qty {
  font-weight: 800;
  color: var(--text-main);
  font-size: 15px;
  width: 35%;
}

.savings-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 65%;
}

.savings-price {
  color: var(--accent-light);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.savings-discount {
  font-size: 12px;
  color: var(--accent-action);
  font-weight: 600;
  margin-top: 3px;
}

.stock-block {
  margin-bottom: 20px;
  background-color: var(--bg-card);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stock-text {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
}

.stock-text .stock-count { 
  color: var(--accent-action); 
}

.stock-bar {
  width: 100%;
  height: 8px;
  background-color: #334155;
  border-radius: 4px;
  overflow: hidden;
}

.stock-progress {
  height: 100%;
  background-color: var(--accent-action);
  border-radius: 4px;
}

.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;
}

.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(245, 158, 11, 0.2);
}

.timer-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-light);
}

.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(245, 158, 11, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.3s;
}

.form .field::placeholder { 
  color: var(--text-muted); 
}

.form .field:focus {
  outline: none;
  border-color: var(--accent-glow);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 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-glow);
  font-size: 14px;
  pointer-events: none;
}

.form .button {
  width: 100%;
  padding: 18px;
  background-color: var(--accent-glow);
  color: #000000;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  animation: pulse-amber 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(255, 255, 255, 0.05);
}

.trust-icon {
  font-size: 24px;
  margin-bottom: 5px;
}
/* #endregion */

/* #region Description Section */
.description-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.section-title .text-vibrant {
  color: var(--accent-light);
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.description-block .desc-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
  background-color: var(--bg-main);
  box-shadow: var(--shadow-amber);
  z-index: 1;
  border: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.description-block .desc-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.description-block .desc-image-wrapper .amber-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: var(--accent-glow);
  filter: blur(45px);
  opacity: 0.2;
  z-index: 0;
  animation: amberPulse 4s infinite alternate ease-in-out;
}

.desc-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 15px;
  text-align: left;
  font-weight: 500;
}

.desc-content p:last-child {
  margin-bottom: 0;
}

.desc-content p strong {
  color: var(--accent-light);
  font-weight: 800;
}
/* #endregion */

/* #region Benefits Section */
.benefits-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-image-wrapper {
  position: relative;
  width: 100%;
}

.benefit-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.soft-amber-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--accent-glow);
  filter: blur(40px);
  opacity: 0.1;
  z-index: 0;
}

.benefit-content {
  padding: 20px 15px;
}

.benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.benefits-cta {
  margin-top: 30px;
}
/* #endregion */

/* #region Specifications Section */
.specs-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.specs-block .specs-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
  background-color: var(--bg-main);
  box-shadow: var(--shadow-amber);
  z-index: 1;
  border: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.specs-block .specs-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transform: scale(0.95); 
}

.specs-block .specs-image-wrapper .soft-amber-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: var(--accent-glow);
  filter: blur(45px);
  opacity: 0.2;
  z-index: 0;
  animation: amberPulse 4s infinite alternate ease-in-out;
}

.specs-group {
  margin-bottom: 25px;
}

.specs-group:last-child {
  margin-bottom: 0;
}

.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  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(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.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: 45%; 
  line-height: 1.4;
  font-weight: 600;
}

.spec-value {
  color: #ffffff;
  font-weight: 800;
  width: 55%;
  text-align: right;
  line-height: 1.4;
}

.spec-value.text-accent {
  color: var(--accent-light);
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-item {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  padding: 18px 15px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
  text-align: center;
}

.package-icon {
  font-size: 28px;
  margin-bottom: 5px;
}

.package-item strong {
  font-size: 15px;
  color: var(--text-main);
  font-weight: 800;
}

.highlight-amber {
  background-color: rgba(245, 158, 11, 0.05);
}
/* #endregion */

/* #region Reviews Section */
.reviews-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  background-color: var(--bg-card);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar-placeholder {
  width: 45px;
  height: 45px;
  background-color: var(--bg-main);
  color: var(--accent-light);
  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: 2px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.1);
}

.user-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.rating-stars {
  color: var(--accent-glow);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 0;
}

.review-item.has-photo .review-text {
  margin-bottom: 15px;
}

.review-photo-wrapper {
  position: relative;
  width: 200px;
  height: 300;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: var(--shadow-amber);
  z-index: 1;
}

.review-photo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.reviews-cta {
  margin-top: 25px;
}
/* #endregion */

/* #region How to Order Section */
.how-to-order-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  width: 2px;
  background: var(--accent-glow);
  opacity: 0.3;
}

.step-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.step-number {
  min-width: 42px;
  height: 42px;
  background-color: var(--bg-card);
  color: var(--accent-light);
  border: 2px solid var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.step-content {
  padding-top: 8px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}
/* #endregion */

/* #region Guarantees Block */
.guarantees-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.guarantees-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-item {
  text-align: center;
  padding: 25px 20px;
  background-color: var(--bg-main);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.guarantee-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 15px;
  background-color: var(--bg-card);
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.guarantee-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}
/* #endregion */

/* #region Footer */
.footer-mobile {
  background-color: #020617;
  padding: 35px 20px 45px;
  border-top: 4px solid var(--accent-glow);
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__distributor {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.footer__policy p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

.footer__link {
  font-size: 13px;
  color: var(--accent-glow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer__link:hover,
.footer__link:active {
  color: var(--accent-light);
  text-decoration: underline;
}
/* #endregion */

.cta-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: var(--accent-glow);
  color: #000000;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: var(--shadow-btn);
  animation: pulse-amber 2s infinite;
  letter-spacing: 0.5px;
}

@keyframes pulse-amber {
  0% { 
    transform: scale(1); 
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); 
  }

  50% { 
    transform: scale(1.03); 
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.6); 
  }

  100% { 
    transform: scale(1); 
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); 
  }
}

@keyframes blink { 
  0%, 100% { 
    opacity: 1; 
  }

  50% { 
    opacity: 0; 
  } 
}