
    :root {
      --primary: #b91c1c;
      --primary-dark: #991b1b;
      --primary-light: #fef2f2;
      --secondary: #dc2626;
      --accent: #f43f5e;
      --gradient-primary: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
      --gradient-accent: linear-gradient(135deg, #f43f5e 0%, #ec4899 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, #fef2f2 0%, #fff1f2 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(185, 28, 28, 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, #fef2f2 0%, #fff1f2 30%, #fce7f3 60%, #fef2f2 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(244, 63, 94, 0.1) 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 Product 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(244, 63, 94, 0.1);
    }
    
    .product-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(244, 63, 94, 0.3);
    }
    
    .product-card .image-wrapper {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #fef2f2 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);
    }
    
    /* 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(185, 28, 28, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(185, 28, 28, 0.4);
    }
    
    /* Category Cards */
    .category-card {
      background: white;
      border-radius: 20px;
      padding: 24px 16px;
      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);
    }
    
    .category-card:hover {
      border-color: var(--accent);
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(244, 63, 94, 0.15);
    }
    
    .category-card.active {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.2);
    }
    
    .category-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 12px;
      border: 3px solid #fef2f2;
      transition: all 0.3s ease;
    }
    
    .category-card:hover img {
      border-color: var(--accent);
      transform: scale(1.05);
    }
    
    /* Filter Tabs */
    .filter-tab {
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    /* 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: 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(185, 28, 28, 0.35);
    }
    
    /* Pagination */
    .pagination-link {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .pagination-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(185, 28, 28, 0.25);
    }
    
    .pagination-link.active {
      transform: scale(1.1);
      box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
    }
    
    /* Animation */
    @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 */
    .loading-overlay {
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .loading-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    
    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #fef2f2;
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: #fef2f2;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--gradient-primary);
      border-radius: 5px;
    }
    
    /* Benefits Card */
    .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(244, 63, 94, 0.1);
    }
    
    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    
    .benefit-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #fef2f2 0%, #fce7f3 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);
    }
    
    html { scroll-behavior: smooth; }
