
    :root {
      --font-body-family: 'Rubik', sans-serif;
      --font-heading-family: 'Archivo Black', sans-serif;
    }
    body {
      font-family: var(--font-body-family);
      font-weight: 300;
      font-style: normal;
      font-size: 1rem;
      line-height: 1.6;
      letter-spacing: 0.03rem;
      margin: 0;
      min-height: 100vh;
      display: grid;
      grid-template-rows: auto 1fr auto;
      background-color: #fff;
      color: #121212;
    }
    h1,h2,h3,h4,h5,h6 {
      font-family: var(--font-heading-family);
      font-weight: 700;
      color: #121212;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    
    /* Mobile First Adjustments */
    @media (max-width: 767px) {
      body {
        font-size: 0.9rem;
      }
      
      .hero-section {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-content, .hero-image {
        width: 100% !important;
        padding: 1rem !important;
      }
      
      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        min-width: auto !important;
        gap: 0.75rem !important;
      }
      
      .product-card {
        margin-bottom: 0.5rem;
      }
      
      .product-card img {
        height: 120px !important;
      }
      
      .footer-links {
        flex-direction: column;
        gap: 0.5rem !important;
      }
    }
    
    /* Desktop Adjustments */
    @media (min-width: 768px) {
      body {
        font-size: 1.1rem;
      }
      
      .hero-section {
        flex-direction: row;
        text-align: left;
      }
      
      .hero-content {
        width: 50%;
        padding: 2rem;
      }
      
      .hero-image {
        width: 50%;
        padding: 2rem;
      }
      
      .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
      }
    }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.781);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Aktifkan popup */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Container */
.popup-container {
  background: linear-gradient(135deg, #57585ae8 0%, #57585ae8 100%);
  color: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  transform: translateY(25px);
  transition: transform 0.4s ease;
}

/* Animasi saat muncul */
.popup-overlay.active .popup-container {
  transform: translateY(0);
}

/* Judul */
.popup-title {
  font-family: #ffff ;
  font-size: 1.6rem;
  margin-bottom: 18px;
  text-align: center;
}

/* Konten */
.popup-content {
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Fitur List */
.popup-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.popup-feature i {
  margin-right: 10px;
  color: #ffcc00;
}

/* Tombol CTA */
.popup-button {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #ffcc00;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  margin-top: 18px;
  transition: background-color 0.3s;
}
.popup-button:hover {
  background-color: #e6b800;
}
 /* Custom styles for gold color and hover effects */
    .bg-gold {
      background-color: #FFD700; /* Gold color */
    }
    .hover\\:bg-gold-dark:hover {
      background-color: #DAA520; /* Darker gold on hover */
    }
    .text-gold {
      color: #FFD700;
    }