
    :root {
      --primary: #b91c1c;
      --primary-dark: #991b1b;
      --primary-light: #dc2626;
      --secondary: #1f2937;
      --accent: #f59e0b;
      --gradient-primary: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
      --gradient-hero: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
      --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-hover: 0 12px 40px rgba(185, 28, 28, 0.2);
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }
    
    /* Modern Header */
    .modern-header {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    
    .modern-header.scrolled {
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-link {
      position: relative;
      padding: 8px 0;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    /* Hero Section */
    .hero-gradient {
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
    }
    
    .hero-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 70%;
      height: 200%;
      background: radial-gradient(circle, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
      animation: float 15s ease-in-out infinite;
    }
    
    /* Slider Styles */
    .slider-container { position: relative; overflow: hidden; border-radius: 0; }
    .slider-wrapper { display: flex; transition: transform 0.5s ease-in-out; }
    .slider-slide { min-width: 100%; position: relative; }
    .slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
    .slider-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: 2px solid white; }
    .slider-dot.active { background: white; transform: scale(1.3); }
    .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.95); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
    .slider-arrow:hover { background: white; transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 25px rgba(0,0,0,0.2); }
    .slider-arrow.prev { left: 30px; }
    .slider-arrow.next { right: 30px; }
    
    /* Product Cards */
    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(185, 28, 28, 0.08);
    }
    
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }
    
    .product-card .image-container {
      position: relative;
      overflow: hidden;
    }
    
    .product-card .image-container::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .product-card:hover .image-container::after {
      opacity: 1;
    }
    
    .product-card:hover img {
      transform: scale(1.08);
    }
    
    .product-card img {
      transition: transform 0.5s ease;
    }
    
    /* Category Cards */
    .category-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: var(--shadow-soft);
      position: relative;
    }
    
    .category-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-primary);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }
    
    .category-card:hover::before {
      opacity: 0.05;
    }
    
    .category-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 50px rgba(185, 28, 28, 0.15);
    }
    
    /* Benefit Cards */
    .benefit-card {
      background: white;
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s ease;
      border: 1px solid rgba(185, 28, 28, 0.05);
    }
    
    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }
    
    .benefit-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      transition: all 0.3s ease;
    }
    
    .benefit-card:hover .benefit-icon {
      background: var(--gradient-primary);
      transform: scale(1.1) rotate(-5deg);
    }
    
    .benefit-card:hover .benefit-icon i,
    .benefit-card:hover .benefit-icon img {
      filter: brightness(0) invert(1);
    }
    
    /* Buttons */
    .btn-primary {
      background: var(--gradient-primary);
      color: white;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }
    
    .btn-primary:hover::before {
      left: 100%;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    }
    
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      padding: 12px 28px;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }
    
    /* Add to Cart Button */
    .add-cart-btn {
      background: var(--gradient-primary);
      color: white;
      padding: 12px 20px;
      border-radius: 10px;
      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: scale(1.02);
      box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
    }
    
    /* Wishlist Button */
    .wishlist-btn {
      width: 40px;
      height: 40px;
      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;
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 10;
    }
    
    .wishlist-btn:hover {
      background: #fef2f2;
      color: var(--primary);
      transform: scale(1.1);
    }
    
    /* Section Headings */
    .section-heading {
      position: relative;
      display: inline-block;
    }
    
    .section-heading::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(-20px, 20px) rotate(5deg); }
    }
    
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.4); }
      50% { box-shadow: 0 0 20px 10px rgba(185, 28, 28, 0); }
    }
    
    .animate-in { animation: fadeInUp 0.6s ease forwards; }
    
    /* Scrollbar */
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: #fef2f2; }
    ::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 5px; }
    
    .scrollbar-hide::-webkit-scrollbar { display: none; }
    .scrollbar-hide { scrollbar-width: none; -ms-overflow-style: none; }
    
    html { scroll-behavior: smooth; }
    
    /* Platform scroll animation */
    @keyframes platform-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .animate-platform-scroll {
      animation: platform-scroll 20s linear infinite;
    }
    
    /* Marquee */
    @keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
    .animate-marquee {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 30s linear infinite;
    }
    
    /* Trust badge */
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 8px 16px;
      border-radius: 50px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      font-size: 14px;
      font-weight: 500;
    }
    
    /* Loading states */
    .loading-skeleton {
      background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
  