    :root {
        --primary-color: #e91e63;
        --secondary-color: #ff4081;
        --dark-color: #c2185b;
        --light-color: #f8bbd9;
        --text-color: #333;
        --white-color: #fff;
        --border-color: rgba(233, 30, 99, 0.2);
        --border-color-light: rgba(233, 30, 99, 0.1);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        background-color: white;
        color: var(--text-color);
        padding-top: 70px;
        overflow-x: hidden;
        min-height: auto;
    }

    /* ===== BUTTONS ===== */
    .btn-primary-custom {
        background-color: var(--primary-color) !important;
        color: white !important;
        border: none !important;
        border-radius: 8px;
        font-weight: 600;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }

    .btn-primary-custom:hover {
        background-color: var(--dark-color) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    }

    .btn-secondary-custom {
        background-color: transparent !important;
        color: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
        border-radius: 8px;
        font-weight: 600;
        padding: 8px 18px;
        transition: all 0.3s ease;
    }

    .btn-secondary-custom:hover {
        background-color: var(--primary-color) !important;
        color: white !important;
    }

    .btn-hero {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: 20px;
    }

    .btn-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
    }

    /* ===== FORM CONTROLS ===== */
    .form-control, 
    .form-select {
        border: 1px solid var(--border-color) !important;
        border-radius: 8px !important;
        padding: 10px 15px !important;
        transition: all 0.3s ease;
    }

    .form-control:focus, 
    .form-select:focus {
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1) !important;
    }

    .form-label {
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 8px;
    }

    .form-check-input {
        border-color: var(--border-color);
        width: 1.25em;
        height: 1.25em;
        margin-top: 0.3em;
    }

    .form-check-input:checked {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }

        
        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
            width: 100%;
            height: auto;
        }
        
        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .navbar-toggler {
            border: 2px solid white;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--light-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--light-color);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: auto;
            max-height: 100vh;
            background: linear-gradient(to bottom, var(--primary-color), var(--dark-color));
            z-index: 9999;
            transition: right 0.5s ease;
            padding-top: 70px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }
        
        .sidebar.active {
            right: 0;
        }
        
        .sidebar-nav {
            list-style: none;
            padding: 0;
        }
        
        .sidebar-nav li {
            padding: 15px 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .sidebar-nav li a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .sidebar-nav li a i {
            margin-right: 15px;
            font-size: 1.4rem;
        }
        
        .sidebar-nav li a:hover {
            color: var(--light-color);
            padding-left: 10px;
        }
        
        .sidebar-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .sidebar-close:hover {
            transform: rotate(90deg);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(233, 30, 99, 0.85), rgba(194, 24, 91, 0.9)), url('https://images.unsplash.com/photo-1511988617509-a57c8a288659?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-family: 'Dancing Script', cursive;
            font-size: 4rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .btn-hero {
            background-color: var(--light-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            animation: fadeIn 1s ease 0.6s both;
            border: none;
        }
        
        .btn-hero:hover {
            background-color: var(--light-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Products Section */
        .products-section,
        .auth-section,
        .cart-section,
        .checkout-section,
        .tracking-section,
        .featured-section {
            background-color: white;
            padding: 60px 0;
            overflow: visible;\n        }
        
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Dancing Script', cursive;
            color: var(--primary-color);
            font-size: 3rem;
            display: inline-block;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary-color), transparent);
            bottom: -10px;
            left: 0;
        }
        
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: auto;
            border: 1px solid rgba(233, 30, 99, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
        }
        
        .product-image-wrapper {
            position: relative;
            overflow: hidden;
        }
        
        .mobile-view-indicator {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(233, 30, 99, 0.95), rgba(233, 30, 99, 0.7));
            color: white;
            padding: 12px;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .mobile-view-indicator i {
            margin-right: 8px;
            animation: eyePulse 1.5s infinite;
        }
        
        @keyframes eyePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        /* Show mobile indicator only on mobile devices */
        @media (max-width: 767px) {
            .mobile-view-indicator {
                display: block;
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: badgePulse 2s infinite;
        }
        
        @keyframes badgePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-title {
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .product-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .btn-add-to-cart {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-add-to-cart:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
        }
        
        /* Hide add-to-cart button on mobile devices */
        .btn-add-to-cart-desktop {
            display: block;
        }
        
        @media (max-width: 767px) {
            .btn-add-to-cart-desktop {
                display: none;
            }
            
            .product-title {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }
            
            .product-price {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            
            .product-info {
                padding: 12px;
            }
        }

        /* Desktop: Reduce product card size for better spacing */
        @media (min-width: 1200px) {
            .col-lg-3 {
                flex: 0 0 calc(25% - 12px);
                max-width: calc(25% - 12px);
            }
            
            .product-img {
                height: 200px;
            }
            
            .product-info {
                padding: 14px;
            }
            
            .product-title {
                font-size: 0.95rem;
                margin-bottom: 8px;
            }
            
            .product-price {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            
            .btn-add-to-cart {
                padding: 6px 14px;
                font-size: 0.9rem;
            }
        }

        /* Tablet: 2-column layout */
        @media (min-width: 768px) and (max-width: 1199px) {
            .col-lg-3 {
                flex: 0 0 calc(50% - 12px);
                max-width: calc(50% - 12px);
            }
        }

        /* Mobile: Optimize for small screens */
        @media (max-width: 767px) {
            .col-lg-3,
            .col-md-6 {
                flex: 0 0 calc(50% - 10px);
                max-width: calc(50% - 10px);
            }
        }
        
        /* Footer Styles */
        .footer {
            background: linear-gradient(to right, var(--dark-color), var(--primary-color));
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--light-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Mobile Navigation Icons */
        .mobile-nav-icons {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
            z-index: 100;
            padding: 10px 0;
        }
        
        .mobile-nav-icons .nav-item {
            text-align: center;
            flex: 1;
        }
        
        .mobile-nav-icons .nav-link {
            color: var(--text-color) !important;
            font-size: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 5px;
        }
        
        .mobile-nav-icons .nav-link i {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .mobile-nav-icons .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        /* Floating Hearts Animation */
        .floating-hearts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .heart {
            position: absolute;
            color: rgba(233, 30, 99, 0.3);
            font-size: 20px;
            animation: float 8s linear infinite;
            opacity: 0;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Cart Notification */
        .cart-notification {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            display: none;
            align-items: center;
            animation: slideInRight 0.5s ease;
        }
        
        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .cart-notification i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Tracking Sections */
        .tracking-section, .receipt-section {
            padding: 60px 0;
            background-color: #fafafa;
        }
        
        .tracking-card, .receipt-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(233, 30, 99, 0.1);
        }
        
        .tracking-card input, .receipt-card input {
            border: 1px solid rgba(233, 30, 99, 0.2);
            border-radius: 8px;
        }
        
        .tracking-card input:focus, .receipt-card input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        }

        /* Modal Styles */
        .modal {
            z-index: 1050 !important;
        }

        .modal-backdrop {
            z-index: 1040 !important;
            background-color: rgba(0, 0, 0, 0.5);
            display: none !important;
        }

        .modal-backdrop.show {
            display: block !important;
        }

        .modal.show {
            display: flex !important;
            align-items: center;
            z-index: 1051 !important;
            pointer-events: auto !important;
        }

        .modal:not(.show) {
            pointer-events: none !important;
            display: none !important;
        }

        .modal-content {
            border: 1px solid var(--border-color-light);
            border-radius: 15px;
            overflow: visible;
            z-index: 1051 !important;
            pointer-events: auto !important;
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white !important;
            border-bottom: 2px solid var(--primary-color);
            padding: 20px;
        }
        
        .modal-title {
            font-weight: 700;
            font-size: 1.3rem;
        }

        .modal-body {
            padding: 30px;
            max-height: 80vh;
            overflow-y: auto;
            pointer-events: auto !important;
        }

        .modal-footer {
            padding: 20px;
            background-color: #f9f9f9;
            border-top: 1px solid var(--border-color-light);
        }
        
        /* Product Modal Specific */
        .modal-body .carousel {
            border-radius: 10px;
            overflow: visible;
            background-color: #f5f5f5;
        }

        /* Ensure buttons in modal work */
        .modal-content button {
            pointer-events: auto !important;
        }

        .modal-content input,
        .modal-content textarea {
            pointer-events: auto !important;
        }
        
        .modal-body .carousel-item {
            padding: 0;
            height: auto;
        }
        
        .modal-body .carousel-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .modal-body h3 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 10px;
        }
        
        .modal-body .badge {
            font-size: 0.95rem;
            padding: 8px 12px;
        }
        
        .modal-product-price {
            margin: 15px 0;
            font-size: 1.1rem;
        }
        
        .modal-product-price .original-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 10px;
            font-size: 0.95rem;
        }
        
        .modal-product-price .current-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .modal-body form input {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px 15px;
            transition: all 0.3s ease;
        }
        
        .modal-body form input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        }
        
        .modal-body button {
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .modal-body button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
        }
        
        .modal-body .d-flex.gap-2 {
            gap: 12px;
            margin-top: 20px;
        }

        /* Allow scrolling even when modal is open */
        body.modal-open {
            overflow: auto;
        }
        
        /* Receipt Display */
        .receipt-display {
            background: white;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid var(--primary-color);
            margin-top: 20px;
            animation: slideInUp 0.5s ease;
        }
        
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .receipt-header {
            text-align: center;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .receipt-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .receipt-total {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        /* Auth Section */
        .auth-section {
            padding: 60px 0;
            background-color: #fafafa;
        }
        
        .auth-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color-light);
        }
        
        .auth-card h4 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
        }
        
        .auth-card .form-control {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 5px;
        }
        
        .auth-card .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        }
        
        .auth-card .form-label {
            font-weight: 600;
            color: var(--text-color);
            font-size: 0.95rem;
        }
        
        .auth-card .mb-3 {
            margin-bottom: 20px !important;
        }
        
        .auth-card .form-text {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
        }

        /* Toggle Auth Link */
        .toggle-auth-form {
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .toggle-auth-form:hover {
            text-decoration: underline;
            color: var(--dark-color);
        }
        
        /* Cart Section */
        .cart-section {
            padding: 60px 0;
            background-color: #fff9fb;
        }
        
        .cart-items-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
            gap: 20px;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item-image {
            width: 100px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-name {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .cart-item-price {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cart-item-quantity input {
            width: 60px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 6px;
            text-align: center;
            font-weight: 600;
        }
        
        .cart-summary {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color-light);
            position: sticky;
            top: 100px;
        }
        
        .cart-summary h5 {
            color: var(--dark-color);
            font-weight: 700;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .cart-summary h6 {
            color: var(--dark-color);
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 12px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            color: #555;
            font-size: 0.95rem;
        }
        
        .summary-item:last-of-type {
            padding-top: 15px;
            border-top: 2px solid var(--primary-color);
        }
        
        #couponInput {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px !important;
        }
        
        #couponMessage {
            font-size: 0.85rem;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .remove-btn {
            background: transparent;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            padding: 6px 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .remove-btn:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* Wishlist Section */
        .wishlist-section {
            padding: 60px 0;
            background-color: #fafafa;
        }
        
        .wishlist-card {
            position: relative;
            text-align: center;
        }
        
        .wishlist-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-btn:hover {
            background: var(--dark-color);
            transform: scale(1.1);
        }
        
        /* Compare Section */
        .compare-section {
            padding: 60px 0;
            background-color: #fff9fb;
        }
        
        .compare-table {
            background: white;
            border-radius: 10px;
            overflow: auto;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(233, 30, 99, 0.1);
        }
        
        .compare-table thead {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
        }
        
        .compare-table th {
            padding: 20px;
            font-weight: 600;
            text-align: center;
        }
        
        .compare-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .compare-table tbody tr:first-child td {
            font-weight: 600;
            background-color: rgba(233, 30, 99, 0.05);
        }
        
        .compare-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .compare-btn:hover {
            background-color: var(--dark-color);
            transform: translateY(-2px);
        }
        
        /* Checkout Section */
        .checkout-section {
            padding: 60px 0;
            background-color: #fafafa;
        }
        
        .checkout-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color-light);
        }
        
        .checkout-card h5 {
            color: var(--dark-color);
            font-weight: 700;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .checkout-card .form-control, 
        .checkout-card .form-select {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 11px 15px;
            margin-bottom: 8px;
        }
        
        .checkout-card .form-control:focus,
        .checkout-card .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        }
        
        .checkout-card .form-label {
            font-weight: 600;
            color: var(--text-color);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        
        .checkout-card .form-check {
            margin-bottom: 12px;
            padding-left: 30px;
        }
        
        .checkout-card .form-check-input {
            margin-top: 5px;
        }

        .checkout-card .form-check-label {
            cursor: pointer;
            margin-left: 8px;
            font-weight: 500;
        }
        
        .checkout-summary {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color-light);
            position: sticky;
            top: 100px;
        }
        
        .checkout-summary h5 {
            color: var(--dark-color);
            font-weight: 700;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .checkout-summary .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            color: #555;
            font-size: 0.95rem;
        }
        
        .compare-item,
        .wishlist-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .compare-item:last-child,
        .wishlist-item:last-child {
            border-bottom: none;
        }
        
        /* Desktop Navigation Center */
        @media (min-width: 992px) {
            .navbar-nav {
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .footer {
                display: none;
            }
            
            .mobile-nav-icons {
                display: flex;
            }
            
            .hero {
                padding: 80px 0;
            }

/* ===== CATEGORIES SECTION ===== */
.categories-scroll-container {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    margin: 0 auto;
}

.category-scroll-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.category-scroll-btn:hover {
    background: var(--dark-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.category-scroll-left {
    order: 1;
}

.category-scroll-right {
    order: 3;
}

.categories-scroll {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    order: 2;
    width: 100%;
    flex-wrap: nowrap !important;
}

.categories-scroll::-webkit-scrollbar {
    height: 8px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

.category-item {
    flex: 0 0 120px !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: white;
    border: 2px solid rgba(233, 30, 99, 0.1);
    white-space: nowrap;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.category-item p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .category-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .category-item {
        flex: 0 0 110px !important;
        padding: 12px;
    }
    
    .category-icon {
        font-size: 2.2rem;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .categories-scroll-container {
        gap: 10px;
    }
    
    .category-scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .categories-scroll {
        gap: 15px;
        padding: 15px 5px;
    }
    
    .category-item {
        flex: 0 0 100px !important;
        padding: 12px;
    }
    
    .category-icon {
        font-size: 2rem;
        height: 50px;
    }
    
    .category-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .category-scroll-btn {
        display: none !important;
    }
    
    .categories-scroll-container {
        gap: 0;
    }
    
    .category-item {
        flex: 0 0 90px !important;
        padding: 10px;
    }
    
    .category-icon {
        font-size: 1.8rem;
        height: 45px;
    }
    
    .category-item p {
        font-size: 0.8rem;
    }
}

            
            .cart-notification {
                bottom: 70px;
            }
        }
        
    /* Mobile Optimizations */
    @media (max-width: 767px) {
        body {
            padding-top: 60px;
        }
        
        .logo {
            font-size: 1.8rem;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .product-card {
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .product-card:active {
            transform: scale(0.98);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
        }
        
        .product-image-wrapper {
            position: relative;
        }
        
        .mobile-view-indicator {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(233, 30, 99, 0.95), rgba(233, 30, 99, 0.7));
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .sidebar {
            width: 250px;
        }
    }
    
    @media (max-width: 576px) {
        .logo {
            font-size: 1.8rem;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .product-card {
            margin-bottom: 20px;
        }
        
        .sidebar {
            width: 250px;
        }
    }

    /* ===== FLOATING WHATSAPP WIDGET ===== */
    .whatsapp-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-family: 'Poppins', sans-serif;
        z-index: 99999 !important;
        pointer-events: auto;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #07c951 0%, #05a842 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 30px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(7, 201, 81, 0.4);
        transition: all 0.3s ease;
        border: none;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        pointer-events: auto !important;
        position: relative;
        overflow: visible;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(7, 201, 81, 0.6);
    }

    .whatsapp-button.active {
        transform: scale(0.95);
    }

    .whatsapp-chat-box {
        position: absolute;
        bottom: 80px;
        right: 0;
        width: 380px;
        height: 500px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 40px rgba(7, 201, 81, 0.1);
        display: none;
        flex-direction: column;
        opacity: 0;
        transform: scale(0.95) translateY(10px);
        transition: all 0.32s cubic-bezier(.2,.9,.3,1);
    }

    /* Promo codes list inside widget */
    .whatsapp-promo {
        padding: 10px 12px;
        border-bottom: 1px solid #f0f0f0;
        background: #fff;
        max-height: 120px;
        overflow-y: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .whatsapp-promo .promo-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        gap: 10px;
        opacity: 0;
        transform: translateY(6px);
        animation: promoIn 320ms ease forwards;
    }

    .promo-code {
        background: #f1f8f4;
        color: #056b3a;
        padding: 6px 10px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 13px;
        margin-right: 8px;
    }

    .promo-desc {
        font-size: 12px;
        color: #666;
        flex: 1;
    }

    .promo-copy-btn {
        background: transparent;
        border: 1px solid #07c951;
        color: #07c951;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 12px;
        cursor: pointer;
    }

    .whatsapp-chat-box.active {
        display: flex;
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .whatsapp-header {
        background: linear-gradient(135deg, #07c951 0%, #05a842 100%);
        color: white;
        padding: 15px;
        border-radius: 12px 12px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .whatsapp-header-content h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .whatsapp-header-content p {
        margin: 3px 0 0 0;
        font-size: 12px;
        opacity: 0.9;
    }

    .whatsapp-close {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }

    .whatsapp-close:hover {
        transform: rotate(90deg);
    }

    .whatsapp-messages {
        flex: 1;
        overflow-y: auto;
        padding: 15px;
        background: #f5f5f5;
    }

    .whatsapp-message {
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        transform: translateY(6px);
        animation: messageIn 280ms ease forwards;
    }

    .whatsapp-message p {
        background: white;
        padding: 10px 12px;
        border-radius: 8px;
        max-width: 85%;
        word-wrap: break-word;
        margin: 0;
        font-size: 14px;
        color: #333;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .whatsapp-message small {
        font-size: 12px;
        color: #999;
        margin-top: 3px;
        padding: 0 5px;
    }

    .bot-message {
        align-items: flex-start;
    }

    .bot-message p {
        background: #e8f5e9;
        border-left: 3px solid #07c951;
    }

    .user-message {
        align-items: flex-end;
    }

    .user-message p {
        background: #07c951;
        color: white;
    }

    .whatsapp-input-area {
        display: flex;
        gap: 8px;
        padding: 12px;
        border-top: 1px solid #eee;
        background: white;
    }

    .whatsapp-input {
        flex: 1;
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 10px 15px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        outline: none;
        transition: border-color 0.2s;
    }

    .whatsapp-input:focus {
        border-color: #07c951;
    }

    .whatsapp-send-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #07c951 0%, #05a842 100%);
        border: none;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        font-size: 14px;
    }

    .whatsapp-send-btn:hover {
        transform: scale(1.05);
    }

    .whatsapp-send-btn:active {
        transform: scale(0.95);
    }

    .whatsapp-footer {
        padding: 10px 12px;
        background: #f9f9f9;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        border-radius: 0 0 12px 12px;
    }

    .whatsapp-footer small {
        font-size: 12px;
        color: #666;
    }

    .whatsapp-link-btn {
        background: linear-gradient(135deg, #07c951 0%, #05a842 100%);
        color: white;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }

    .whatsapp-link-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(7, 201, 81, 0.3);
        color: white;
    }

    /* Button ripple ring */
    .whatsapp-button::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        top: 0;
        left: 0;
        box-shadow: 0 0 0 6px rgba(7,201,81,0.06);
        opacity: 0;
        transform: scale(0.9);
        animation: ripple 2.4s infinite ease-out;
        pointer-events: none;
    }

    @keyframes ripple {
        0% { opacity: 0.45; transform: scale(0.9); }
        60% { opacity: 0.14; transform: scale(1.6); }
        100% { opacity: 0; transform: scale(2.4); }
    }

    /* Chat box entrance */
    .whatsapp-chat-box.active {
        display: flex;
        opacity: 1;
        transform: scale(1) translateY(0);
        animation: slideIn 260ms cubic-bezier(.2,.9,.3,1) both;
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateY(10px) scale(0.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes messageIn {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes promoIn {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ===== RESPONSIVE WHATSAPP WIDGET ===== */
    @media (max-width: 600px) {
        .whatsapp-chat-box {
            width: 100vw;
            height: 70vh;
            bottom: 100px;
            right: 0;
            border-radius: 12px 12px 0 0;
            max-width: none;
        }

        .whatsapp-widget {
            bottom: 10px;
            right: 10px;
        }

        .whatsapp-button {
            width: 44px;
            height: 44px;
            font-size: 20px;
            bottom: 90px;
        }

        .whatsapp-promo {
            max-height: 90px;
        }
    }

    /* Larger button on large desktop screens */
    @media (min-width: 1200px) {
        .whatsapp-button {
            width: 72px;
            height: 72px;
            font-size: 36px;
        }
        .whatsapp-chat-box {
            width: 420px;
            height: 520px;
        }
    }
