.promo-dates {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
}

.promo-dates .accent {
  color: var(--accent-red);
  font-weight: 700;
}
:root {
  /* Warm, cosmetic-friendly palette */
  --primary-green: #404042; /* terracotta */
  --primary-green-dark: #6f2e22; /* deeper terracotta */
  --secondary-green: #42a346; /* unify accents */
  --secondary-green-dark: #4d4d72;
  --light-green: #a4a5a778; /* warm paper */
  --light-green-alt: #a4a5a778; /* soft rose-beige */
  --accent-rgb: 139, 61, 46; /* rgb(primary) for shadows */
  --white: #ffffff;
  --text-primary: #1f2937; /* slate-800 */
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-dark: #111827; /* slate-900 */
  --accent-purple: #d97706; /* repurpose as amber accent */
  --accent-red: #b42009; /* warm amber-brown */
  --accent-red-light: #b42009c1; /* amber */
  --background-overlay: rgba(0, 0, 0, 0.08);
  --background-glass: rgba(255, 255, 255, 0.08);
  --background-glass-hover: rgba(255, 255, 255, 0.12);
  --background-glass-active: rgba(255, 255, 255, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green-dark);
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  display: block;
}

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 5px 16px;
}

.content-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.section {
  margin-top: 20px;
}

.hero {
  position: relative;
  height: auto;
  display: block;
  color: var(--text-primary);
  padding: 16px;
}

.hero-image-wrap {
  background: var(--light-green-alt);
  padding: 12px;
  border-radius: 20px;
}

.hero-image {
  position: static;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hero-bg {
  display: none;
}

.hero::after {
  content: none;
}

.hero-content {
  display: block;
  text-align: left;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-green-alt) 50%, #fffaf5 100%);
  background-size: 200% 200%;
  animation: heroGradient 8s ease-in-out infinite;
  border-radius: 12px;
  position: relative; /* allow inner badge positioning */
  padding-bottom: 28px; /* space for badge at bottom */
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.12);
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--primary-green);
  line-height: 1.2;
}

.hero p {
  font-size: 14px;
  margin: 6px 0 0 0;
  opacity: 0.95;
  max-width: 100%;
}

.hero-sale-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0d0c0e, #2bc47e);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-top: 4px;
  position: absolute;
  bottom: 8px;
  left: 8px;
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.25);
  z-index: 2;
}

.hero-price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px; /* equal outer gutters = half of gap */
  margin-bottom: 16px;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
}

.price-option {
  background: linear-gradient(
    160deg,
    var(--secondary-green) 0%,
    var(--secondary-green-dark) 100%
  );
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  width: 100%;
  max-width: 360px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  text-align: center;
  position: relative;
}

.hero-price .price-option {
  flex: 1 1 0;
  max-width: none;
}

.price-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.25);
}

.price-option.active {
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.35);
}

.quantity-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.95;
}

