:root {
  --bg-main: #F6F0E6;
  --bg-gradient: linear-gradient(135deg, #FFF8EA 0%, #E8F0F8 48%, #F4E3D0 100%);
  --bg-card: #FFFFFF;

  --text-main: #2F181B;
  --text-body: #66514A;

  --accent-sun: #F4D12F;
  --accent-sand: #1E5EA8;

  --shadow-soft: 0 10px 22px rgba(47, 24, 27, 0.12);
  --border-color: rgba(74, 36, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #3B1E22;
  color: var(--text-main);
}

.mobile-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-gradient);
  min-height: 100vh;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
}

/* #region Hero Section */
.hero-cap {
  padding: 30px 20px 40px;
  position: relative;
  z-index: 1;
}

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

.pre-title {
  display: inline-block;
  color: #FFF;
  background: linear-gradient(135deg, var(--accent-sand), #2B78C4);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(30, 94, 168, 0.25);
}

.main-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px 0;
  color: var(--text-main);
}

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

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

.subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
  display: block;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 25px;
  background-color: #FFF;
  box-shadow: var(--shadow-soft);
  border: 4px solid #FFF;
  overflow: hidden;
}

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

.discount-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--accent-sun);
  color: #FFF;
  font-size: 22px;
  font-weight: 800;
  padding: 8px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(226, 123, 54, 0.4);
  z-index: 3;
}

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

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

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

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

.price-item.old .price-value {
  text-decoration: line-through;
}

.price-item.new {
  align-items: flex-end;
  color: var(--text-main);
}

.price-text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-body);
}

.old .price-value {
  font-size: 18px;
  font-weight: 600;
}

.new .price-value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent-sun);
}

.stock-block {
  background-color: var(--bg-card);
  padding: 15px 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
}

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

.stock-count {
  color: var(--accent-sun);
  font-weight: 800;
}

.stock-bar {
  height: 8px;
  background-color: var(--bg-main);
  border-radius: 4px;
  overflow: hidden;
}

.stock-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-sun), #FFF07A);
  border-radius: 4px;
}

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

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

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

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

.timer-item {
  background-color: var(--bg-card);
  padding: 12px 10px;
  border-radius: 12px;
  min-width: 65px;
  box-shadow: 0 4px 10px rgba(63, 50, 41, 0.05);
  border: 1px solid var(--border-color);
}

.timer-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
}

.timer-text {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-sand);
  margin-top: 4px;
  display: block;
}

.timer-sep {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.field {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  background-color: var(--bg-card);
  color: var(--text-main);
  font-weight: 500;
  transition: all 0.3s;
}

.field::placeholder {
  color: #AFA297;
  font-weight: 400;
}

.field:focus {
  border-color: var(--accent-sun);
  box-shadow: 0 0 10px rgba(226, 123, 54, 0.15);
}

.trust-block {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 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 Section */
.description-cap {
  padding: 40px 20px;
  background-color: #FFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.description-cap .section-title {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-main);
}

.description-cap .desc-image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
}

.description-cap .desc-img {
  width: 100%;
  height: auto;
  display: block;
}

.description-cap .desc-text-box {
  background: var(--bg-gradient);
  padding: 25px 20px;
  border-radius: 20px;
  margin-bottom: 35px;
  border-left: 4px solid var(--accent-sun);
  box-shadow: 0 4px 15px rgba(213, 184, 149, 0.2);
}

.description-cap .desc-text-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.description-cap .desc-text-box strong {
  color: var(--text-main);
  font-weight: 700;
}

/* #endregion */

/* #region Advantages Section */
.advantages-cap {
  padding: 40px 20px;
  background-color: var(--bg-main);
}

.advantages-cap .section-title {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-main);
}

.advantages-cap .adv-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.advantages-cap .adv-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.advantages-cap .adv-image-wrap {
  width: 100%;
  border-bottom: 2px solid var(--border-color);
  overflow: hidden;
}

.advantages-cap .adv-img {
  width: 100%;
  height: auto;
  display: block;
}

.advantages-cap .adv-text-content {
  padding: 25px 20px;
}

.advantages-cap .adv-card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-sun);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.advantages-cap .adv-text-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* #endregion */

/* #region Instruction Section */
.mobile-instruction-section {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 16px;
  background: var(--bg-gradient);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.instruction-header {
  text-align: center;
  margin-bottom: 24px;
}

.instruction-header .title {
  color: var(--text-main);
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.instruction-header .subtitle {
  color: var(--text-body);
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}

.instruction-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.instruction-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.instruction-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: var(--bg-main);
}

.tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: var(--accent-sun);
  border-radius: 50%;
  font-size: 16px;
}

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

.tip-text strong {
  color: var(--accent-sand);
  font-weight: 700;
}

/*#endregion */

/* #region Specs Section */
.specs-cap {
  padding: 40px 20px;
  background-color: var(--bg-main);
}

.specs-cap .section-title {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-main);
}

.specs-cap .specs-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
}

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

