
    :root {
      --primary: #92400e;
      --primary-dark: #78350f;
      --primary-light: #fef3c7;
      --secondary: #b45309;
      --accent: #f59e0b;
      --gradient-primary: linear-gradient(135deg, #92400e 0%, #b45309 100%);
      --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 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 */
    .modern-header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(146, 64, 14, 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 Section */
    .hero-gradient {
      background: linear-gradient(135deg, #fef3c7 0%, #ffedd5 30%, #fed7aa 60%, #fef3c7 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); }
    }
    
    /* Modern Cards */
    .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, #fef3c7 0%, #fff 100%);
    }
    
    .product-card .image-wrapper img {
      transition: transform 0.5s ease;
    }
    
    .product-card:hover .image-wrapper img {
      transform: scale(1.08);
    }
    
    /* Badges */
    .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);
    }
    
    .badge-featured {
      background: var(--gradient-primary);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(146, 64, 14, 0.4);
    }
    
    /* Modern Buttons */
    .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(146, 64, 14, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(146, 64, 14, 0.4);
    }
    
    .btn-outline {
      background: white;
      color: var(--primary);
      padding: 14px 28px;
      border-radius: 14px;
      font-weight: 600;
      border: 2px solid var(--primary);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    
    /* Mukhi Filter Grid */
    .mukhi-item {
      background: white;
      border-radius: 16px;
      padding: 16px 12px;
      text-align: center;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .mukhi-item:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
    }
    
    .mukhi-item.active {
      background: var(--gradient-primary);
      border-color: transparent;
    }
    
    .mukhi-item.active .mukhi-number,
    .mukhi-item.active .mukhi-name {
      color: white;
    }
    
    .mukhi-number {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Playfair Display', serif;
    }
    
    .mukhi-name {
      font-size: 0.75rem;
      color: #6b7280;
      margin-top: 4px;
    }
    
    /* Benefits Section */
    .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, #fef3c7 0%, #fde68a 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);
    }
    
    /* Tab Styles */
    .filter-tab {
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 500;
      transition: all 0.3s ease;
      color: #6b7280;
    }
    
    .filter-tab:hover {
      background: rgba(245, 158, 11, 0.1);
      color: var(--primary);
    }
    
    .filter-tab.active {
      background: var(--gradient-primary);
      color: white;
      box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3);
    }
    
    /* Wishlist Button */
    .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: #fef2f2;
      color: #dc2626;
      transform: scale(1.1);
    }
    
    /* Add to Cart Button */
    .add-cart-btn {
      background: var(--gradient-primary);
      color: white;
      padding: 14px 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(146, 64, 14, 0.35);
    }
    
    /* Pagination */
    .pagination-link {
      padding: 10px 16px;
      border-radius: 10px;
      font-weight: 500;
      transition: all 0.3s ease;
      background: white;
      border: 1px solid #e5e7eb;
    }
    
    .pagination-link:hover {
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    }
    
    .pagination-link.active {
      background: var(--gradient-primary);
      color: white;
      border-color: transparent;
      box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3);
    }
    
    /* Certification Cards */
    .cert-card {
      background: white;
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s ease;
    }
    
    .cert-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    
    /* Consultation CTA */
    .cta-gradient {
      background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #d97706 100%);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
    }
    
    .cta-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    }
    
    /* Animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-in {
      animation: fadeInUp 0.6s ease forwards;
    }
    
    /* Footer */
    .modern-footer {
      background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    }
    
    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: #fef3c7;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--gradient-primary);
      border-radius: 5px;
    }
    
    /* Loading Overlay */
    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    .loading-overlay.active {
      display: flex;
    }
    
    /* Loading Animation */
    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #fef3c7;
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    /* Spiritual Background */
    .spiritual-bg {
      background: linear-gradient(180deg, #fef3c7 0%, #fff 100%);
    }
    
    /* Custom Mala Button */
    .custom-mala-btn {
      background: var(--gradient-primary);
      color: white;
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    
    .custom-mala-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(146, 64, 14, 0.3);
    }
    
    /* Rudraksha Card (for mala collection section) */
    .rudraksha-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);
    }
    
    .rudraksha-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(245, 158, 11, 0.3);
    }
    
    /* How to Wear Steps */
    .how-to-wear-step {
      background: white;
      border-radius: 16px;
      padding: 20px 24px;
      border-left: 4px solid var(--accent);
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    
    .how-to-wear-step:hover {
      transform: translateX(8px);
      border-left-color: var(--primary);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    
    /* Quick View Modal animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  