/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

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

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.buy-now-3 {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 25px;
}

.buy-now-3 .hero-banner {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.buy-now-3 .banner-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.buy-now-3 .price-display {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  border-radius: 10px;
}

.buy-now-3 .original {
  text-decoration: line-through;
  opacity: 0.8;
  font-size: 24px;
}

.buy-now-3 .current {
  font-size: 48px;
  font-weight: bold;
  color: #ffeb3b;
}

.buy-now-3 .main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.buy-now-3 .product-preview {
  position: relative;
}

.buy-now-3 .preview-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.buy-now-3 .product-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-now-3 .badge {
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.buy-now-3 .countdown-timer {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.buy-now-3 .timer-display {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
}

.buy-now-3 .features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.buy-now-3 .feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
}

.buy-now-3 .feature-icon {
  font-size: 24px;
}

.buy-now-3 .feature-text h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.buy-now-3 .order-section {
  text-align: center;
}

.buy-now-3 .savings-tag {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.buy-now-3 .order-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* background: var(--primary-color); */
  color: white;
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}

/* .buy-now-3 .order-button:hover {
  transform: translateY(-2px);
} */

.buy-now-3 .button-text {
  font-size: 24px;
  font-weight: bold;
}

.buy-now-3 .button-price {
  font-size: 32px;
}

.buy-now-3 .guarantee-section {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.buy-now-3 .guarantee-badge {
  width: 120px;
  height: 120px;
}

.buy-now-3 .guarantee-text h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
}

@media (max-width: 968px) {
  .buy-now-3 .main-content {
    grid-template-columns: 1fr;
  }

  .buy-now-3 .guarantee-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .buy-now-3 .banner-content h2 {
    font-size: 32px;
  }

  .buy-now-3 .current {
    font-size: 36px;
  }

  .buy-now-3 .button-text {
    font-size: 20px;
  }

  .buy-now-3 .button-price {
    font-size: 28px;
  }
}