.price-option .price-old {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.price-option .price-new {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.price-option .discount {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-top: 6px;
}

.savings {
  background: var(--accent-red);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
  animation: pulse-savings 2s infinite;
}

/* Badge */
.price-badge {
  position: relative;
  display: inline-block;
  align-self: center;
  background: linear-gradient(135deg, #0d0c0e, #2bc47e);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.35);
}

.badge-bestseller::before {
  content: "★";
  margin-right: 6px;
}

.deal-timer {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
}

.deal-timer .time {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  animation: glow-digits 2s ease-in-out infinite;
}

@keyframes glow-digits {
  0%,
  100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  }
}

/* Stock progress */
.stock-progress {
  margin-top: 10px;
}

.stock-bar {
  background: rgba(255, 255, 255, 0.25);
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
}

.stock-fill {
  background: linear-gradient(90deg, #0d0c0e, #2bc47e);
  height: 100%;
  width: 0%;
  transition: width 0.6s ease;
}

.stock-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  margin-top: 6px;
}

/* Corner ribbon */
.corner-ribbon {
  position: absolute;
  top: 10px;
  right: -10px;
  background: linear-gradient(135deg, #0d0c0e, #2bc47e);
  color: #fff;
  padding: 6px 18px;
  transform: rotate(15deg);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.35);
  border-radius: 6px;
}

@keyframes pulse-savings {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Updated button styling with cyan primary color */
.button {
  background: var(--secondary-green);
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.button:hover {
  background: var(--secondary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
  color: white;
}

/* Added pulse animation for call-to-action */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
  }
  50% {
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.6);
  }
  100% {
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
  }
}

/* Products grid section */
.products-section {
  padding: 60px 20px;
  max-width: 480px;
  margin: 0 auto;
}

.products-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.main-product {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.product-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature {
  background: var(--light-green);
  color: var(--primary-green);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-info p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 16px;
}

.price-new {
  color: var(--primary-green);
  font-size: 24px;
  font-weight: 700;
}

.discount {
  background: var(--accent-purple);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Updated swiper styling */
.swiper-main {
  width: 100%;
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: var(--primary-green);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-green);
  opacity: 1;
}

.swiper-description {
  margin: 32px 16px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
#desc-0 {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--light-green-alt) 100%
  );
  border-radius: 12px;
  margin-bottom: 20px;
}

#desc-1 {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--light-green-alt) 100%
  );
  border-radius: 12px;
}

.swiper-description h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--primary-green);
  margin: 5px 0;
}

.swiper-description ul {
  list-style: disc inside;
  padding: 0;
  color: var(--text-primary);
  padding: 0px 16px;
  margin-top: 10px;
}

.swiper-description ul li {
  margin-bottom: 4px;
}

.wrap-button {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
#desc-order-btn {
  width: 100%;
}

.features {
  padding: 16px 16px;
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--light-green-alt) 100%
  );
}

.features h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-green);
  margin-top: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.feature-item {
  background: var(--white);
  border-radius: 16px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.08);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-item p {
  color: var(--text-primary);
  font-size: 13px;
}

/* Added benefits section styling */
.benefits {
  padding: 60px 20px;
  background: var(--light-green);
  margin-top: 10px;
  text-align: center;
}

.benefits h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-green);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.benefit-item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0;
}

/* Added testimonials section styling */
.testimonials {
  padding: 0px 16px;
  background: var(--white);
  text-align: center;
}

.testimonials .testimonials-swiper {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden; /* ensure only one slide is visible */
  position: relative; /* allow absolute-positioned nav inside */
}

.testimonials .testimonials-pagination {
  margin-top: 12px;
  position: static;
}

/* place testimonial arrows at bottom INSIDE slider */
.testimonials .testimonials-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none; /* container shouldn't block clicks */
}

.testimonials .testimonials-button-prev,
.testimonials .testimonials-button-next {
  position: static; /* static inside flex container */
  pointer-events: auto; /* re-enable on buttons */
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary-green);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.testimonial-item {
  background: var(--light-green);
  border-radius: 16px;
  padding: 10px;
  border-left: 4px solid var(--secondary-green);
}

.testimonials .testimonial-item {
  padding-left: 36px;
  padding-right: 36px;
}

.testimonials .testimonial-item img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 12px auto;
  display: block;
}

.testimonial-rating {
  margin-bottom: 12px;
  font-size: 16px;
}

.testimonial-item p {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 12px;
  font-size: 14px;
}

.testimonial-author {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
}

/* Added scarcity section styling */
.scarcity {
  background: linear-gradient(
    135deg,
    var(--accent-red) 0%,
    var(--accent-red-light) 100%
  );
  color: white;
  padding: 32px 20px;
  text-align: center;
  margin-top: 40px;
}

.scarcity h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.scarcity p {
  margin-bottom: 16px;
}

.stock-count {
  font-weight: 700;
  font-size: 18px;
}

.stock-bar {
  background: rgba(255, 255, 255, 0.3);
  height: 8px;
  border-radius: 4px;
  margin: 16px auto;
  max-width: 300px;
  overflow: hidden;
}

.stock-fill {
  background: var(--secondary-green);
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.stock-text {
  font-size: 14px;
  opacity: 0.9;
}

.delivery {
  margin-top: 20px;
  text-align: center;
  padding: 0 16px;
}

.delivery h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary-green);
  margin-top: 0px;
}

