
        :root {
            --brand-red: #b81d24;
            --text-dark: #111111;
            --top-bar-bg: #000000;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: var(--text-dark);
        }

        /* 1. Top Mini Bar */
        .top-bar {
            background-color: var(--top-bar-bg);
            font-size: 12px;
            font-weight: 500;
        }
        .top-bar a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .top-bar a:hover {
            opacity: 0.8;
        }
        .flag-icon {
            width: 18px;
            height: 12px;
            object-fit: cover;
            border-radius: 2px;
        }

        /* 2. Main Navbar */
        .navbar-brand img {
            height: 38px;
        }
        .nav-link {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--text-dark) !important;
            letter-spacing: 0.5px;
            padding: 0.5rem 1rem !important;
        }
        .nav-link:hover {
            color: var(--brand-red) !important;
        }

        /* Sticky Header Core Styling */
#mainNavbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff !important;
}

/* ডেস্কটপের জন্য স্ক্রোল করলে যে স্টাইলটি অ্যাপ্লাই হবে */
@media (min-width: 992px) {
    #mainNavbar.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        /* হালকা ট্রান্সপারেন্ট গ্লাসমরফিজম লুক */
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* হেডার ফিক্সড হলে নিচের কন্টেন্ট যেন হঠাৎ লাফ দিয়ে উপরে উঠে না যায় */
    body.sticky-padding {
        padding-top: 80px; /* আপনার হেডারের আনুমানিক হাইট */
    }
}
        
        /* Search Input Customization */
        .search-wrapper {
            position: relative;
            width: 220px;
        }
        .search-input {
            border: 1.5px solid #111;
            border-radius: 30px;
            padding: 6px 35px 6px 15px;
            font-size: 14px;
            font-weight: 500;
            outline: none;
        }
        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #111;
            font-size: 14px;
            cursor: pointer;
        }

        /* 3. Hero Section */
        .hero-banner {
            background: url('assets/images/Home_Catit_MY-CAT-magazine_Banner.jpg') no-repeat center center;
            background-size: cover;
            min-height: 520px;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        /* Glassmorphism Card Effect */
        .magazine-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 45px 40px;
            max-width: 460px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
        }
        
        .magazine-card h1 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 42px;
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        .btn-read-now {
            background-color: var(--brand-red);
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 32px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-read-now:hover {
            background-color: #941319;
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(184, 29, 36, 0.3);
        }

        /* 4. Modern Category Slider Section */
        .category-carousel-section {
            position: relative;
            padding: 40px 0;
            background-color: #fafafa;
            overflow: hidden;
        }
        
        /* Fixed size item wrapper */
        .cat-scroll-item {
            width: 215px !important;
            height: 110px !important;
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            display: block;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .cat-scroll-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
        }

        .cat-scroll-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gradient & Text Overlay */
        .cat-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 15%, rgba(0, 0, 0, 0.15) 100%);
            display: flex;
            align-items: flex-end;
            padding: 12px 15px;
        }

        .cat-item-overlay span {
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: 0.2px;
        }

        /* Custom Carousel Nav Arrows */
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #ffffff;
            border: 1px solid #e2e2e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
        }
        .carousel-nav-btn:hover {
            background: var(--text-dark);
            color: #ffffff;
            border-color: var(--text-dark);
        }
        .carousel-nav-btn.prev-btn { left: 10px; }
        .carousel-nav-btn.next-btn { right: 10px; }

        /* Smooth Slide Track */
        .carousel-inner-custom {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Hide for Firefox */
        }
        .carousel-inner-custom::-webkit-scrollbar {
            display: none; /* Hide for Chrome/Safari */
        }

        /* Responsive Fixes */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: #ffffff;
                padding: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
                border-radius: 8px;
                margin-top: 10px;
            }
            .search-wrapper {
                width: 100%;
                margin-top: 10px;
            }
            .magazine-card {
                margin: 20px auto;
                text-align: center;
                padding: 30px 20px;
            }
            .magazine-card h1 {
                font-size: 32px;
            }
            .hero-banner {
                min-height: 400px;
            }
            /* Native Touch Swipe on Mobile */
            .carousel-nav-btn {
                display: none; 
            }
            .carousel-inner-custom {
                padding: 0 15px;
            }
        }

        /* Section Styles */
    .feeders-section {
        background-color: #ffffff;
    }
    .section-subtitle {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        color: #111111;
        margin-bottom: 8px;
    }
    .section-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 44px;
        color: #1d252d;
    }

    /* Left Main Feature Card (Full Image Layout) */
    .main-feature-card {
        background: #f4f3f1;
        border-radius: 28px;
        overflow: hidden;
        position: relative;
        height: 570px; /* ডানপাশের ২টি রোর সমান হাইট */
        box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .main-feature-card .card-img-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .main-feature-card .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* ছবি যেন ফেটে না যায় */
        object-position: center;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .main-feature-card:hover .card-img-wrapper img {
        transform: scale(1.03);
    }
    
    /* Content over image with subtle gradient for text readability */
    .feature-card-content {
        position: relative;
        z-index: 2;
        padding: 40px;
        width: 100%;
        background: linear-gradient(to top, rgba(244, 243, 241, 0.95) 40%, rgba(244, 243, 241, 0.6) 70%, rgba(244, 243, 241, 0) 100%);
    }
    .feature-card-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #111111;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    .feature-card-content p {
        font-size: 14px;
        color: #555555;
        margin-bottom: 20px;
    }
    .btn-discover {
        display: inline-block;
        background-color: #c49a45;
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 38px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .btn-discover:hover {
        background-color: #ae8435;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(196, 154, 69, 0.3);
    }

    /* Right 2x2 Grid Cards */
    .grid-product-card {
        display: block;
        background: #f4f3f1;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        height: 271px; /* মেইন কার্ডের সাথে ব্যালেন্সড হাইট */
        box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .grid-product-card:hover {
        transform: translateY(-5px);
    }
    .grid-card-img {
        width: 100%;
        height: 100%;
    }
    .grid-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .grid-product-card:hover .grid-card-img img {
        transform: scale(1.04);
    }

    /* Smart App Wifi Badge */
    .card-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 13px;
        color: #4b739c;
        z-index: 2;
        display: flex;
        gap: 6px;
    }

    /* Action Arrow Button */
    .grid-arrow-btn {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111111;
        font-size: 12px;
        z-index: 2;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .grid-product-card:hover .grid-arrow-btn {
        background: #111111;
        color: #ffffff;
    }

    /* Responsive Breakdown */
    @media (max-width: 991.98px) {
        .section-title {
            font-size: 32px;
        }
        .main-feature-card {
            height: 450px;
        }
    }
    @media (max-width: 575.98px) {
        .main-feature-card {
            height: 380px;
        }
        .grid-product-card {
            height: 220px;
        }
        .feature-card-content {
            padding: 20px;
        }
        .feature-card-content h3 {
            font-size: 18px;
        }
    }

    /* Section Main Style */
    .premium-magazine-section {
        background: #fcfcfc;
    }

    /* Outer Layout Wrap */
    .modern-magazine-card {
        background: #ffffff;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    /* Left Side Dynamic Design (Enlarged) */
    .magazine-visual-wrapper-large {
        background: #f4f3f1;
        min-height: 560px; /* হাইট বাড়ানো হয়েছে */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 50px; /* স্পেস বাড়ানো হয়েছে */
    }

    /* Background Neon/Blur luxury glow */
    .blur-bg-effect {
        position: absolute;
        width: 120%;
        height: 120%;
        background-size: cover;
        background-position: center;
        filter: blur(40px) opacity();
        transform: scale(1.1);
        z-index: 1;
    }

    /* Magazine Art Perspective & Shadow (Bigger Size) */
    .magazine-front-art-large {
        position: relative;
        z-index: 2;
        max-width: 400px; /* ইমেজ উইডথ ৩২০px থেকে ৪০০px করা হয়েছে */
        width: 100%;
        transform: rotate(-3deg) translateY(0px);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .magazine-front-art-large img {
        border-radius: 12px;
        box-shadow: -15px 25px 45px rgba(0, 0, 0, 0.2), 
                    -2px 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Hover effect */
    .modern-magazine-card:hover .magazine-front-art-large {
        transform: rotate(0deg) scale(1.03) translateY(-10px);
    }

    /* Right Side Content Styling */
    .magazine-text-details {
        padding: 60px;
    }

    .badge-wrapper {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .modern-tag {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: #c49a45;
        letter-spacing: 1.5px;
    }

    .date-badge {
        font-size: 11px;
        font-weight: 600;
        background: rgba(196, 154, 69, 0.1);
        color: #ae8435;
        padding: 2px 10px;
        border-radius: 20px;
    }

    .magazine-main-title {
        font-family: 'Playfair Display', serif;
        font-size: 38px;
        font-weight: 700;
        color: #111111;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .magazine-main-title span {
        color: #c49a45;
    }

    .magazine-brief {
        font-size: 15px;
        color: #666666;
        line-height: 1.65;
        margin-bottom: 30px;
    }

    /* Highlights Feature Section */
    .quick-highlights .highlight-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .quick-highlights .highlight-item i {
        color: #c49a45;
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

    .quick-highlights .highlight-item span {
        font-size: 14px;
        font-weight: 500;
        color: #222222;
    }

    /* Footer and Button styles */
    .action-footer {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-top: 35px;
        border-top: 1px solid #f1f1f1;
        padding-top: 25px;
    }

    .btn-premium-read {
        display: inline-flex;
        align-items: center;
        background-color: #111111;
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        padding: 12px 36px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-premium-read:hover {
        background-color: #c49a45;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(196, 154, 69, 0.3);
    }

    .reading-time {
        font-size: 13px;
        color: #888888;
        font-weight: 500;
    }

    /* Responsive Breakdown */
    @media (max-width: 1199.98px) {
        .magazine-visual-wrapper-large {
            min-height: 500px;
        }
        .magazine-front-art-large {
            max-width: 340px;
        }
    }

    @media (max-width: 991.98px) {
        .magazine-text-details {
            padding: 40px 30px;
        }
        .magazine-visual-wrapper-large {
            min-height: 420px;
            padding: 40px;
        }
        .magazine-main-title {
            font-size: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .magazine-front-art-large {
            max-width: 260px;
        }
        .action-footer {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
    }

    /* Section Styles */
    .popular-articles-section {
        background-color: #fbf9f6; /* Soft warm background matching the original image tone */
    }
    
    .section-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 38px;
        color: #1d252d;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 14px;
        font-style: italic;
        color: #666666;
        font-family: 'Georgia', serif;
    }

    /* Modern Blog Card Layout */
    .modern-blog-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .modern-blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    }

    /* Image Wrapper & Zoom Hover Effect */
    .blog-img-wrapper {
        width: 100%;
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    .blog-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modern-blog-card:hover .blog-img-wrapper img {
        transform: scale(1.05);
    }

    /* Content Area Inside Card */
    .blog-content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-meta {
        margin-bottom: 12px;
    }

    .blog-date {
        font-size: 12px;
        color: #888888;
        font-weight: 500;
    }

    .blog-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .blog-title a {
        color: #1d252d;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .blog-title a:hover {
        color: #c49a45; /* Elegant gold interactive state color */
    }

    .blog-excerpt {
        font-size: 13.5px;
        color: #666666;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1; /* Pushes the button to the bottom evenly */
    }

    /* Read More Action Button */
    .btn-read-more {
        display: inline-flex;
        align-items: center;
        font-size: 13px;
        font-weight: 700;
        color: #c49a45;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s ease;
        margin-top: auto;
    }

    .btn-read-more i {
        transition: transform 0.2s ease;
    }

    .btn-read-more:hover {
        color: #1d252d;
    }

    .btn-read-more:hover i {
        transform: translateX(4px);
    }

    /* Mobile Responsiveness */
    @media (max-width: 767.98px) {
        .section-title {
            font-size: 30px;
        }
        .blog-img-wrapper {
            height: 200px;
        }
        .blog-content {
            padding: 20px;
        }
    }

    /* Section Core Style */
    .playful-designs-section {
        background-color: #ffffff;
    }
    
    .section-heading {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 42px;
        color: #1d252d;
    }

    /* Left Side: Premium Spinner Card */
    .main-spinner-card {
        background-color: #050709;
        border-radius: 28px;
        overflow: hidden;
        position: relative;
        height: 580px; /* Aligns perfectly with right side grid total height */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .spinner-img-wrap {
        width: 100%;
        height: 100%;
    }

    .spinner-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom center;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .main-spinner-card:hover .spinner-img-wrap img {
        transform: scale(1.04);
    }

    /* Glassmorphism Text Overlay Box */
    .spinner-overlay-content {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        z-index: 2;
    }

    .spinner-title {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .spinner-subtitle {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
        max-width: 340px;
        margin: 0 auto 20px auto;
        line-height: 1.5;
    }

    .btn-discover-modern {
        display: inline-block;
        background-color: #c49a45;
        color: #ffffff;
        font-weight: 600;
        font-size: 13.5px;
        padding: 9px 34px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-discover-modern:hover {
        background-color: #ffffff;
        color: #111111;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }

    /* Right Side: Sleek Grid Cards */
    .toy-grid-card {
        display: block;
        background: #f5f4f2;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        height: 276px; /* Balance math for perfect alignment */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        border: 1px solid rgba(0, 0, 0, 0.01);
    }

    .toy-grid-card.wide-card {
        height: 280px;
    }

    .toy-grid-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    }

    .toy-img-inner {
        width: 100%;
        height: 100%;
    }

    .toy-img-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .toy-grid-card:hover .toy-img-inner img {
        transform: scale(1.04);
    }

    /* Minimalist Floating Action Arrow */
    .toy-action-arrow {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111111;
        font-size: 13px;
        z-index: 3;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .toy-grid-card:hover .toy-action-arrow {
        background: #111111;
        color: #ffffff;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .section-heading {
            font-size: 32px;
        }
        .main-spinner-card {
            height: 480px;
        }
        .spinner-title {
            font-size: 26px;
        }
    }

    @media (max-width: 575.98px) {
        .main-spinner-card {
            height: 420px;
        }
        .spinner-overlay-content {
            width: 90%;
            padding: 20px 15px;
        }
        .toy-grid-card, .toy-grid-card.wide-card {
            height: 230px;
        }
    }

    /* Section Main Style */
    .kings-queens-section {
        background-color: #fbf9f6; 
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header Typography Styling */
    .royal-subtitle {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 2px;
        color: #111111;
    }

    .royal-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 44px;
        color: #1d252d;
    }

    .royal-description {
        max-width: 860px;
        font-size: 14.5px;
        color: #555555;
        line-height: 1.65;
    }

    /* Buttons Style matched to image_d29cde.jpg */
    .btn-royal-gold, .btn-royal-dark {
        display: inline-block;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 34px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .btn-royal-gold {
        background-color: #c49a45;
        color: #ffffff;
    }
    .btn-royal-gold:hover {
        background-color: #ae8435;
        color: #ffffff;
    }

    .btn-royal-dark {
        background-color: #1d252d;
        color: #ffffff;
    }
    .btn-royal-dark:hover {
        background-color: #111111;
        color: #ffffff;
    }

    /* Infinite Marquee Auto Scroll Layout */
    .feline-marquee-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow: hidden;
        padding: 20px 0;
    }

    .feline-marquee-track {
        display: flex;
        width: max-content;
        gap: 20px;
        animation: infiniteScrollGrid 24s linear infinite;
    }

    .feline-marquee-container:hover .feline-marquee-track {
        animation-play-state: paused;
    }

    /* Fixed Aspect Ratio Card Item Style */
    .feline-card {
    width: 320px;
    height: 240px; /* সকল কন্টেইনারের সাইজ সমান থাকবে */
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #eae7e2; /* ছবি ছোট হলে ফাঁকা জায়গায় এই ম্যাচিং ব্যাকগ্রাউন্ডটি দেখাবে */
    border-radius: 16px; /* পুরো ছবি দেখতে যেন আরও সুন্দর লাগে তাই হালকা রাউন্ডেড কর্নার */
}

.feline-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* এর ফলে ইমেজ একটুও কাটবে না, পুরো ছবিটাই ফ্রেমের ভেতর দেখাবে */
    padding: 5px; /* চারপাশ থেকে হালকা একটু সেফটি স্পেস */
}

    
    /* Left Bottom Feline Text Overlay */
    .feline-name {
        position: absolute;
        bottom: 15px;
        left: 45%;
        color: #ffffff;
        font-weight: 700;
        font-size: 15px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.6);
        z-index: 2;
    }

    /* Infinite Loop Keyframes */
    @keyframes infiniteScrollGrid {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* ==========================================================================
       STRICT MOBILE & TABLET RESPONSIVENESS (পিক্সেল পারফেক্ট রেসপনসিভ)
       ========================================================================== */
    
    /* Tablets and Small Laptops (max-width: 991px) */
    @media (max-width: 991.98px) {
        .royal-title {
            font-size: 36px;
        }
        .royal-description {
            font-size: 14px;
        }
        .feline-card {
            width: 280px;
            height: 210px; /* ছোট স্ক্রিনে আনুপাতিক হারে সমান সাইজ */
        }
    }

    /* Mobile Devices (max-width: 767px) */
    @media (max-width: 767.98px) {
        .kings-queens-section {
            padding-top: 40px !important;
            padding-bottom: 40px !important;
        }
        .royal-title {
            font-size: 28px;
        }
        .royal-description {
            font-size: 13px;
            line-height: 1.6;
        }
        .royal-buttons {
            flex-direction: column; /* মোবাইলে বাটনগুলো নিচে নিচে সুন্দরভাবে বসবে */
            gap: 12px !important;
            padding: 0 20px;
        }
        .btn-royal-gold, .btn-royal-dark {
            width: 100%; /* বাটন ফুল উইডথ হবে যেন টাচ করতে সুবিধা হয় */
            padding: 12px 20px;
        }
        .feline-card {
            width: 220px;
            height: 165px; /* মোবাইল স্ক্রিনের জন্য অপ্টিমাইজড সমান সাইজ */
        }
        .feline-marquee-track {
            gap: 12px; /* মোবাইলে কার্ডের মাঝের স্পেস কিছুটা কমানো হয়েছে */
        }
        .feline-name {
            font-size: 13px;
            bottom: 10px;
            left: 10px;
        }
    }
    @media (max-width: 991.98px) {
    .feline-card {
        width: 280px;
        height: 210px;
    }
}

@media (max-width: 767.98px) {
    .feline-card {
        width: 220px;
        height: 165px;
    }
}

/* Section Main Base */
    .catit-litter-section {
        background-color: #fbf9f6; /* Soft warm minimalist background */
        overflow: hidden;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    /* Header Styling */
    .sub-brand-title {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 2px;
        color: #777777;
    }

    .main-slider-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 40px;
        color: #1d252d;
    }

    /* No Background Minimalist Product Card Layout */
    .litter-product-card {
        background: transparent; /* ব্যাকগ্রাউন্ড কালার রিমুভ করা হয়েছে */
        padding: 20px 10px;
        height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
    }

    /* Product Visual Wrapper & Floating Shadow */
    .product-visual-wrap {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .main-product-img {
        max-height: 100%;
        max-width: 85%;
        object-fit: contain;
        /* Sleek Drop Shadow directement sur le produit */
        filter: drop-shadow(-10px 15px 20px rgba(0, 0, 0, 0.12));
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Hover Animation on Product Image instead of card background */
    .litter-product-card:hover {
        transform: translateY(-5px);
    }
    
    .litter-product-card:hover .main-product-img {
        transform: scale(1.05);
        filter: drop-shadow(-15px 20px 25px rgba(0, 0, 0, 0.16));
    }

    /* Typography Inside Card - Changed to dark elegant colors */
    .product-info {
        width: 100%;
        margin-top: 15px;
    }

    .product-name {
        font-size: 24px;
        font-weight: 700;
        color: #1d252d; /* পরিচ্ছন্ন ডার্ক কালার */
        margin-bottom: 8px;
    }

    .product-features {
        font-size: 14px;
        color: #666666; /* সফট গ্রে টেক্সট */
        line-height: 1.5;
        margin-bottom: 20px;
        min-height: 42px; /* vertical symmetry alignment */
        padding: 0 15px;
    }

    /* Premium Pill Button Style - Dark and elegant matching the theme */
    .btn-litter-learn {
        display: inline-block;
        background-color: transparent;
        color: #1d252d;
        font-weight: 700;
        font-size: 13.5px;
        padding: 10px 38px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid #1d252d; /* মডার্ন আউটলাইন বাটন */
    }

    .btn-litter-learn:hover {
        background-color: #1d252d;
        color: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    /* Sleek Navigation Arrows Placement */
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        position: absolute;
        top: 55%;
        width: 46px;
        height: 46px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1d252d;
        font-size: 14px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.2s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.03);
    }

    .swiper-button-prev-custom { left: -20px; }
    .swiper-button-next-custom { right: -20px; }

    .swiper-button-prev-custom:hover,
    .swiper-button-next-custom:hover {
        background-color: #1d252d;
        color: #ffffff;
        transform: scale(1.05);
    }

    /* Custom Pagination Dots Styling */
    .swiper-pagination-custom .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background-color: #d1cbd4;
        opacity: 0.7;
        margin: 0 5px;
        display: inline-block;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .swiper-pagination-custom .swiper-pagination-bullet-active {
        background-color: #c49a45; /* Brand accent color */
        width: 20px; /* মডার্ন ইলংগেটেড (Elongated) অ্যাক্টিভ ডট ইফেক্ট */
        border-radius: 4px;
        opacity: 1;
    }

    /* ==========================================================================
       RESPONSIVENESS CODES (পিক্সেল পারফেক্ট রেসপনসিভ)
       ========================================================================== */
    @media (max-width: 1250px) {
        .swiper-button-prev-custom { left: 5px; }
        .swiper-button-next-custom { right: 5px; }
    }

    @media (max-width: 991.98px) {
        .main-slider-title { font-size: 32px; }
        .litter-product-card { height: 440px; }
        .product-name { font-size: 21px; }
        .product-visual-wrap { height: 240px; }
    }

    @media (max-width: 767.98px) {
        .main-slider-title { font-size: 26px; padding: 0 15px; }
        .swiper-button-prev-custom, .swiper-button-next-custom { display: none; }
        .litter-product-card { height: 420px; }
    }
     /* Section Main Setup */
    .minimal-image-related {
        background-color: #ffffff;
        overflow: hidden;
    }

    /* Minimal Header Style */
    .minimal-section-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 36px;
        color: #121619;
        letter-spacing: 0.5px;
    }

    .minimal-title-line {
        width: 35px;
        height: 2px;
        background-color: #c49a45;
        margin: 12px auto 0 auto;
    }

    /* Big Image Card Container */
    .big-product-card {
        display: block;
        background-color: #f7f6f4; /* Soft neutral premium canvas background */
        border-radius: 28px; /* Smooth rounded corners */
        overflow: hidden;
        position: relative;
        text-decoration: none;
        /* Balanced vertical ratio keeps images large even in 4 columns */
        aspect-ratio: 3 / 3.6; 
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    }

    /* Canvas Wrapper */
    .big-img-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px; /* Elegant safety padding */
    }

    .big-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Keeps the entire item visible without cropping */
        transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        filter: drop-shadow(0px 12px 20px rgba(0, 0, 0, 0.05)); /* Soft ambient shadow */
    }

    /* Premium Interaction Hover Triggers */
    .big-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    }

    /* Smooth Zoom on Image */
    .big-product-card:hover .big-img-wrapper img {
        transform: scale(1.05);
        filter: drop-shadow(0px 18px 30px rgba(0, 0, 0, 0.08));
    }

    /* Floating Minimal Action Arrow (Bottom Right) */
    .minimal-hover-arrow {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #121619;
        font-size: 13px;
        z-index: 2;
        opacity: 0.85;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    }

    /* Arrow State Change on Card Hover */
    .big-product-card:hover .minimal-hover-arrow {
        opacity: 1;
        background-color: #121619;
        color: #ffffff;
        transform: scale(1.05);
    }

    /* ==========================================================================
       4-COLUMN PERFECT RESPONSIVENESS (১০০% পিক্সেল পারফেক্ট মোবাইল রেসপনসিভ)
       ========================================================================== */
    
    /* Large Screens & Laptops (min-width: 1200px) */
    @media (min-width: 1200px) {
        .col-xl-3 {
            width: 25%; /* ডেক্সটপে নিখুঁত ৪ কলাম লেআউট */
        }
    }

    /* Tablets and Small Laptops (max-width: 1199px) */
    @media (max-width: 1199.98px) {
        .minimal-section-title {
            font-size: 30px;
        }
        .big-product-card {
            border-radius: 22px;
            aspect-ratio: 3 / 3.5;
        }
    }

    /* Mobile Devices (max-width: 767px) */
    @media (max-width: 767.98px) {
        .minimal-section-title {
            font-size: 24px;
        }
        /* মোবাইলে গ্রিডের স্পেসিং ব্যালেন্স করা */
        .row.g-4 {
            --bs-gutter-x: 12px;
            --bs-gutter-y: 12px;
        }
        .big-product-card {
            border-radius: 16px;
            aspect-ratio: 3 / 3.4; /* মোবাইলে ইমেজগুলো যেন সুন্দর বড় দেখায় */
        }
        .big-img-wrapper {
            padding: 12px;
        }
        .minimal-hover-arrow {
            bottom: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            font-size: 11px;
            opacity: 1; /* Touch ডিভাইসের জন্য Arrow সবসময় অন থাকবে */
        }
    }

    /* Section Main Setup */
    .help-advice-section {
        background-color: #fcfbfa; /* Soft warm minimalist background tone */
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        overflow: hidden;
    }

    /* Left Side Typography */
    .help-tagline {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 3px;
        color: #999999;
    }

    .help-main-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 44px;
        color: #121619;
    }

    .help-description {
        font-size: 16px;
        color: #555555;
        line-height: 1.7;
    }

    .help-inline-link {
        color: #121619;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: color 0.2s;
    }

    .help-inline-link:hover {
        color: #c49a45;
    }

    .btn-modern-help {
        display: inline-block;
        background-color: #121619;
        color: #ffffff;
        font-weight: 700;
        font-size: 14px;
        padding: 13px 34px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-modern-help:hover {
        background-color: #c49a45;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 154, 69, 0.15);
    }

    /* Middle Column: Main Phone Mockup Frame */
    .main-hand-phone-wrapper {
        display: inline-block;
        position: relative;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hand-phone-img {
        max-width: 100%;
        height: auto;
        /* Drops an elegant smooth ambient shadow beneath the hand and phone */
        filter: drop-shadow(15px 15px 35px rgba(0, 0, 0, 0.1)); 
    }

    .main-hand-phone-wrapper:hover {
        transform: translateY(-8px) rotate(-1deg);
    }

    /* Right Column: New Single Premium App Banner */
    .premium-app-banner {
        width: 100%;
        min-height: 380px;
        background-color: #f2ede6; /* Soft premium sand texture base */
        background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?q=80&w=800&auto=format&fit=crop'); /* Dynamic background pattern/photo */
        background-size: cover;
        background-position: center;
        border-radius: 32px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    }

    /* Smooth Matte Glass Overlay over Banner Image */
    .banner-glass-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.7) 100%);
        backdrop-filter: blur(2px);
        z-index: 1;
    }

    .banner-content-wrap {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }

    .banner-badge {
        display: inline-block;
        background-color: #121619;
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .banner-title {
        font-size: 28px;
        font-weight: 700;
        color: #121619;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .banner-text {
        font-size: 14.5px;
        color: #555555;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    /* Features list layout inside banner */
    .banner-features-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .feat-item {
        font-size: 14px;
        font-weight: 600;
        color: #121619;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .feat-item i {
        color: #c49a45; /* Golden brand check mark */
        font-size: 16px;
    }

    /* ==========================================================================
       RESPONSIVENESS (পিক্সেল পারফেক্ট মোবাইল রেসপনসিভ)
       ========================================================================== */
    @media (max-width: 1199.98px) {
        .help-main-title { font-size: 36px; }
        .banner-title { font-size: 24px; }
        .premium-app-banner { padding: 30px; min-height: 340px; }
    }

    @media (max-width: 991.98px) {
        .help-main-title { font-size: 30px; }
        .help-text-wrapper { margin-bottom: 10px; }
        .premium-app-banner { min-height: auto; }
    }

    @media (max-width: 767.98px) {
        .help-main-title { font-size: 26px; }
        .help-action-box { margin-bottom: 20px; }
        .premium-app-banner { border-radius: 24px; padding: 25px; }
        .banner-title { font-size: 21px; }
        .banner-text { font-size: 13.5px; }
        .feat-item { font-size: 13px; }
    }

    /* Global Footer Setup */
    .catit-main-footer {
        background-color: #f6f5f3; /* Exact soft grayish-white hue from image_5a711d.png */
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        padding-top: 50px;
        color: #333333;
    }

    /* Container Spacing Configurations */
    .footer-top-container,
    .footer-controls-container,
    .footer-bottom-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* Grid System Match */
    .footer-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr 1fr 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    /* Borders inside columns for Desktop view */
    .border-left-desktop {
        border-left: 1px solid #e0deda;
        padding-left: 40px;
    }

    /* Column Typography Settings */
    .footer-heading {
        font-size: 14px;
        font-weight: 700;
        color: #111111;
        margin-bottom: 18px;
        text-transform: none;
    }

    .brand-sub-title {
        font-size: 13.5px;
        font-weight: 700;
        color: #111111;
    }

    .magazine-desc {
        font-size: 13px;
        color: #555555;
        margin-bottom: 15px;
    }

    /* Magazine Visual Container */
    .magazine-visual {
        max-width: 190px;
    }
    .magazine-img {
        width: 100%;
        height: auto;
    }

    /* Premium Pill Subscribe Button */
    .btn-subscribe {
        display: inline-block;
        background-color: #222222;
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        padding: 8px 24px;
        border-radius: 20px;
        text-decoration: none;
        transition: background-color 0.2s;
    }
    .btn-subscribe:hover {
        background-color: #c49a45;
        color: #ffffff;
    }

    /* Links Array Configs */
    .footer-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links-list li {
        margin-bottom: 9px;
    }
    .footer-links-list li a {
        font-size: 13px;
        color: #555555;
        text-decoration: none;
        transition: color 0.15s ease;
    }
    .footer-links-list li a:hover {
        color: #111111;
        text-decoration: underline;
    }

    /* Social Bar Row */
    .social-icons-row {
        display: flex;
        gap: 14px;
        align-items: center;
    }
    .social-icons-row a {
        color: #444444;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s;
    }
    .social-icons-row a:hover {
        color: #c49a45;
    }

    /* Middle Dropdown Controls Layout */
    .footer-controls-container {
        border-top: 1px solid #e0deda;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .controls-wrapper {
        display: flex;
        align-items: flex-end;
        gap: 20px;
        flex-wrap: wrap;
    }

    .control-box {
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 220px;
    }
    .control-box label {
        font-size: 13px;
        font-weight: 700;
        color: #111111;
    }

    /* Custom Minimal Dropdown Boxes */
    .select-wrapper {
        position: relative;
        background: #ffffff;
        border: 1px solid #d1cfcb;
        border-radius: 4px;
    }
    .select-wrapper select {
        width: 100%;
        padding: 10px 12px;
        font-size: 12.5px;
        color: #555555;
        background: transparent;
        border: none;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
    }
    /* Native arrow injection simulation */
    .select-wrapper::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #777777;
        pointer-events: none;
        font-size: 12px;
    }

    /* Country Switcher Link */
    .country-changer-box {
        margin-left: auto;
        padding-bottom: 6px;
    }
    .btn-change-country {
        font-size: 13px;
        color: #444444;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .btn-change-country:hover {
        text-decoration: underline;
    }
    .flag-icon-mock {
        color: #c49a45;
    }

    /* Bottom Copyright/Legal Segment */
    .footer-bottom-container {
        border-top: 1px solid #e0deda;
        padding-top: 20px;
        padding-bottom: 25px;
    }
    .bottom-flex-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .copyright-text {
        font-size: 11.5px;
        color: #777777;
    }
    .legal-links a {
        font-size: 11.5px;
        color: #555555;
        text-decoration: none;
        margin-left: 18px;
        transition: color 0.2s;
    }
    .legal-links a:hover {
        color: #111111;
        text-decoration: underline;
    }

    /* ==========================================================================
       FOOTER PIXEL-PERFECT RESPONSIVENESS
       ========================================================================== */
    
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .border-left-desktop {
            border-left: none;
            padding-left: 0;
        }
        .footer-top-container, .footer-controls-container, .footer-bottom-container {
            padding: 0 25px;
        }
    }

    @media (max-width: 768px) {
        .controls-wrapper {
            flex-direction: column;
            align-items: stretch;
            gap: 15px;
        }
        .control-box {
            width: 100%;
        }
        .country-changer-box {
            margin-left: 0;
            margin-top: 5px;
        }
        .bottom-flex-wrap {
            flex-direction: column-reverse;
            align-items: flex-start;
            gap: 12px;
        }
        .legal-links a {
            margin-left: 0;
            margin-right: 14px;
            display: inline-block;
            margin-bottom: 6px;
        }
    }

    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    /* Scroll To Top Button Base Styling */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: #ffffff; /* হোয়াইট ব্যাকগ্রাউন্ড */
    color: #333333; /* ডার্ক অ্যারো কালার */
    border: 2px solid #333333; /* স্ক্রিনশটের মতো নিখুঁত সার্কেল বর্ডার */
    border-radius: 50%; /* পুরোপুরি গোল করার জন্য */
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* যেন সব এলিমেন্টের উপরে থাকে */
    
    /* ইনিশিয়ালি হাইড এবং নিচে নামানো থাকবে অ্যানিমেশনের জন্য */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* যখন স্ক্রল করার পর বাটনটি একটিভ হবে */
.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* হোভার ইফেক্ট (প্রিমিয়াম লুকের জন্য) */
.scroll-to-top-btn:hover {
    background-color: #121619;
    color: #ffffff;
    border-color: #121619;
}

/* Welcome Title Styling (H3) */
    .brand-welcome-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 24px; /* Balanced H3 size */
        color: #121619;
        letter-spacing: -0.5px;
        margin-bottom: 0;
    }

    .brand-title-divider {
        width: 40px;
        height: 2px;
        background-color: #c49a45;
        margin: 15px auto 0 auto;
    }

    /* Track Layout Custom Setup */
    .category-carousel-section {
        background-color: #ffffff;
    }

    .carousel-inner-custom {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 15px 0;
    }
    .carousel-inner-custom::-webkit-scrollbar {
        display: none;
    }

    /* Increased Height for Scrolling Items */
    .cat-scroll-item {
        flex: 0 0 calc(25% - 15px); /* 4 columns layout on desktop */
        position: relative;
        border-radius: 28px;
        overflow: hidden;
        /* Changed from 1/1 to 1/1.35 to elegantly increase height */
        aspect-ratio: 1 / 1.35; 
        display: block;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    }

    .cat-scroll-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cat-scroll-item:hover img {
        transform: scale(1.05);
    }

    /* Elegant Text Overlay */
    .cat-item-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
        display: flex;
        align-items: flex-end;
        padding: 24px;
    }
    .cat-item-overlay span {
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
    }

    /* ==========================================================================
       CAROUSEL ARROWS - PERFECT CENTERING FIX
       ========================================================================== */
    .carousel-nav-btn {
        position: absolute;
        /* Aligns exactly relative to the center of the total image track height */
        top: calc(50% + 40px); /* 40px padding added to balance out the H3 header space */
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background-color: #ffffff;
        border: 1px solid #e0deda;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #121619;
        font-size: 14px;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: all 0.2s ease;
    }

    .carousel-nav-btn:hover {
        background-color: #121619;
        color: #ffffff;
        border-color: #121619;
    }

    /* Absolute Left & Right Edge Alignment */
    .prev-btn {
        left: -22px; /* Floats perfectly halfway outside the container boundary */
    }

    .next-btn {
        right: -22px;
    }

    /* Responsive adjustments */
    @media (max-width: 1199.98px) {
        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }
    }

    @media (max-width: 991.98px) {
        .brand-welcome-title { font-size: 28px; }
        .cat-scroll-item { flex: 0 0 calc(33.333% - 14px); }
        .carousel-nav-btn { top: calc(50% + 30px); }
    }

    @media (max-width: 767.98px) {
        .brand-welcome-title { font-size: 22px; }
        .cat-scroll-item { flex: 0 0 calc(50% - 10px); border-radius: 20px; }
        .carousel-nav-btn { display: none; } /* Mobile touch swiping replaces buttons */
    }
    .premium-magazine-section {
        background-color: #ffffff;
        width: 100%;
        overflow: hidden;
        padding: 0; /* সেকশনের টপ-বটম স্পেস প্রজেক্ট অনুযায়ী রাখতে পারেন, ফুল উইডথের জন্য সাইড প্যাডিং ০ থাকবে */
    }

    .full-width-magazine-container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* স্ক্রিনের একদম এক মাথা থেকে ও মাথা পর্যন্ত ১০০% ফুল উইডথ করার জন্য */
    .magazine-bleed-img {
        width: 100vw; /* Viewport Width ১০০% কভার করবে */
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Section Typography */
    .catit-litter-section {
        background-color: #ffffff;
        overflow: hidden;
    }
    .sub-brand-title {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #999999;
        font-weight: 700;
    }
    .main-slider-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 34px;
        color: #121619;
    }

    /* Container Outer Control Box for Navigation Arrows placement */
    .platform-swiper-wrapper {
        padding: 0 45px; /* Ensures space on outer bounds for custom arrows */
    }

    /* ==========================================================================
       SWIPER SLIDE & IMAGE ENLARGEMENT CONFIGURATION
       ========================================================================== */
    .litter-enlarged-swiper {
        width: 100%;
        padding: 20px 0 !important;
    }

    /* Card Setup */
    .litter-product-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 25px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.02);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .litter-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    /* Enlarged Image Wrap */
    .product-visual-wrap {
        width: 100%;
        /* Adjusted height from standard small panels to look dominant and larger */
        height: 320px; 
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .main-product-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Keeps product packaging ratio clean without stretching */
        transition: transform 0.4s ease;
    }

    .litter-product-card:hover .main-product-img {
        transform: scale(1.04);
    }

    /* Typography inside Card */
    .product-info {
        width: 100%;
    }
    .product-name {
        font-size: 20px;
        font-weight: 700;
        color: #121619;
        margin-bottom: 8px;
    }
    .product-features {
        font-size: 13px;
        color: #666666;
        margin-bottom: 20px;
        line-height: 1.4;
        min-height: 38px; /* Holds layout structure evenly if text wraps */
    }

    /* Premium Pill Button */
    .btn-litter-learn {
        display: inline-block;
        border: 2px solid #121619;
        color: #121619;
        font-size: 13px;
        font-weight: 700;
        padding: 9px 28px;
        border-radius: 25px;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    .btn-litter-learn:hover {
        background-color: #121619;
        color: #ffffff;
    }

    /* ==========================================================================
       NAVIGATION ARROWS & NAVIGATION DOTS 
       ========================================================================== */
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background-color: #ffffff;
        border: 1px solid #e0deda;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #121619;
        font-size: 14px;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: all 0.2s ease;
    }

    .swiper-button-prev-custom:hover,
    .swiper-button-next-custom:hover {
        background-color: #121619;
        color: #ffffff;
        border-color: #121619;
    }

    .swiper-button-prev-custom { left: 0px; }
    .swiper-button-next-custom { right: 0px; }

    /* ==========================================================================
       RESPONSIVE DESIGN (পিক্সেল পারফেক্ট স্ক্রিন শিফটিং)
       ========================================================================== */
    @media (max-width: 1199.98px) {
        .product-visual-wrap { height: 28px; }
        .main-slider-title { font-size: 28px; }
    }

    @media (max-width: 767.98px) {
        .platform-swiper-wrapper { padding: 0 10px; }
        .product-visual-wrap { height: 240px; }
        .main-slider-title { font-size: 24px; }
        .swiper-button-prev-custom, .swiper-button-next-custom { display: none; } /* Fallback touch gesture swipe */
    }

    /* 12. Help & Advice Section Styling */
.help-advice-section {
    background-color: #faf7f2; /* ইমেজ ব্যাকগ্রাউন্ডের সাথে ম্যাচিং অফ-হোয়াইট কালার */
    padding: 80px 0;
    overflow: hidden;
}
.help-content-left {
    max-width: 440px;
    margin: 0 auto;
}
@media (min-width: 992px) {
    .help-content-left {
        margin: 0; /* ডেক্সটপে বামে অ্যালাইন থাকবে */
    }
}
.help-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
.help-description {
    font-size: 20px;
    line-height: 1.6;
    color: #7a7570;
    font-weight: 400;
}
.help-link-underline {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #c49a45; /* টেক্সটের নিচের গোল্ডেন আন্ডারলাইন */
    padding-bottom: 2px;
    transition: color 0.2s ease;
}
.help-link-underline:hover {
    color: #b81d24;
}

/* Right Side Image Wrap */
.help-banner-right-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 992px) {
    .help-banner-right-wrap {
        justify-content: flex-end; /* ডেক্সটপে ডানপাশে চেপে থাকবে */
    }
}
.help-single-banner-img {
    width: 100%;
    height: auto;
    max-width: 820px; /* ইমেজের শার্পনেস এবং রেশিও ঠিক রাখার জন্য */
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .help-advice-section {
        padding: 60px 0;
    }
    .help-content-left {
        margin-bottom: 40px;
    }
    .help-main-title {
        font-size: 42px;
        margin-bottom: 15px;
    }
    .help-description {
        font-size: 18px;
    }
}
@media (max-width: 575.98px) {
    .help-main-title {
        font-size: 36px;
    }
}




    /*CATEGORY PAGE CSS*/

    .category-banner-title {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 1px;
    }

    /* 2. Layout Container */
    .category-main-section {
        background-color: #faf7f2;
        font-family: 'Inter', sans-serif;
    }
    .custom-large-container {
        width: 100%;
        max-width: 1440px; 
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
    }

    /* Left Sidebar Listing Styling */
    .sidebar-category-list {
        background-color: #ffffff;
        border: 1px solid #e5e0da;
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    }
    .sidebar-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 700;
        color: #111111;
        border-bottom: 2px solid #c49a45;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    .cat-list-group {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .cat-list-item {
        margin-bottom: 8px;
    }
    .cat-list-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        color: #444444;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.2s ease;
        background-color: #faf7f2;
    }
    .cat-list-link:hover, .cat-list-link.active {
        background-color: #c49a45;
        color: #ffffff;
    }
    .cat-list-link i {
        font-size: 12px;
        transition: transform 0.2s ease;
    }
    .cat-list-link:hover i {
        transform: translateX(4px);
    }

    /* Right Side 2-Column Grid Thumbnail Item */
    .category-thumb-card {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        border: 1px solid #e5e0da;
        border-radius: 16px;
        padding: 15px;
        text-decoration: none;
        color: #111111;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    }
    .category-thumb-card:hover {
        transform: translateY(-4px);
        border-color: #c49a45;
        box-shadow: 0 8px 25px rgba(196, 154, 69, 0.1);
        color: #c49a45;
    }
    .thumb-image-box {
        width: 90px;
        height: 90px;
        background-color: #faf7f2;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        padding: 8px;
    }
    .thumb-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    .category-thumb-card:hover .thumb-image-box img {
        transform: scale(1.08);
    }
    .thumb-content-box {
        padding-left: 20px;
    }
    .thumb-title {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .thumb-count {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #777777;
    }

    /* Scroll To Top Button */
    .scroll-to-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: #111;
        color: #fff;
        border: none;
        border-radius: 50%;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 99;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    .scroll-to-top-btn.show { display: flex; }

    @media (max-width: 991.98px) {
        .category-hero-banner { height: 180px; }
        .category-banner-title { font-size: 34px; }
        .thumb-title { font-size: 18px; }
    }
    