.specs-cap .specs-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.specs-cap .specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.specs-cap .specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(213, 184, 149, 0.2);
}

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

.specs-cap .spec-name {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  width: 45%;
}

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

.specs-cap .package-box {
  background: var(--bg-gradient);
  border: 1px solid var(--accent-sand);
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(213, 184, 149, 0.15);
}

.specs-cap .package-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-sun);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  text-align: center;
}

.specs-cap .pkg-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specs-cap .pkg-item {
  font-size: 14px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  background: var(--bg-card);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(63, 50, 41, 0.05);
  border: 1px solid rgba(213, 184, 149, 0.3);
}

.specs-cap .pkg-item strong {
  color: var(--accent-sun);
  margin-right: 8px;
  font-weight: 800;
  font-size: 16px;
}

.specs-cap .pkg-icon {
  margin-right: 12px;
  font-size: 24px;
}

/* #endregion */

/* #region Reviews Section */
.reviews-cap {
  padding: 40px 20px;
  background-color: var(--bg-main);
}

.reviews-cap .section-title {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-main);
}

.reviews-cap .reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.reviews-cap .review-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 25px 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.reviews-cap .review-card.no-photo {
  border-left: 4px solid var(--accent-sun);
}

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

.reviews-cap .user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(213, 184, 149, 0.3);
}

.reviews-cap .user-meta {
  display: flex;
  flex-direction: column;
}

.reviews-cap .user-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 4px 0;
}

.reviews-cap .user-rating {
  color: var(--accent-sun);
  font-size: 16px;
  letter-spacing: 2px;
}

.reviews-cap .review-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.reviews-cap .review-photo {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.reviews-cap .review-img {
  width: 100%;
  height: auto;
  display: block;
}

/* #endregion */

/* #region How to Order Section */
.how-to-order-cap {
  padding: 40px 20px;
  background-color: #FFF;
  border-top: 1px solid var(--border-color);
}

.how-to-order-cap .section-title {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.1;
}

.how-to-order-cap .steps-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.how-to-order-cap .step-card {
  display: flex;
  align-items: center;
  background-color: var(--bg-main);
  padding: 20px 15px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(213, 184, 149, 0.1);
}

.how-to-order-cap .step-number {
  min-width: 48px;
  height: 48px;
  background: var(--bg-card);
  color: var(--accent-sun);
  border: 2px solid var(--accent-sun);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(226, 123, 54, 0.15);
}

.how-to-order-cap .step-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.how-to-order-cap .step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  text-transform: uppercase;
}

.how-to-order-cap .step-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
  margin: 0;
}

/* #endregion */

/* #region Guarantees Section */
.guarantees-cap {
  padding: 40px 20px;
  background-color: var(--bg-main);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guarantees-cap .guarantee-item {
  text-align: center;
  padding: 25px 20px;
  background: #FFF;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.guarantees-cap .guarantee-icon {
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--accent-sun);
}

.guarantees-cap .guarantee-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.guarantees-cap .guarantee-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

/* #endregion */

/* #region Footer Section */
.footer-cap {
  background-color: var(--text-main);
  padding: 40px 20px 50px;
  text-align: center;
  border-top: 3px solid var(--accent-sand);
}

.footer-cap .footer__distributor {
  font-size: 13px;
  color: #D5B895;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-cap .footer__policy p {
  font-size: 13px;
  color: #D5B895;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

.footer-cap .footer__link {
  font-size: 14px;
  color: var(--accent-sun);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--accent-sun);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.footer-cap .footer__link:hover {
  color: #FFF;
  border-color: #FFF;
}

/* #endregion */

.intermediate-cta {
  text-align: center;
}

.cta-btn {
  background: linear-gradient(135deg, #1E5EA8 0%, #0E3E7B 100%);
  color: #FFF;
  border: none;
  border-radius: 12px;
  padding: 22px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 20px rgba(30, 94, 168, 0.28);
  transition: 0.3s;
}

.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 10px rgba(30, 94, 168, 0.25);
}

/* Waterproof sealant theme tweaks */
.cap-theme::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.65), transparent 24%), radial-gradient(circle at 85% 0%, rgba(244, 209, 47, 0.16), transparent 28%);
  z-index: 0;
}

.hero-cap,
.description-cap,
.advantages-cap,
.specs-cap,
.reviews-cap,
.how-to-order-cap,
.guarantees-cap,
.footer-cap {
  position: relative;
  z-index: 1;
}

.main-title,
.section-title,
.adv-card-title,
.package-title,
.guarantee-title {
  letter-spacing: -0.02em;
}

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

.discount-badge {
  color: #2F181B;
  background: linear-gradient(135deg, #FFE95A 0%, #F4D12F 100%);
}

.new .price-value,
.stock-count,
.reviews-cap .user-rating,
.footer-cap .footer__link {
  color: var(--accent-sand);
}

.price-block,
.stock-block,
.timer-item,
.trust-item,
.review-card,
.step-card,
.guarantee-item {
  backdrop-filter: blur(2px);
}