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

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

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

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

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

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Common Buy Now Styles */
.buy-now-classic,
.buy-now-attention,
.buy-now-guarantee,
.buy-now-limited,
.buy-now-special {
  padding: 40px 0;
  background: white;
}

.buy-now-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Header Text Styles */
.header-text {
  margin-bottom: 30px;
}

.header-text h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;
}

.main-offer {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.test-drive {
  color: #0066cc;
  text-decoration: underline;
}

.program-name {
  color: #0066cc;
  font-style: italic;
}

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

/* Secure Order Form */
.secure-header {
  background: #333;
  color: white;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.secure-header h3 {
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
}

/* Retail Price and Special Offer */
.retail-price {
  color: #666;
  text-decoration: line-through;
  margin: 15px 0;
}

.special-offer {
  color: #009900;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
}

/* Product Display */
.product-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.digital-product img,
.dvd-product img {
  max-width: 100%;
  height: auto;
}

.plus-sign {
  color: #ff0000;
  font-size: 30px;
  font-weight: bold;
}

/* Buy Now Button */
.buy-now-link {
  display: block;
  width: 300px;
  margin: 30px auto;
}

.buy-now-button {
  width: 100%;
  height: auto;
  display: block;
}

/* Access Info */
.access-info {
  text-align: center;
  margin: 25px 0;
}

.access-info p {
  margin: 10px 0;
  font-size: 16px;
}

.shipping {
  color: #ff0000;
  font-weight: bold;
}

.shipping-note {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

/* Important Note */
.important-note {
  background: #ffff99;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}

.important-note h4 {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.important-note p {
  margin: 5px 0;
  color: #000;
}

.attention-bar {
  background: #ff0000;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.arrow-pointer {
  color: #ff0000;
  font-size: 40px;
  margin: 20px 0;
}

/* Media Queries */
@media (max-width: 768px) {
  .product-display {
    flex-direction: column;
  }

  .plus-sign {
    margin: 10px 0;
  }

  .buy-now-link {
    width: 250px;
  }

  .header-text h2,
  .main-offer {
    font-size: 18px;
  }
}
