/* 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-1 {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 25px;
}

.buy-now-1 .buy-header {
  text-align: center;
  margin-bottom: 40px;
}

.buy-now-1 .buy-header h2 {
  color: #ff0000;
  font-size: 36px;
  margin-bottom: 20px;
}

.buy-now-1 .sub-heading {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.buy-now-1 .highlight-text {
  color: var(--secondary-color);
  text-decoration: underline;
}

.buy-now-1 .highlight-blue {
  color: var(--secondary-color);
  font-weight: bold;
}

.buy-now-1 .offer-terms {
  font-size: 24px;
  margin-bottom: 10px;
}

.buy-now-1 .regular-price {
  color: #666;
  font-size: 18px;
}

.buy-now-1 .order-form {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
}

.buy-now-1 .form-header {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
  margin: -30px -30px 30px;
}

.buy-now-1 .form-header h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.buy-now-1 .secure-note {
  font-size: 14px;
  opacity: 0.9;
}

.buy-now-1 .special-offer {
  text-align: center;
  margin-bottom: 30px;
}

.buy-now-1 .offer-text {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.buy-now-1 .retail-price {
  color: #666;
  font-size: 16px;
}

.buy-now-1 .product-display {
  text-align: center;
  margin-bottom: 30px;
}

.buy-now-1 .product-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap; /* Added to allow wrapping on smaller screens */
}

.buy-now-1 .plus-sign {
  font-size: 36px;
  color: var(--primary-color);
  font-weight: bold;
}

.buy-now-1 .buy-button {
  display: block;
  margin: 0 auto 30px;
  max-width: 400px;
}

.buy-now-1 .access-info {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.buy-now-1 .access-info p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.buy-now-1 .shipping-note {
  color: #ff0000;
  font-weight: bold;
  text-transform: uppercase;
}

.buy-now-1 .important-note {
  background: #fff9c4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
}

.buy-now-1 .guarantee {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.buy-now-1 .attention-box {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.buy-now-1 .price-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ff0000;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
}

.buy-now-1 .save {
  font-size: 14px;
  text-transform: uppercase;
}

.buy-now-1 .amount {
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .buy-now-1 .buy-header h2 {
    font-size: 28px;
  }

  .buy-now-1 .sub-heading,
  .buy-now-1 .offer-terms {
    font-size: 20px;
  }

  .buy-now-1 .product-images {
    flex-direction: column;
    align-items: center;
  }

  .buy-now-1 .price-tag {
    position: static;
    margin: 0 auto 20px;
    transform: none;
  }

  .buy-now-1 .devices-image,
  .buy-now-1 .dvd-image {
    width: 100%;
    max-width: 300px; /* Limit width on mobile */
  }

  .buy-now-1 .plus-sign {
    transform: rotate(90deg); /* Rotate plus sign when stacked */
  }
}
