  
        /* Custom CSS */
        :root {
            --primary-color: #ff6b6b;
            --secondary-color: #4ecdc4;
            --dark-color: #292f36;
            --light-color: #f7fff7;
        }
        
        body {
            font-family: 'Comic Neue', cursive, sans-serif;
            background-color: #f9f9f9;
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--dark-color);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: var(--light-color);
            text-decoration: none;
        }
        
        /* Navigation */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .nav-pattern {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="25" cy="25" r="5" fill="%23ff6b6b"/><circle cx="75" cy="25" r="5" fill="%234ecdc4"/><circle cx="25" cy="75" r="5" fill="%234ecdc4"/><circle cx="75" cy="75" r="5" fill="%23ff6b6b"/></svg>');
            background-size: 30px 30px;
            padding: 15px 0;
        }
        
        .nav-link {
            color: var(--dark-color);
            font-weight: 600;
            margin: 0 10px;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/banner1.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .hero-caption {
            background-color: rgba(255, 107, 107, 0.4);
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Products Section */
        .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
        }
        
        .product-price {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #ff5252;
            border-color: #ff5252;
        }
        
        /* Content Sections */
        .content-section {
            padding: 60px 0;
        }
        
        .content-section h2 {
            color: var(--dark-color);
            margin-bottom: 30px;
            position: relative;
        }
        
        .content-section h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 0;
        }
        
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        .main-footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 0;
        }
        
        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        
        .sub-footer {
            background-color: #1a1f24;
            padding: 15px 0;
            font-size: 0.9rem;
        }
     /* Custom Product Page Styles */
    .product-main-image {
        max-height: 500px;
        width: auto;
        object-fit: contain;
    }
    
    .product-image-container {
        background-color: #f8f9fa;
        padding: 30px;
        border-radius: 10px;
    }
    
    .quantity-selector input {
        -moz-appearance: textfield;
    }
    
    .quantity-selector input::-webkit-outer-spin-button,
    .quantity-selector input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .product-title {
        font-weight: 700;
        color: var(--dark-color);
    }
