    :root {
        --ash-gray: #cad2c5;
        --cambridge-blue: #058c42;
        --hookers-green: #04471c;
        --dark-slate-gray: #0d2818;
        --charcoal: #2f3e46;

        --primary-color: var(--hookers-green);
        --secondary-color: var(--cambridge-blue);
        --accent-color: var(--ash-gray);
        --text-dark: var(--charcoal);
    }

    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
    }

    /* Navbar */
    .navbar-custom {
        background: white;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color) !important;
    }

    .cart-icon {
        position: relative;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cart-icon:hover {
        color: var(--secondary-color);
        transform: scale(1.1);
    }

    .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: #dc3545;
        color: white;
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-slate-gray) 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.3;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Filter section */
    .filter-section {
        background: white;
        position: relative;
        z-index: 10;
        margin-top: -40px;
    }

    .filter-card {
        background: #f8f9fa;
    }

    .form-control,
    .form-select {
        border: 2px solid var(--accent-color);
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(82, 121, 111, 0.25);
    }

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    /* Section title */
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--secondary-color);
    }

    /* Product cards */
    .product-card {
        transition: all 0.3s ease;
        height: 100%;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

    .product-image-container {
        position: relative;
        height: 250px;
        overflow: hidden;
        background: var(--accent-color);
    }

    .swiper-slide .product-index-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .swiper-pagination-bullet {
        background: var(--primary-color);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-color);
        color: white;
        z-index: 10;
    }

    .product-title {
        color: var(--primary-color);
    }

    .product-price {
        color: var(--secondary-color);
    }

    .btn-primary-custom {
        background: var(--primary-color);
        border: none;
        font-weight: 600;
        color: white;
    }

    .btn-primary-custom:hover {
        background: var(--dark-slate-gray);
        box-shadow: 0 4px 12px rgba(82, 121, 111, 0.3);
    }

    /* Benefits */
    .benefit-card {
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-card:hover {
        background: #f8f9fa;
        transform: translateY(-5px);
    }

    .benefit-icon {
        color: var(--primary-color);
    }

    .benefit-title {
        color: var(--primary-color);
    }

    /* Testimonials */
    .testimonial-avatar {
        border: 4px solid var(--accent-color);
        object-fit: cover;
    }

    .testimonial-author {
        color: var(--primary-color);
    }

    /* Footer */
    .footer {
        background: var(--primary-color);
        color: white;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: white;
    }

    .social-icons a {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
    }

    /* Modal */
    .modal-product-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .quantity-input {
        border: 2px solid var(--accent-color);
        font-weight: 600;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .quantity-input:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(82, 121, 111, 0.25);
    }

    .quantity-unit {
        color: var(--primary-color);
    }

    /* Cart */
    .cart-item {
        border-bottom: 1px solid var(--accent-color);
    }

    .cart-item:last-child {
        border-bottom: none;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    .cart-item-name {
        color: var(--primary-color);
    }

    .cart-item-price {
        color: var(--secondary-color);
    }

    .cart-remove {
        color: #dc3545;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cart-remove:hover {
        color: #c82333;
        transform: scale(1.2);
    }

    .cart-total {
        border-top: 2px solid var(--primary-color);
    }

    .cart-total-price {
        color: var(--primary-color);
    }

    /* PerfectScrollbar */
    .ps__rail-y {
        background-color: transparent !important;
    }

    .ps__thumb-y {
        background-color: var(--hookers-green) !important;
        width: 6px !important;
    }

    .ps__rail-y:hover>.ps__thumb-y,
    .ps__rail-y:focus>.ps__thumb-y,
    .ps__rail-y.ps--clicking .ps__thumb-y {
        background-color: var(--dark-slate-gray) !important;
        width: 8px !important;
    }

    @media (max-width: 768px) {
        .modal-product-image {
            height: 300px;
        }
    }