body{      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg-dark: #1a1a1a;
      --bg-charcoal: #2a2a2a;
      --text-white: #ffffff;
      --accent-gold: #d4a574;
      --accent-amber: #f59e0b;
      --gray-soft: #9ca3af;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-dark);
      color: var(--text-white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1px;
    }

    .heading-cinematic {
      font-size: 4rem;
      line-height: 1.1;
      font-weight: 400;
    }

    .btn-primary {
      background: var(--accent-gold);
      color: var(--bg-dark);
      padding: 16px 40px;
      border: none;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-primary:hover {
      background: var(--accent-amber);
      box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text-white);
      padding: 16px 40px;
      border: 2px solid var(--text-white);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-secondary:hover {
      background: var(--text-white);
      color: var(--bg-dark);
      transform: translateY(-2px);
    }

    .glow-effect {
      transition: all 0.3s ease;
    }

    .glow-effect:hover {
      box-shadow: 0 0 25px rgba(212, 165, 116, 0.4);
      transform: translateY(-5px);
    }

    .navbar-solid {
      background: rgba(26, 26, 26, 0.95);
      backdrop-filter: blur(10px);
    }

    .hero-gradient {
      background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 100%;
      height: 200%;
      background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
      animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }

    .product-card {
      background: var(--bg-charcoal);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .product-card:hover::before {
      left: 100%;
    }

    .product-card:hover {
      border-color: var(--accent-gold);
      transform: translateY(-8px);
    }

    .icon-feature {
      width: 60px;
      height: 60px;
      background: rgba(212, 165, 116, 0.1);
      border: 2px solid var(--accent-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 20px;
      transition: all 0.3s ease;
    }

    .icon-feature:hover {
      background: var(--accent-gold);
      transform: rotate(360deg);
    }

    .modal-overlay {
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(5px);
    }

    .filter-chip {
      padding: 8px 20px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      background: transparent;
      color: var(--text-white);
    }

    .filter-chip:hover, .filter-chip.active {
      background: var(--accent-gold);
      color: var(--bg-dark);
      border-color: var(--accent-gold);
    }

    .cart-badge {
      background: var(--accent-amber);
      color: var(--bg-dark);
      font-weight: 700;
      font-size: 0.75rem;
      padding: 2px 6px;
      border-radius: 50%;
      position: absolute;
      top: -8px;
      right: -8px;
    }

    @media (max-width: 768px) {
      .heading-cinematic {
        font-size: 2.5rem;
      }
    }
    .hero-bg {
  background-image: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
    url('https://i.pinimg.com/1200x/ee/53/dd/ee53ddddc8801eaa90470f5c25934df9.jpg'); /* replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-link {
  color: #bfdbfe; /* blue-200 */
  transition: color 0.3s;
  cursor: pointer;
}

.nav-link:hover {
  color: #f59e0b; /* amber-500 */
}

.mobile-link {
  display: block;
  font-size: 1.1rem;
  color: #bfdbfe;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: #f59e0b;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #f59e0b;
  color: black;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 999px;
}

