@charset "UTF-8";

 :root {
            --primary-color: #3498db;
            --secondary-color: #2ecc71;
            --accent-color: #f39c12;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1566378246597-6fb31c49e69a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: white;
        }

        .category-card {
            transition: transform 0.3s;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .testimonial-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: red;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card {
            transition: all 0.3s;
            height: 100%;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .product-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .product-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

        .page-section {
            display: none;
            padding: 80px 0;
        }

        .page-section.active {
            display: block;
        }

        .glide__slide {
            height: auto;
        }

        /* Sidebar category styles */
        .category-sidebar {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }

        .category-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-item:hover,
        .category-item.active {
            background-color: #e8f4ff;
        }

        .category-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--primary-color);
        }

        /* Sorting styles */
        .sorting-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .sort-btn {
            border: 1px solid #dee2e6;
            border-radius: 20px;
            padding: 8px 15px;
            background: white;
            transition: all 0.3s;
        }

        .sort-btn:hover,
        .sort-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Checkout form styles */
        .checkout-form {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .form-label {
            font-weight: 500;
        }

        /* Custom button styles */
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Badge styles */
        .badge-primary {
            background-color: var(--primary-color);
        }

        /* Navbar styles */
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .category-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 20px;
            }

            .sorting-options {
                overflow-x: auto;
                padding-bottom: 10px;
            }
        }