        :root {
            --primary-color: #4a6fdc;
            --secondary-color: #ff6b6b;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --accent-color: #20c997;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        .navbar {
            background: white !important;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        
        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-item {
            margin: 0 8px;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Logo styles */
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        /* Footer styles */
        .footer {
            background-color: var(--dark-color);
            padding: 50px 0 0;
        }
        
        .footer h4 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-logo {
            max-width: 200px;
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }
        
        /* Cart badge */
        .cart-badge {
            font-size: 0.7em;
            top: -5px !important;
            right: -5px !important;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                margin-top: 15px;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .nav-item {
                margin: 5px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .footer .col-lg-3 {
                margin-bottom: 30px;
            }
        }
        /* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 30px;
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  width: max-content;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-link:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* For small screens */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-link {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
@media (max-width: 576px) {
    .col-lg-5, .col-md-6, .col-12 {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    .category .img-fluid, .category .w-100, .category .h-100 {
        max-width: 100% !important;
        height: auto !important;
    }
}
   .category-section {
        background-color: #f9f9f9;
        padding: 5rem 0;
        overflow: hidden;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 3rem;
        position: relative;
    }
    
    .section-tag {
        display: inline-block;
        background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #675f5f;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .title-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
        margin: 0 auto;
        border-radius: 2px;
    }
    
    /* Categories Grid Layout */
    .categories-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .main-category {
        grid-row: span 2;
    }
    
    .subcategories-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .subcategories-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    /* Category Card Styles */
    .category-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .category-link {
        display: block;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }
    
    .category-image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .category-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .category-card:hover .category-image {
        transform: scale(1.05);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    }
    
    .category-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        color: white;
        z-index: 2;
    }
    
    .category-name {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    .category-icon {
        display: inline-block;
        margin-left: 0.5rem;
    }
    
    .product-count {
        display: inline-block;
        background-color: rgba(255,255,255,0.2);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.9rem;
        backdrop-filter: blur(5px);
    }
    
    /* Full Width Category */
    .full-width-category {
        height: 100%;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .categories-grid {
            grid-template-columns: 1fr;
        }
        
        .subcategories-row {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .category-section {
            padding: 3rem 0;
        }
        
        .category-name {
            font-size: 1.2rem;
        }
    }