
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
        background: linear-gradient(to bottom right, #fbc8d4, #936878); /* soft pink ke pink tua */
      min-height: 100vh;
      padding: 20px;
      opacity: 0;
      animation: fadeInBody 1.5s ease forwards;
    }
    @keyframes fadeInBody { to { opacity: 1; } }
    canvas#particles {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      pointer-events: none;
    }
    .container { max-width: 1200px; margin: 0 auto; }
    .header {
      text-align: center;
      margin-bottom: 40px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }
    .header::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 70%);
      animation: slow-spin 20s linear infinite;
      z-index: -1;
    }
    @keyframes slow-spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .header h1 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    .header p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
      margin-bottom: 20px;
      font-style: italic;
    }
    .search-container {
      margin: 30px 0;
      position: relative;
    }
    .search-box {
      width: 100%;
      padding: 15px 50px 15px 20px;
      border: none;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      color: white;
      font-size: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }
    .search-box::placeholder { color: rgba(255, 255, 255, 0.7); }
    .search-icon {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.2rem;
    }
    .cta-button {
      display: inline-block;
      background: linear-gradient(45deg, #ff6b6b, #ee5a24);
      color: white;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 15px rgba(238, 90, 36, 0.3);
    }
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(238, 90, 36, 0.4);
    }
   .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

    .product-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 25px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      color: white;
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
    .product-image {
      width: 100%;
      height: 200px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: rgba(255, 255, 255, 0.7);
    }
    .brand-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.9);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: bold;
      color: #333;
    }
    .product-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .product-price {
      color: #ffeb3b;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 15px;
    }
    .product-description {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .buy-button {
      width: 100%;
      background: linear-gradient(45deg, #4CAF50, #45a049);
      color: white;
      border: none;
      padding: 15px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .buy-button:hover {
      background: linear-gradient(45deg, #45a049, #4CAF50);
      transform: scale(1.05);
      box-shadow: 0 8px 15px rgba(76, 175, 80, 0.3);
    }

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.secret-price {
  color: #ffeb3b;
  font-size: 1.3rem;
  font-weight: bold;
  animation: blink 1s infinite;
  cursor: pointer;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.buy-button {
  display: block;
  width: 100%;
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  text-align: center;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: linear-gradient(45deg, #45a049, #4CAF50);
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(76, 175, 80, 0.3);
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.top-navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.logo-text {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 1px;
}

.social-icons a {
  margin-left: 20px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(100%) invert(1);
  opacity: 0.85;
}

.social-icons a:hover {
  transform: scale(1.2);
  opacity: 1;
}

.container {
  padding-top: 80px;
}

.site-footer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.footer-logo span {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-tagline {
  margin: 5px 0 15px;
  font-size: 0.95rem;
  color: #ffcad4;
}

.footer-social a {
  margin: 0 12px;
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ff80ab;
}

.footer-credit {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  margin: 0 12px;
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff80ab;
}

.footer-social .social-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
