        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Product Page Hero Section */
        .products-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1633443682042-17462ad4ad76?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat bottom center/cover;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
        }
        
        .products-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .products-hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        .products-hero .location {
            font-size: 1.2rem;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .products-hero .location i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        /* Products Overview Section */
        .products-overview {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .products-intro {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .products-intro h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .products-intro p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Product Categories Section */
        .product-categories {
            padding: 100px 0;
        }
        
        .product-category {
            margin-bottom: 100px;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .category-header h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-header h2 i {
            margin-right: 15px;
            color: var(--accent-color);
        }
        
        .category-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .category-header:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .product-card-detailed {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            margin-bottom: 30px;
            height: 93%;
        }
        
        .product-card-detailed:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .product-img-detailed {
            height: 280px;
            overflow: hidden;
        }
        
        .product-img-detailed img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card-detailed:hover .product-img-detailed img {
            transform: scale(1.05);
        }
        
        .product-content-detailed {
            padding: 30px;
        }
        
        .product-content-detailed h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .product-features-detailed {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .product-features-detailed li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .product-features-detailed li i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .product-cta {
            margin-top: 25px;
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Why Trust Section */
        .why-trust {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80') no-repeat center center/cover;
        }
        
        .why-trust h2 {
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary-color);
        }
        
        .trust-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .trust-point {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .trust-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .trust-point h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Delivery Locations */
        .delivery-locations {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .delivery-locations h2 {
            margin-bottom: 40px;
            color: white;
        }
        
        .locations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .location-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .location-badge:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* CTA Section */
        .products-cta {
            padding: 100px 0;
            background: var(--light-color);
            text-align: center;
        }
        
        .products-cta h2 {
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        
        .products-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .products-hero {
                padding: 120px 0 80px;
            }
            
            .products-hero h1 {
                font-size: 2.5rem;
            }
            
            .products-hero .tagline {
                font-size: 1.2rem;
            }
            
            .locations-grid {
                flex-direction: column;
                align-items: center;
            }
        }
        
   
        @media (max-width: 576px) {
            .product-categories{
                padding: 2% !important;
            }
            .delivery-locations{
                padding: 4% 0% !important;
            }
            .locations-grid{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .category-header i{
                display: none;
            }
            .products-hero .container{
                margin-top: -90px;
            }
            
        }

        .card-img{
            min-height: 65vh;
        }
        