/* ====================================
   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);
}

/* Common Sticky CTA Styles */
.sticky-cta-1,
.sticky-cta-2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #81b71a; /* Green background */
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

/* Sticky CTA 1 Styles */
.sticky-cta-1 .product-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta-1 .product-preview img {
  max-height: 80px;
  width: auto;
}

.sticky-cta-1 .plus {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.sticky-cta-1 .offer-text {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.sticky-cta-1 .price {
  font-size: 24px;
}
