:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --success-color: #27ae60;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

/* Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  display: block; /* Always visible with Design 2 */
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--primary-color);
}

.logo-text .brand-tagline {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 0.25rem;
}

.logo span {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Language Dropdown - Custom */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  border: none;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 150px;
  white-space: nowrap;
  position: relative;
}

.language-btn::after {
  content: '';
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--white);
}

.language-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.language-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  overflow: hidden;
}

.language-selector.active .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-color);
  white-space: nowrap;
}

.language-option:hover {
  background-color: var(--light-bg);
}

.language-option.active {
  background-color: var(--secondary-color);
  color: var(--white);
}

.language-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.language-name {
  font-weight: 500;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  animation: fadeIn 1s;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Single line layout for 4 categories (Romanian) */
html[lang="ro"] .cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  html[lang="ro"] .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html[lang="ro"] .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page cards grid - 2 columns */
.contact-cards-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Link Wrapper - Makes entire card clickable */
.card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-link-wrapper:hover .card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  font-size: 3rem;
}

.card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.card p {
  color: #666;
  line-height: 1.8;
  flex-grow: 1;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.card-link:hover {
  color: var(--primary-color);
}

/* Blog Categories */
.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--secondary-color);
  background-color: var(--white);
  color: var(--secondary-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Blog Posts */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-post {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--light-bg);
  color: var(--secondary-color);
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-post h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.blog-post p {
  color: #666;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--primary-color);
}

/* Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--primary-color);
}

/* Resources/Tools Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.resource-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.resource-price {
  color: var(--success-color);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.buy-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--success-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
}

.buy-btn:hover {
  background-color: #229954;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-right {
  display: none; /* Hidden by default, shown only for Romanian */
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

html[lang="ro"] .footer-right {
  display: flex;
}

/* Hide blog sections for Romanian language */
html[lang="ro"] .blog-sections-english {
  display: none;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  opacity: 0.9;
}

.footer-link:hover {
  color: var(--secondary-color);
  opacity: 1;
  text-decoration: underline;
}

.social-links {
  margin: 1rem 0;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .language-selector {
    margin-top: 1rem;
    width: 100%;
  }

  .language-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .language-menu {
    width: 100%;
  }

  .logo-wrapper {
    gap: 0.5rem;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text .brand-name {
    font-size: 1.3rem;
  }

  .logo-text .brand-tagline {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cards-grid,
  .blog-posts,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* Exit-Intent Popup */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s;
}

.exit-popup-overlay.active {
  display: flex;
}

.exit-popup {
  background: var(--white);
  max-width: 600px;
  width: 90%;
  border-radius: 15px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s;
  text-align: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
  line-height: 1;
  padding: 0.5rem;
}

.exit-popup-close:hover {
  color: var(--accent-color);
}

.exit-popup h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.exit-popup p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.popup-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.popup-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.popup-form button {
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.popup-form button:hover {
  background-color: #c0392b;
}

.popup-guarantee {
  font-size: 0.9rem;
  color: #999;
}

/* Email Opt-in Boxes */
.email-optin-box {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-hover);
}

.email-optin-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.email-optin-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.email-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.email-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.email-form button {
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.email-form button:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}

/* Sticky CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--accent-color), #c0392b);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.active {
  transform: translateY(0);
}

.sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-cta h4 {
  margin: 0;
  font-size: 1.2rem;
}

.sticky-cta button {
  padding: 0.75rem 2rem;
  background-color: var(--white);
  color: var(--accent-color);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.sticky-cta button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-cta-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.sticky-cta-close:hover {
  opacity: 1;
}

/* Countdown Timer */
.countdown-timer {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-hover);
}

.countdown-timer h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.countdown-display {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
}

/* Urgency Badge */
.urgency-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Affiliate Product Box */
.affiliate-box {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
}

.affiliate-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: bold;
}

.affiliate-box h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.affiliate-box p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.affiliate-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.affiliate-product {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.affiliate-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.affiliate-product-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.affiliate-product h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.affiliate-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--success-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
}

.affiliate-link:hover {
  background-color: #229954;
  transform: scale(1.05);
}

/* Lead Magnet Box */
.lead-magnet {
  background: linear-gradient(135deg, #ffd93d, #ffb740);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '🎁';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 10rem;
  opacity: 0.1;
}

.lead-magnet h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.lead-magnet p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.lead-magnet-list {
  text-align: left;
  max-width: 400px;
  margin: 1.5rem auto;
  position: relative;
}

.lead-magnet-list li {
  margin-bottom: 0.75rem;
  color: #333;
  font-weight: 500;
}

.lead-magnet-list li::before {
  content: '✓ ';
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .exit-popup {
    padding: 2rem 1.5rem;
  }

  .popup-form,
  .email-form {
    flex-direction: column;
  }

  .popup-form button,
  .email-form button {
    width: 100%;
  }

  .sticky-cta-content {
    justify-content: center;
  }

  .countdown-display {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .affiliate-products {
    grid-template-columns: 1fr;
  }
}

