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

.sticky-cta-2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-cta-2 .cta-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta-2 .timer-section {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.sticky-cta-2 .timer-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sticky-cta-2 .countdown-display {
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  font-family: monospace;
}

.sticky-cta-2 .offer-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-cta-2 .price-tag {
  text-align: right;
  color: white;
}

.sticky-cta-2 .original-price {
  display: block;
  text-decoration: line-through;
  font-size: 14px;
  opacity: 0.8;
}

.sticky-cta-2 .current-price {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

.sticky-cta-2 .cta-button {
  display: block;
}

.sticky-cta-2 .cta-button img {
  height: 45px;
  width: auto;
  transition: transform 0.2s ease;
}

.sticky-cta-2 .cta-button:hover img {
  transform: scale(1.05);
}

.sticky-cta-2 .guarantee-badge img {
  height: 60px;
  width: auto;
}

.sticky-cta-2 .close-cta {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.sticky-cta-2 .close-cta:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .sticky-cta-2 .cta-wrapper {
    flex-direction: column;
    gap: 15px;
    padding: 15px 25px;
  }

  .sticky-cta-2 .timer-section {
    flex-direction: column;
    gap: 5px;
  }

  .sticky-cta-2 .guarantee-badge {
    display: none;
  }

  .sticky-cta-2 .close-cta {
    top: 10px;
    transform: none;
  }
}