.delivery h2 .accent {
  color: inherit;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}

.delivery-item {
  background: var(--light-green);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.08);
  transition: transform 0.3s ease;
}

.delivery-item:hover {
  transform: translateY(-4px);
}

.delivery-item--row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.delivery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.delivery-content h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: var(--secondary-green);
}

.delivery-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-primary);
}

/* Left align text inside delivery items */
.delivery .delivery-content {
  text-align: left;
}

.delivery-item h3 {
  font-size: 16px;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.delivery-item p {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
}

/* Modern form styling */
.order-form {
  position: relative;
  margin-top: 20px;
  border-radius: 20px;
  padding: 16px 16px;
  color: white;
  overflow: hidden;
}

/* Added background image and overlay for order form */
.order-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(21, 128, 61, 0.95) 0%, rgba(132, 204, 22, 0.95) 100%),
    url("https://images.unsplash.com/photo-1620916566398-39f1143ab7be?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80")
    center / cover; */
  background: var(--light-green);
  z-index: -1;
}

.order-content {
  position: relative;
  z-index: 1;
}

.order-content h2 {
  margin-top: 0;
}

.order-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
  color: var(--primary-green);
}

/* Updated order price styling to match hero price options */
.order-price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px; /* equal outer gutters = half of gap */
  margin-bottom: 16px;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
}

.order-price .price-option {
  background: linear-gradient(
    160deg,
    var(--secondary-green) 0%,
    var(--secondary-green-dark) 100%
  );
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  width: 100%;
  max-width: 360px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  text-align: center;
  position: relative;
}

.order-price .price-option {
  flex: 1 1 0;
  max-width: none;
}

.order-price {
  align-items: center;
}

.order-price .price-option:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.order-price .price-option.active {
  border-color: var(--secondary-green);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.order-price .quantity-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.95;
}

.order-price .price-old {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.order-price .price-new {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.order-price .discount {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-top: 6px;
}

.order-price .savings {
  background: var(--accent-red);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
  animation: pulse-savings 2s infinite;
}

/* Center the savings badge inside its price option */
.price-option .savings {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.form-subtitle {
  text-align: center;
  margin-bottom: 16px;
  opacity: 0.9;
  font-size: 16px;
  color: var(--primary-green);
}

.order-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.order-form input,
.order-form textarea {
  padding: 16px 20px;
  border: 1px solid var(--secondary-green);
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  background: #fff;
  border: none;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.3);
}

.order-form textarea {
  min-height: 100px;
  resize: vertical;
}

.order-form button {
  background: var(--secondary-green);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.order-form button:hover {
  background: var(--secondary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.4);
}

.guarantee {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.9;
  color: var(--primary-green);
}

.consent {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.consent a {
  color: var(--primary-green);
  text-decoration: underline;
}

/* Reset checkbox styling inside order form consent */
.order-form .consent input[type="checkbox"] {
  padding: 0;
  border: none;
  box-shadow: none;
  outline: none;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.order-form .consent input[type="checkbox"]:focus {
  box-shadow: none;
  outline: none;
}

.order-deal-note {
  text-align: center;
  margin: 0px 0 20px 0;
  font-size: 24px;
  color: var(--primary-green);
  font-weight: 600;
}

.installation-guide {
  padding: 0px 16px;
  background: var(--white);
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.installation-guide h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.installation-image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.installation-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.installation-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: center;
  text-align: left;
  background: var(--light-green);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.08);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-2px);
}

.step-number {
  background: var(--primary-green);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-right: 16px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 4px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0;
}

footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-primary);
  padding: 10px 16px;
  margin-top: 20px;
  background: var(--light-green);
}

footer p {
  margin: 0;
  margin-bottom: 5px;
}

footer a {
  color: var(--primary-green);
}

.footer-politics {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  margin-bottom: 5px;
}

.order-img__wrapper {
  margin: 0;
  padding: 0;
  height: 100%;
  margin: 0px 0 10px 0;
}

.order-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
