        :root {
            --light-red: #FF4D4D;
            --soft-bg: #FFF5F5;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #fdfdfd;
            overflow-x: hidden;
        }

        /* Navbar Styling */
        .navbar {
            padding: 12px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            background: #fff !important;
        }

        .navbar-brand {
            font-weight: 800;
            color: var(--light-red) !important;
            font-size: 1.6rem;
        }

        /* Desktop Category Button - Always Visible on Large Screens */
        .btn-category {
            background-color: var(--light-red);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            padding: 8px 18px;
            border: none;
            display: flex;
            align-items: center;
        }

        /* Dropdown Styling */
        .category-dropdown .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 10px;
            min-width: 260px;
            margin-top: 15px;
        }

        .dropdown-item {
            padding: 12px 15px;
            border-radius: 8px;
            transition: 0.3s;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: var(--soft-bg);
            color: var(--light-red);
            transform: translateX(5px);
        }

        .dropdown-item i {
            margin-right: 12px;
            color: var(--light-red);
            font-size: 1.1rem;
        }

        /* Search Bar */
        .search-container {
            background: #f1f3f5;
            border-radius: 30px;
            padding: 5px 15px;
            display: flex;
            align-items: center;
        }

        .search-input {
            background: transparent;
            border: none;
            width: 100%;
            outline: none !important;
            padding: 5px 10px;
            font-size: 14px;
        }

        /* Mobile Search Wrapper */
        .mobile-search-wrapper {
            display: none;
            background: #fff;
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
        }

        /* Hero Slider */
        .carousel-item {
            height: 550px;
            background-size: cover;
            background-position: center;
            transition: transform 1s ease-in-out;
        }

        .overlay {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .mobile-search-wrapper {
                display: block;
            }

            .carousel-item {
                height: 400px;
            }

            .display-3 {
                font-size: 2.2rem !important;
            }

            .desktop-search {
                display: none !important;
            }
        }

        .btn-animate {
            transition: 0.4s;
            border-radius: 50px !important;
        }

        .btn-animate:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(255, 77, 77, 0.4);
        }




        /* --- Product Section Variables --- */
        :root {
            --price-color: #2d3436;
            --star-color: #f1c40f;
            --transition-speed: 0.4s;
        }

        /* Section Title Styling */
        .section-title {
            position: relative;
            padding-bottom: 12px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 4px;
            width: 60px;
            background: #FF4D4D;
            border-radius: 10px;
        }

        /* --- Product Card Core --- */
        .product-card {
            border-radius: 20px !important;
            overflow: hidden;
            background: #ffffff;
            transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #f1f1f1 !important;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
            border-color: transparent !important;
        }

        /* Image Wrapper & Zoom Effect */
        .img-wrapper {
            position: relative;
            background: #f8f9fa;
            height: 200px;
            /* Desktop Height */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 15px;
        }

        .img-wrapper img {
            max-height: 100%;
            width: auto;
            object-fit: contain;
            transition: transform 0.6s ease;
        }

        .product-card:hover .img-wrapper img {
            transform: scale(1.15);
        }

        /* --- Hover Actions (Wishlist & View) --- */
        .hover-actions {
            position: absolute;
            right: -50px;
            /* Hide initially */
            top: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: 0.3s ease-in-out;
            z-index: 10;
        }

        .product-card:hover .hover-actions {
            right: 15px;
            /* Slide in on hover */
        }

        .action-btn {
            width: 38px;
            height: 38px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .action-btn:hover {
            background: #FF4D4D;
            color: white;
        }

        /* --- Price & Text Styling --- */
        .price-tag {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--price-color);
        }

        .text-truncate {
            font-size: 0.95rem;
            color: #1a1a1a;
        }

        /* --- Premium Add Button --- */
        .btn-cart-pro {
            background: #1e272e;
            color: white;
            border: none;
            padding: 10px;
            width: 100%;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: 0.3s;
        }

        .btn-cart-pro:hover {
            background: #FF4D4D;
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
        }

        /* --- 📱 Mobile Responsiveness (The Most Important Part) --- */
        @media (max-width: 768px) {
            .img-wrapper {
                height: 150px;
                /* Smaller height for mobile */
                padding: 10px;
            }

            .hover-actions {
                right: 10px;
                /* Mobile par icons dikhte rahein thode */
                opacity: 0.9;
            }

            /* Product Name fix for small screens */
            .product-card h6 {
                font-size: 0.85rem;
            }

            .price-tag {
                font-size: 1rem;
            }

            .btn-cart-pro {
                padding: 8px;
                font-size: 0.8rem;
                border-radius: 10px;
            }

            /* Badge size fix */
            .badge {
                font-size: 0.7rem;
                padding: 5px 10px !important;
            }
        }

        /* Fix for horizontal spacing in 'row g-4' */
        .row.g-4 {
            margin-bottom: 20px;
        }

        /* fast devilvery section  */
        /* --- Global Variables (Already defined, but keeping for safety) --- */
        :root {
            --light-red: #FF4D4D;
            --soft-bg: #FFF5F5;
            --dark-grey: #1e272e;
        }

        /* --- 1. Trust & Service Cards --- */
        .trust-card {
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 20px 15px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .trust-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            border-color: var(--light-red);
        }

        .trust-icon-circle {
            width: 55px;
            height: 55px;
            background: var(--soft-bg);
            color: var(--light-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.4rem;
        }

        /* --- 2. Shop By Budget Section --- */
        .section-title {
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 35px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 4px;
            width: 50px;
            background: var(--light-red);
            border-radius: 10px;
        }

        .budget-box {
            position: relative;
            height: 250px;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 25px;
            transition: 0.5s ease-in-out;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .budget-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            transition: 0.5s;
        }

        .budget-box:hover {
            transform: scale(1.02);
        }

        .budget-box:hover::before {
            background: linear-gradient(to top, rgba(255, 77, 77, 0.8), transparent);
        }

        .budget-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .budget-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        /* --- 3. Newsletter Section (Fixed Mobile View) --- */
        .newsletter-wrapper {
            padding: 60px 15px;
        }

        .newsletter-section {
            background: var(--dark-grey);
            border-radius: 35px;
            padding: 50px 20px;
            color: white;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .newsletter-section::before {
            content: '🍳';
            position: absolute;
            font-size: 120px;
            right: -20px;
            bottom: -20px;
            opacity: 0.07;
            transform: rotate(-15deg);
            z-index: -1;
        }

        /* Custom Input for Mobile */
        .custom-input-group {
            background: #fff;
            border-radius: 50px;
            padding: 6px;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .custom-input-group input {
            border: none !important;
            outline: none !important;
            padding: 10px 20px;
            flex: 1;
            font-size: 15px;
            min-width: 0;
            /* Input shrinking fix for small screens */
            color: #333;
        }

        .btn-join {
            background: var(--light-red);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            white-space: nowrap;
            transition: 0.3s;
            font-size: 14px;
        }

        .btn-join:hover {
            background: #e04444;
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
        }

        /* our partner logo of product */
        .custom-brand-wrapper {
            display: flex;
            align-items: center;
            height: 90px;
            position: relative;
        }

        .partners-pill {
            background: #1a1a1a;
            color: white;
            padding: 10px 25px;
            border-radius: 0 50px 50px 0;
            z-index: 100;
            flex-shrink: 0;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sliding-container {
            flex-grow: 1;
            overflow: hidden;
            display: flex;
        }

        .infinite-track {
            display: flex;
            align-items: center;
            animation: scroll-brands 20s linear infinite;
            will-change: transform;
        }

        .brand-logo-card {
            flex: 0 0 200px;
            /* Bade logo ke liye width */
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-logo-card img {
            max-height: 100px;
            /* Logo size bada kiya */
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.8;
            /* Blur remove karne ke liye filters */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            transition: 0.3s;
        }

        .brand-logo-card img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        @keyframes scroll-brands {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .custom-brand-wrapper {
                height: 70px;
            }

            .partners-pill {
                padding: 8px 15px;
                min-width: 100px;
            }

            .partners-pill h6 {
                font-size: 8px !important;
            }

            .partners-pill h5 {
                font-size: 10px !important;
            }

            .brand-logo-card {
                flex: 0 0 130px;
                padding: 0 20px;
            }

            .brand-logo-card img {
                max-height: 40px;
            }
        }

        /* Why CHOSE US */
        .soap-hover-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .soap-hover-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(255, 77, 77, 0.1) !important;
            background: #1a1a1a !important;
        }
        .soap-hover-card:hover h5, 
        .soap-hover-card:hover p {
            color: #ffffff !important;
        }
        .soap-hover-card:hover .icon-circle {
            background: #ff4d4d !important;
            border-color: #ffffff !important;
        }
/* ------MOst LOve Product----- css styling */
        .soap-card {
            transition: 0.3s ease;
            border-radius: 12px;
        }
        .soap-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }
        .product-img-box {
            position: relative;
        }
        .transition-img {
            transition: 0.5s ease;
        }
        .soap-card:hover .transition-img {
            transform: scale(1.1);
        }
        .overlay-btn {
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            transition: 0.3s ease;
            opacity: 0;
        }
        .soap-card:hover .overlay-btn {
            bottom: 0;
            opacity: 1;
        }
        @media (max-width: 768px) {
            .overlay-btn {
                position: static;
                opacity: 1;
                bottom: 0;
            }
            .product-img-box { height: 180px !important; }
        }

        /* footer section */
        .footer-links a:hover {
            color: #ff4d4d !important;
            padding-left: 5px;
            transition: 0.3s ease;
        }
        .social-icon {
            font-size: 1.2rem;
            transition: 0.3s;
            display: inline-block;
        }
        .social-icon:hover {
            color: #ff4d4d !important;
            transform: translateY(-3px);
        }
        .custom-newsletter .form-control:focus {
            border-color: #ff4d4d !important;
        }
        @media (max-width: 768px) {
            .footer-section { text-align: center; }
        }