
    :root {
      --primary: #b45309;
      --primary-dark: #92400e;
      --primary-light: #fffbeb;
      --secondary: #d97706;
      --accent: #f59e0b;
      --gradient-primary: linear-gradient(135deg, #b45309 0%, #d97706 100%);
      --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
      --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
      --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 50%, #fff 100%);
    }
    
    h1, h2, h3, .heading-font { font-family: 'Playfair Display', serif; }
    
    .modern-header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(180, 83, 9, 0.1);
    }
    
    .nav-link {
      position: relative;
      transition: all 0.3s ease;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    .nav-link:hover::after, .nav-link.active::after { width: 100%; }
    
    .hero-gradient {
      background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 30%, #fde68a 60%, #fffbeb 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
      animation: float 15s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    .product-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(245, 158, 11, 0.1);
    }
    
    .product-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(245, 158, 11, 0.3);
    }
    
    .product-card .image-wrapper {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
    }
    
    .product-card .image-wrapper img { transition: transform 0.5s ease; }
    .product-card:hover .image-wrapper img { transform: scale(1.08); }
    
    .badge-discount {
      background: linear-gradient(135deg, #059669 0%, #10b981 100%);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    }
    
    .btn-primary {
      background: var(--gradient-primary);
      color: white;
      padding: 14px 28px;
      border-radius: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(180, 83, 9, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(180, 83, 9, 0.4);
    }
    
    .add-cart-btn {
      background: var(--gradient-primary);
      color: white;
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .add-cart-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(180, 83, 9, 0.35);
    }
    
    .wishlist-btn {
      width: 44px;
      height: 44px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      color: #9ca3af;
      z-index: 10;
      position: relative;
    }
    
    .wishlist-btn:hover {
      background: #fffbeb;
      color: #b45309;
      transform: scale(1.1);
    }
    
    .filter-tab {
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .benefit-card {
      background: white;
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s ease;
      border: 1px solid rgba(245, 158, 11, 0.1);
    }
    
    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    
    .benefit-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.75rem;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    .benefit-card:hover .benefit-icon {
      background: var(--gradient-primary);
      color: white;
      transform: scale(1.1) rotate(-5deg);
    }
    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate-in { animation: fadeInUp 0.6s ease forwards; }
    .product-card-animate { animation: fadeInUp 0.5s ease forwards; opacity: 0; }
    
    .loading-overlay {
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    
    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #fffbeb;
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin { to { transform: rotate(360deg); } }
    
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: #fffbeb; }
    ::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 5px; }
    
    html { scroll-behavior: smooth; }

    /* ===== SPIRITUAL BACKGROUND ===== */
    .spiritual-bg {
      background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 50%, #fff 100%);
      position: relative;
    }

    /* ===== YANTRA TYPE TABS ===== */
    .yantra-type-tab {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      border: 1px solid transparent;
      cursor: pointer;
    }
    .yantra-type-tab:hover {
      background: #fef3c7;
      border-color: rgba(180, 83, 9, 0.2);
    }
    .yantra-type-tab.active {
      background: var(--gradient-primary) !important;
      color: white !important;
      border-color: transparent;
      box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
    }

    /* ===== YANTRA CARD ===== */
    .yantra-card {
      background: white;
      border: 1px solid rgba(245, 158, 11, 0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .yantra-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(245, 158, 11, 0.3);
    }
    .yantra-card:hover .quick-view-btn {
      opacity: 1;
    }
    .yantra-card:hover .yantra-overlay {
      opacity: 1;
    }

    /* ===== YANTRA IMAGE CONTAINER ===== */
    .yantra-image-container {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
    }
    .yantra-image-container img {
      transition: transform 0.5s ease;
    }
    .yantra-card:hover .yantra-image-container img {
      transform: scale(1.05);
    }

    /* ===== YANTRA OVERLAY ===== */
    .yantra-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(180, 83, 9, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    /* ===== ENERGIZED BADGE (Discount) ===== */
    .energized-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: linear-gradient(135deg, #059669, #10b981);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      z-index: 5;
      box-shadow: 0 2px 10px rgba(5, 150, 105, 0.4);
    }

    /* ===== MATERIAL BADGE ===== */
    .material-badge {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    /* ===== CUSTOMIZE / CTA BUTTON ===== */
    .customize-btn {
      background: var(--gradient-primary);
      color: white;
      padding: 14px 32px;
      border-radius: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(180, 83, 9, 0.3);
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .customize-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(180, 83, 9, 0.4);
    }

    /* ===== MANTRA SECTION (Install & Worship) ===== */
    .mantra-section {
      background: linear-gradient(135deg, #92400e 0%, #b45309 30%, #d97706 70%, #b45309 100%);
      position: relative;
    }
    .mantra-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* ===== RITUAL & INSTRUCTION STEPS ===== */
    .ritual-step {
      padding: 16px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      border-left: 3px solid rgba(251, 191, 36, 0.5);
    }
    .instruction-step {
      padding: 16px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      border-left: 3px solid rgba(251, 191, 36, 0.5);
    }

    /* ===== YANTRA ICON ===== */
    .yantra-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    /* ===== TESTIMONIAL CARD ===== */
    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 32px;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s ease;
      border: 1px solid rgba(245, 158, 11, 0.1);
    }
    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    /* ===== PAGINATION ===== */
    .pagination-link {
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .pagination-link.active {
      background: var(--gradient-primary);
      color: white;
      border-color: transparent;
    }
    .pagination-link:hover:not(.active) {
      border-color: var(--primary);
      color: var(--primary);
    }

    /* ===== QUICK VIEW BUTTON ===== */
    .quick-view-btn {
      opacity: 0;
      backdrop-filter: blur(4px);
      z-index: 5;
    }
    .yantra-card:hover .quick-view-btn {
      opacity: 1;
    }
  