:root {
  --bg-main: #0a0a0a;
  --bg-card: #171717;
  
  --text-main: #ffffff;
  --text-body: #a3a3a3;
  --text-muted: #737373;
  
  --accent-primary: #22c55e;
  --accent-vibrant: #4ade80;
  --accent-warning: #fbbf24;
  
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.8);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.5);
  --shadow-btn: 0 8px 25px rgba(34, 197, 94, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  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 30px rgba(0,0,0,0.8);
  overflow: hidden !important;
  position: relative;
}

/* #region Hero */
.hero {
  padding: 30px 20px 40px;
  background: radial-gradient(circle at top, #1f2937 0%, var(--bg-main) 70%);
}

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

.pre-title {
  font-size: 11px;
  font-weight: 800;
  color: #000000;
  background-color: var(--accent-vibrant);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.main-title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--text-main);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

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

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

.product-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 2px solid #27272a;
}

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

.discount-badge {
  position: absolute;
  top: 60px;
  left: 15px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border: 2px solid #ffffff;
  transform: rotate(-5deg);
}

.price-block {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  border: 1px solid #3f3f46;
}

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

.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: #52525b;
  text-decoration: line-through;
  font-weight: 700;
}

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

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

.stock-block {
  margin-bottom: 20px;
  background-color: var(--bg-card);
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #3f3f46;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

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

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

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

.stock-progress {
  height: 100%;
  background-color: var(--accent-primary);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.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(--bg-main);
  padding: 10px;
  border-radius: 6px;
  min-width: 60px;
  border: 1px solid #3f3f46;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.timer-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-vibrant);
  font-family: monospace;
}

.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(--text-muted);
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

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

.form .field {
  width: 100%;
  padding: 18px;
  background-color: #1f2937;
  border: 1px solid #3f3f46;
  border-radius: 6px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form .field::placeholder {
  color: #71717a;
}

.form .field:focus {
  outline: none;
  border-color: var(--accent-primary);
  background-color: #27272a;
}

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

.form .button:active {
  transform: scale(0.98);
  background-color: #16a34a;
}

.trust-block {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.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 */
.description-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid #3f3f46;
  border-bottom: 1px solid #3f3f46;
}

.section-title {
  font-size: 26px;
  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-primary);
}

.desc-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.desc-gif-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #27272a;
  box-shadow: var(--shadow-soft);
}

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

.desc-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.desc-subtitle {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
  text-transform: uppercase;
}

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

.desc-text strong {
  color: var(--text-main);
  font-weight: 800;
  border-bottom: 1px dashed var(--accent-primary); 
}

.desc-inline-img-wrapper {
  margin: 15px 0;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #27272a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.desc-inline-img {
  width: 100%;
  height: auto;
  display: block;
}
/* #endregion */

/* #region Benefits */
.benefits-block {
  padding: 40px 20px;
  background-color: var(--bg-main);
  border-top: 1px solid #3f3f46;
}

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

.benefit-item {
  background-color: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #3f3f46;
}

.benefit-image-wrapper {
  width: 100%;
  border-bottom: 2px solid var(--accent-primary);
}

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

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

.benefit-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-vibrant);
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

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

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

.specs-img-wrapper {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 6px;
  border: 2px solid #27272a;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

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

.specs-group {
  margin-top: 20px;
}

.specs-list.detailed-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #3f3f46;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.specs-list.detailed-specs li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #27272a;
}

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

.spec-name {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  width: 45%;
  line-height: 1.4;
}

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

.spec-value.text-accent {
  color: var(--accent-vibrant);
  font-size: 15px;
}

.package-group {
  margin-top: 30px;
}

.sub-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 15px;
  border-left: 4px solid var(--accent-primary);
  padding-left: 10px;
  text-transform: uppercase;
}

.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: 18px 15px;
  border-radius: 6px;
  border: 1px solid #3f3f46;
  box-shadow: var(--shadow-card);
}

.package-icon {
  font-size: 26px;
  margin-right: 15px;
}

.package-item strong {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}
/* #endregion */

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

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

.review-item {
  background-color: var(--bg-card);
  padding: 25px 20px;
  border-radius: 6px;
  border: 1px solid #3f3f46;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
}

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

.avatar-placeholder {
  width: 48px;
  height: 48px;
  background-color: #121212;
  color: var(--accent-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  border-radius: 6px;
  margin-right: 15px;
  border: 2px solid var(--accent-primary);
  box-shadow: inset 0 0 10px rgba(34, 197, 94, 0.2);
}

.avatar-placeholder.alt-color {
  color: var(--text-main);
  border-color: #52525b;
  box-shadow: none;
}

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

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

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

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

.review-photo-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin-top: 15px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #3f3f46;
}

.review-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-cta {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed #3f3f46;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* #endregion */

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

.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: 6px;
  border: 1px solid #3f3f46;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
}

.step-number {
  min-width: 44px;
  height: 44px;
  background-color: var(--bg-main);
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-right: 15px;
  box-shadow: inset 0 0 10px rgba(34, 197, 94, 0.2);
}

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

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

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

/* #region Guarantees */
.guarantees-block {
  padding: 40px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid #3f3f46;
}

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

.guarantee-item {
  text-align: center;
  padding: 25px 20px;
  background-color: var(--bg-main);
  border-radius: 6px;
  border: 1px solid #3f3f46;
  box-shadow: var(--shadow-soft);
}

.guarantee-icon {
  font-size: 34px;
  margin-bottom: 15px;
}

.guarantee-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

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

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

.footer__distributor {
  font-size: 12px;
  color: #71717a;
  line-height: 1.6;
}

.footer__link {
  font-size: 13px;
  color: var(--accent-vibrant);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(74, 222, 128, 0.4);
  padding-bottom: 2px;
}

.footer__link:hover,
.footer__link:active {
  color: #ffffff;
  border-bottom-style: solid;
}
/* #endregion */

.cta-btn {
  display: block;
  width: 100%;
  padding: 22px;
  background: var(--accent-primary);
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: var(--shadow-btn);
  letter-spacing: 1px;
  transition: transform 0.1s, background-color 0.3s;
}

.cta-btn:active {
  transform: scale(0.98);
  background-color: #16a34a;
}
