@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla:ital@0;1&display=swap');

 body {
            margin: 0;
/*            font-family:Roboto, sans-serif;*/
            background: #fff;
             /*font-family: "Merriweather", serif;*/
             font-family:'Atma', serif;
        }
        .desktop-hide{
            display: none;
        }

        /* Top Announcement Bar */
        .announcement-bar {
            background: #2d2d2d;
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: none;
        }

        /* Secondary Bar */
        .secondary-bar {
            background: #0a4d5c;
            color: white;
            padding: 12px 0;
            text-align: center;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Mobile Header */
        .mobile-header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .mobile-logo {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 4px;
            color: #1a1a2e;
            text-decoration: none;
        }

        .mobile-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-icons a, .mobile-icons button {
            color: #1a1a2e;
            font-size: 22px;
            text-decoration: none;
            background: none;
            border: none;
            position: relative;
            cursor: pointer;
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 5px;
            border: 1px solid rgba(0,0,0,.1);
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #1a1a2e;
            transition: all 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background: #e5b085;
            color: #000;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 85%;
            max-width: 350px;
            height: 100vh;
            background: white;
            z-index: 2000;
            transition: left 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        }

        .mobile-menu.active {
            left: 0;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-header {
            padding: 10px;
            background: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .menu-close {
            background: none;
            border: none;
            font-size: 28px;
            color: #1a1a2e;
            cursor: pointer;
            padding: 0;
            width: 35px;
            height: 35px;
        }

        .menu-user-info {
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .menu-user-info a {
            color: #0a4d5c;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-item {
            border-bottom: 1px solid #f0f0f0;
        }

        .menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            color: #1a1a2e;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            letter-spacing: 0.5px;
            transition: background 0.2s;
        }

        .menu-link:hover {
            background: #f8f9fa;
        }

        .submenu-toggle {
            background: none;
            border: none;
            color: #666;
            font-size: 18px;
            cursor: pointer;
            padding: 5px;
            transition: transform 0.3s;
        }

        .submenu-toggle.active {
            transform: rotate(180deg);
        }

        .submenu {
            max-height: 0;
            overflow: hidden;
            background: #f8f9fa;
            transition: max-height 0.3s ease;
        }

        .submenu.active {
            max-height: 500px;
        }

.submenu a {
    display: block;
    padding: 5px 20px 5px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

        .submenu a:hover {
            background: #e9ecef;
            color: #0a4d5c;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        @media (min-width: 992px) {
            .mobile-header {
                display: none;
            }

            .desktop-nav {
                display: block;
            }

            .secondary-header {
                background: linear-gradient(135deg, #0f4c5c 0%, #16697a 100%);
                color: white;
                padding: 8px 0;
                font-size: 13px;
            }

            .secondary-header a {
                color: white;
                text-decoration: none;
                margin: 0 5px;
                transition: opacity 0.3s;
            }

            .secondary-header a:hover {
                opacity: 0.8;
            }

            .social-icons a {
                color: white;
                margin: 0 8px;
                font-size: 18px;
                transition: transform 0.3s;
            }

            .social-icons a:hover {
                transform: scale(1.1);
            }

            .main-header {
                background: white;
                padding: 10px 0;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }

            .logo {
                font-size: 22px;
                font-weight: 700;
                letter-spacing: 4px;
                color: #1a1a2e;
                text-decoration: none;
            }

            .search-wrapper {
                position: relative;
                margin: 0 auto;
            }
/*
            .search-input {
                width: 100%;
                padding: 12px 50px 12px 20px;
                border: 2px solid #e0e0e0;
                border-radius: 50px;
                font-size: 14px;
                transition: border-color 0.3s;
            }*/

            .search-input:focus {
                outline: none;
                border-color: #16697a;
            }

            .search-input {
    text-indent: 0px;
    width: 100%;
    font-size: 14px;
    height: 42px !important;
    border-radius: 0;
    background: #f2f3f6 !important;
    border: none;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 10px 0 0;
    -webkit-appearance: textfield;
}

.search-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #e5b085;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    color: #666;
}

            .header-icons {
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .header-icons a {
                color: #1a1a2e;
                font-size: 22px;
                text-decoration: none;
                position: relative;
                transition: color 0.3s;
            }

            .header-icons a:hover {
                color: #16697a;
            }

            /* --- Desktop Nav Menu Styling (Added for Submenu) --- */

.nav-menu {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-top:1px solid rgba(0,0,0,.1);
    background: linear-gradient(135deg, #0f4c5c 0%, #16697a 100%);
}

.nav-menu .nav-link {
    color: #000; /* মেনু লিঙ্ক এর টেক্সট কালার */
    color:#fff;
    padding: 15px 10px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
    font-size:18px;
    font-family:'Atma', serif;
}

.nav-menu .nav-link:hover,
.nav-menu .dropdown-mega:hover > .dropdown-toggle {
    color: #000; /* হোভার কালার */
    background-color: #f7f7f7; /* হালকা ব্যাকগ্রাউন্ড কালার */
}

/* 1. Dropdown Container Styling (Dropdown-mega) */
.dropdown-mega {
    position: relative;
}

/* 2. Dropdown Menu Styling */
.dropdown-menu {
    /* Bootstrap default uses JS to show, we override to use hover */
    display: none; 
    position: absolute;
    top: 100%; /* মেনু বারের ঠিক নিচে আসবে */
    left: 0;
    z-index: 1000;
    min-width: 220px; /* মেনুর সাইজ */
    padding: 10px 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-top: 3px solid #0a4d5c; /* Primary color border */
    border-radius: 0 0 0px 0px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* 3. Dropdown Item Styling */
.dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 20px;
    clear: both;
    font-weight: 400;
    color: #333;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-transform: capitalize;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    color: #fff;
    background-color: #0a4d5c; /* Primary color on hover */
}

/* 4. HOVER EFFECT (The main magic) */
.dropdown-mega:hover > .dropdown-menu {
    display: block; /* হোভার করলে মেনুটি দেখা যাবে */
}

            .currency-dropdown {
                background: transparent;
                border: 1px solid rgba(255,255,255,0.3);
                color: white;
                padding: 4px 10px;
                border-radius: 4px;
                font-size: 13px;
                cursor: pointer;
            }

            .currency-dropdown:focus {
                outline: none;
                border-color: rgba(255,255,255,0.6);
            }
        }


                 /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
        }

        .hero-slider .carousel-inner {
            /*height: 550px;*/
        }

        .hero-slider .carousel-item {
            /*height: 550px;*/
            position: relative;
        }

        .hero-slider .slide-content {
            height: 100%;
            width: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-slider .slide-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-slider .slide-text {
            position: relative;
            z-index: 2;
            padding: 40px 0;
        }

        .hero-slider .slide-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 2px;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-slider .slide-subtitle {
            font-size: 18px;
            color: #ffffff;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-slider .slide-btn {
            background: #0a4d5c;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 0;
        }

        .hero-slider .slide-btn:hover {
            background: #083d4a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        /* Carousel Controls */
        .hero-slider .carousel-control-prev,
        .hero-slider .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
            transition: all 0.3s;
        }

        .hero-slider .carousel-control-prev {
            left: 30px;
        }

        .hero-slider .carousel-control-next {
            right: 30px;
        }

        .hero-slider .carousel-control-prev:hover,
        .hero-slider .carousel-control-next:hover {
            opacity: 1;
            background: rgba(255,255,255,1);
        }

        .hero-slider .carousel-control-icon {
            color: #1a1a2e;
            font-size: 24px;
        }

        .hero-slider .carousel-control-prev-icon,
        .hero-slider .carousel-control-next-icon {
            display: none;
        }

        /* Carousel Indicators */
        .hero-slider .carousel-indicators {
            bottom: 30px;
            margin-bottom: 0;
        }

        .hero-slider .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
            background: transparent;
            margin: 0 6px;
            opacity: 0.7;
            transition: all 0.3s;
        }

        .hero-slider .carousel-indicators button.active {
            background: white;
            opacity: 1;
            transform: scale(1.2);
        }
        
        @media (min-width:320px) and (max-width:575px){
            .hero-slider .carousel-inner {
            height: 100%!important;
        }

        .hero-slider .carousel-item {
            height: 100%!important;
        }
        
         /*.hero-slider .slide-text {*/
         /*   text-align: center;*/
         /*   padding: 0px!important;*/
         /* }*/
        }

        @media (max-width: 992px) {
            .hero-slider .carousel-inner {
                height: 500px;
            }

            .hero-slider .carousel-item {
                height: 500px;
            }

            .hero-slider .slide-title {
                font-size: 36px;
            }

            .hero-slider .slide-subtitle {
                font-size: 20px;
            }

            .hero-slider .carousel-control-prev,
            .hero-slider .carousel-control-next {
                width: 45px;
                height: 45px;
            }

            .hero-slider .carousel-control-prev {
                left: 15px;
            }

            .hero-slider .carousel-control-next {
                right: 15px;
            }

            .hero-slider .carousel-control-icon {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .hero-slider .carousel-inner {
                height: 100%;
            }

            .hero-slider .carousel-item {
                height: 300px;
            }

            .hero-slider .slide-text {
                text-align: center;
                padding: 20px;
            }

            .hero-slider .slide-title {
                font-size: 20px;
                letter-spacing: 1px;
            }

            .hero-slider .slide-subtitle {
                font-size: 15px;
            }

            .hero-slider .slide-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .hero-slider .carousel-control-prev,
            .hero-slider .carousel-control-next {
                width: 40px;
                height: 40px;
            }

            .hero-slider .carousel-indicators button {
                width: 10px;
                height: 10px;
            }
        }

        /* Custom CSS for the Footer */



/* --- CUSTOM CSS FOR ABAYABUTH FOOTER --- */

.ab-footer {
    background-color: #0b3738; /* Main Dark Teal/Green Background */
    color: #ffffff;
    line-height: 1.6;
}

.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------------------------- */
/* 1. TOP CTA / NEWSLETTER SECTION */
/* ------------------------------------- */

.ab-newsletter-section {
    background-color: #0c4343; /* Slightly Lighter background for the CTA section */
    text-align: center;
    padding: 50px 20px;
}

.ab-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.ab-subtext {
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: #c0c0c0;
}

.ab-form-group {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.ab-email-input {
    padding: 12px 15px;
    border: none;
    flex-grow: 1;
    font-size: 0.9rem;
    color: #333;
    outline: none;
}

.ab-subscribe-button {
    background-color: #e5b085; /* Light Peach/Beige color from the image */
    color: #333; /* Dark text on the button */
    padding: 12px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.ab-subscribe-button:hover {
    background-color: #d19f70;
}

/* ------------------------------------- */
/* 2. MAIN CONTENT / LINK SECTION */
/* ------------------------------------- */

/*.ab-main-content {*/
/*    padding: 60px 0;*/
/*}*/

.ab-main-content {
	padding: 60px 0px 0px 0px;
}

.ab-main-content .ab-container {
    display: flex;
    gap: 30px;
}

.ab-logo-text-block {
    flex: 2; /* Takes up more space */
    padding-right: 50px;
}

.ab-logo {
    font-size: 1.8rem;
    font-weight: 400; /* Lighter font weight for the logo */
    letter-spacing: 5px; /* Wide spacing like the image */
    margin-bottom: 25px;
}

.ab-logo-text-block p {
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.ab-brand-name {
    font-weight: bold;
}

.ab-link-columns {
    flex: 3; /* Link columns take up the remaining space */
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.ab-col {
    min-width: 150px;
}

.ab-col-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ab-list li {
    margin-bottom: 0px;
}

.ab-list a, .ab-contact-detail a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ab-list a:hover, .ab-contact-detail a:hover {
    color: #e5b085; /* Hover color */
}

/* Contact and Time Column Styling */

.ab-contact-detail {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.ab-social-icons {
    margin-top: 20px;
    margin-bottom: 40px;
}

.ab-social-icons a {
    color: #c0c0c0;
    font-size: 1.2rem;
    margin-right: 15px;
}

.ab-social-icons a:hover {
    color: #e5b085;
}

.ab-time-heading {
    margin-top: 30px;
}

.ab-time-table {
    color: #c0c0c0;
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
}

.ab-time-table td {
    padding-top: 3px;
    padding-bottom: 3px;
}

.ab-time-table td:first-child {
    font-weight: bold;
    width: 50%;
}

/* ------------------------------------- */
/* 3. BOTTOM COPYRIGHT / PAYMENT BAR */
/* ------------------------------------- */

.ab-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.ab-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ab-copyright {
    margin: 0;
    font-size: 0.8rem;
    color: #c0c0c0;
}

.ab-payment-icons {
    max-height: 25px; /* Adjust based on your payment icon image */
}


/* ------------------------------------- */
/* RESPONSIVENESS (Media Queries) */
/* ------------------------------------- */

@media (max-width: 992px) {
    .ab-main-content .ab-container {
        flex-direction: column;
    }

    .ab-logo-text-block {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ab-link-columns {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 40px;
    }

    .ab-col {
        min-width: 45%; /* Two columns per row on tablet */
    }
}

@media (max-width: 576px) {
    .ab-form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .ab-email-input {
        margin-bottom: 10px;
        text-align: center;
    }
    .ab-bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
    .ab-copyright {
        order: 2; /* Move copyright below payment icons on mobile */
    }
    .ab-payment-icons {
        order: 1;
    }
    .ab-link-columns {
        flex-direction: column; /* One column per row on mobile */
    }
    .ab-col {
        min-width: 100%;
        margin-bottom: 20px;
    }
    .ab-col-heading {
        margin-bottom: 10px;
    }
}


/* --- CUSTOM CSS FOR CATEGORY SECTION --- */

.ab-category-section {
    padding: 10px 0;
}

.ab-category-card {
    background: #fff;
    background: #eeedef;
    border-radius: 0px;
    padding: 12px;
    margin: 10px;
/*    box-shadow: 0 6px 18px rgba(0,0,0,0.08);*/
    transition: all .3s ease;
    border:1px solid rgba(0,0,0,.2);
}

.ab-category-card:hover {
    transform: translateY(-5px);
}

.ab-image-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.ab-category-info {
    padding-left: 12px;
}

.ab-category-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ab-product-count {
    font-size: 13px;
    color: #777;
}

.ab-category-link {
    text-decoration: none;
    color: inherit;
}

.ab-category-section .slick-next::before, .ab-category-section .slick-prev::before {
    color: #3b7760;
}



/* --- CUSTOM CSS FOR PRODUCT GRID --- */

.ab-product-section {
   padding:20px 0px;
/*   background: #f5f5f5;*/
}

/*.ab-product-card {
    background-color: #fff;
    border: none;
    text-align: left;
    height: 100%;
}*/

.ab-product-card {
    background-color: #fff;
    border: none;
    text-align: left;
    height: 100%;
    border: 1px solid rgba(0,0,0,.2);
    padding: 10px;
    text-align: center;
}

.product-button {
    border: 1px solid #0b3738;
    width: 100%;
    padding: 7px 0;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, #0f4c5c 0%, #16697a 100%);
}

.product-button:hover {
    background: linear-gradient(135deg, #0f4c5c 0%, #16697a 100%);
}

.product-button a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.product-button:hover a {
    color: #fff;
}


/* ------------------------------------- */
/* Image Container and Hover Effect */
/* ------------------------------------- */

.ab-product-image-container {
    position: relative;
    overflow: hidden;
    /* Aspect ratio for the image container (match the image height) */
    padding-top: 130%; /* Adjust to match the height ratio of the product images */
    background-color: #f7f7f7; /* Light grey background for the image area */
}

.ab-product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease; /* Smooth transition for hover effect */
}

/* Hide secondary image by default */
.ab-secondary-image {
    opacity: 0;
}

/* Hover Effect: Hide primary, show secondary */
.ab-product-card:hover .ab-primary-image {
    opacity: 0;
}

.ab-product-card:hover .ab-secondary-image {
    opacity: 1;
}

/* ------------------------------------- */
/* Wishlist Icon */
/* ------------------------------------- */

.ab-wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    opacity: 1; /* Always visible like the image */
}

.ab-wishlist-icon:hover {
    color: #e3342f; /* Red hover for heart icon */
}

/* ------------------------------------- */
/* Product Details */
/* ------------------------------------- */

.ab-product-details {
    padding: 10px 0 0px 0;
}

.ab-product-price {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.ab-product-title {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
    /*min-height: 40px;*/
    font-weight: 600!important;

}

/* ------------------------------------- */
/* Color Swatches */
/* ------------------------------------- */

.ab-color-swatches {
    display: flex;
    gap: 5px;
}

.ab-swatch {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ab-swatch:hover {
    transform: scale(1.1);
}

.ab-swatch.active {
    border: 2px solid #000; /* Dark border for the active/selected color */
    transform: scale(1.05);
}


/* --- CUSTOM CSS FOR DUAL SECTION --- */

/* Reusing general accordion item style from previous answer */
.ab-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 0px !important;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.accordion-button {
    padding: 10px 10px;
    border-radius: 0;
}
.dual-section h3 {
    color: #1a1a2e;
}

.accordion-item:first-of-type .accordion-button {
     border-top-left-radius:0px;
     border-top-right-radius: 0px;
}

/* ------------------------------------- */
/* Testimonial Card Styling */
/* ------------------------------------- */

.testimonial-card {
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 0px;
    border-left: 5px solid #0a4d5c !important;
    height: 100%;
    border: 1px solid rgba(0,0,0,.1);
}

.quote-text {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.client-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: #00bcd4; /* Accent color for client name */
    margin: 0;
}

/* ------------------------------------- */
/* Carousel Customization */
/* ------------------------------------- */
.dual-section{
    padding:80px 0px;
    background: #fff;
}
#testimonialCarousel {
    padding: 0 0px; /* Add padding for controls visibility */
}

.testimonial-card {
    background-color: #f8f8f8;
    padding: 10px;
    border-left: 3px solid #000;
    margin: 5px;
    height: 100%!important;
    display: flex;
    flex-direction: column;
}

/* Hide default buttons and use custom styling */
#testimonialCarousel .carousel-control-prev, #testimonialCarousel .carousel-control-next {
    width: 5%; /* Narrower control area */
    opacity: 1;
    transition: opacity 0.3s;
}

#testimonialCarousel .carousel-control-prev-icon, #testimonialCarousel .carousel-control-next-icon {
    background-color: #1a1a2e; /* Darker background for controls */
    padding: 10px;
    border-radius: 50%;
    filter: invert(100%); /* Makes the icon white */
}

#testimonialCarousel .carousel-control-prev:hover, #testimonialCarousel .carousel-control-next:hover {
    opacity: 0.8;
}

#testimonialCarousel .carousel-control-prev {
    left: 0px;
    top: 45%;
    background: transparent;
    height:30px;
    width:30px;
}

#testimonialCarousel .carousel-control-next {
    right: 0px;
    top: 45%;
    background: transparent;
    height:30px;
    width:30px;
}

.testimonialCarousel .slick-prev:before, .testimonialCarousel .slick-next:before {
    color: #0a4d5c !important; 
    font-size: 25px !important;
}

 .testimonialCarousel .slick-next {
    right: 13px;
    top: -16px;
}
.testimonialCarousel .slick-prev {
    left: 88%;
    top: -16px;
}

/* Media Query for Mobile (Stacking Sections) */
@media (max-width: 992px) {
    /* On tablets and below, columns stack (12-col width for each) */
    .dual-section .col-lg-6 {
        margin-bottom: 30px;
    }
    
    /* Remove carousel padding on mobile */
    #testimonialCarousel {
        padding: 0;
    }

     .testimonialCarousel .slick-next {
    right: 13px;
    top: -16px;
}
.testimonialCarousel .slick-prev {
    left: 80%;
    top: -16px;
}
}


/* Base Styling */
        .blog-section {
            padding: 0px 0px 40px 0px;
            background-color: #f8f8f8; /* Light background for contrast */
        }

        .blog-section .section-title {
            text-align: center;
            font-size: 32px;
            color: #333;
            margin-bottom: 5px;
        }

        .blog-section .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #777;
            margin-bottom: 40px;
        }

        /* --- Blog Card Styling --- */

        .blog-section .blog-card {
            /* Ensures card fills the column and provides vertical separation */
            width: 100%; 
            margin: 10px; /* Space around the card inside the slick slide */
            background: #fff;
        }

        .blog-section .card-link {
            display: block;
            text-decoration: none;
            background-color: #fff;
            border-radius: 0px;
            overflow: hidden;
/*            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
            transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
            height: 100%; 
        }

        .blog-section .card-link:hover {
/*            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);*/
            transform: translateY(-5px); 
        }

        /* Image */
        .blog-section .card-image-wrapper {
            position: relative;
            overflow: hidden;
            padding-top: 66.66%; /* 3:2 Aspect Ratio */
        }

        .blog-section .card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-section .card-link:hover .card-image {
            transform: scale(1.05); 
        }

        /* Tag */
        .blog-section .card-tag {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: #007bff; /* Bootstrap Primary Color */
            color: #fff;
            padding: 4px 8px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 4px;
            z-index: 10;
        }

        /* Content */
        .blog-section .card-content {
            padding: 15px;
        }

        .blog-section .card-title {
            font-size: 18px;
            color: #333;
            margin-top: 0;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 44px;
        }

        .blog-section .card-excerpt {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-section .card-date {
            display: block;
            font-size: 12px;
            color: #999;
        }

        /* Slick Overrides for better visibility */
        .blog-section .slick-prev:before, .blog-section .slick-next:before {
            color: #0a4d5c !important; /* Blue arrows */
            font-size: 25px !important;
        }

.blog-section .slick-next {
    right: 17px;
    top: -16px;
}

.blog-section .slick-prev {
    left: 94%;
    top: -16px;
}

.blog_details_area .card{
    border-radius: 0px;
}

.blog_details_image{
    width:100%;
    height:400px;
    object-fit: cover;
}
.blog_details_header{
    color:#fff;
    background: #0a4d5c;
    border-radius: 0px !important;
}
.blog_search_btn{
    background: #e5b085;
    color:#000;
}

.blog_search_btn:hover{
    background: #e5b085;
    color:#000;
}

/* --- Custom Breadcrumb Section Styling --- */

.custom-breadcrumb-section {
    background-color:#f2f3f6; /* Light grey background for contrast */
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Ensure the breadcrumb list itself has no default margin/padding */
.custom-breadcrumb-section .breadcrumb {
    padding: 0;
    margin: 0;
    --bs-breadcrumb-divider: '/'; /* Change the divider to '>' */
    /* Alternatively, you can use: --bs-breadcrumb-divider: url("data:image/svg+xml,..."); */
}

/* 2. Individual Breadcrumb Items */
.custom-breadcrumb-section .breadcrumb-item {
    font-size: 14px;
    /* Increase spacing between items (default is usually too tight) */
    padding-right: 0px; 
}

/* 3. Link Styling (Non-active items) */
.custom-breadcrumb-section .breadcrumb-link {
    text-decoration: none;
    color: #495057; /* Dark grey for better readability */
    transition: color 0.2s ease-in-out;
    display: inline-flex; /* Align icon and text */
    align-items: center;
}

/* Link Hover Effect */
.custom-breadcrumb-section .breadcrumb-link:hover {
    color: #007bff; /* Primary blue color on hover */
}

/* 4. Home Icon Styling (if used) */
.custom-breadcrumb-section .bi-house-door-fill {
    margin-right: 5px;
    color: #007bff; /* Home icon color */
}

/* 5. Active Item Styling (Current Page) */
.custom-breadcrumb-section .breadcrumb-item.active {
    color: #007bff; /* Primary color to highlight the current page */
    font-weight: 600; /* Bold the current page name */
}

/* Optional: Make the divider color match the non-active text */
.custom-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: #999; /* Lighten the divider color */
    padding-right: 10px;
    padding-left: 5px;
}

/* --- Sub-Category Section Styling --- */

.sub-category-section {
    padding: 10px 0px 0px 0px;
    background-color:transparent; /* White background */
}
.sub-category-section .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: 0px;
    margin-right: auto;
}

/* --- Sub-Category Card Styling --- */

.sub-card {
    /* Slick uses width for columns, so no need for explicit width here */
    padding: 8px; /* Space between the cards in the slider */
}

.sub-card-link {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border-radius: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,.2);
}

.sub-card-link:hover {
    background-color: #e9ecef; /* Slightly darker on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sub-card-content {
    display: flex; /* Enables left-right layout */
    align-items: center; /* Vertically center the content */
    padding: 10px;
}

/* Left Side: Circle Image */
.sub-card-image-wrapper {
    flex-shrink: 0; /* Prevents image from shrinking */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px; /* Space between image and text */
    border: 2px solid #007bff; /* Primary color border for emphasis */
}

.sub-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side: Text Info */
.sub-card-info {
    flex-grow: 1; /* Allows text to take up remaining space */
}

.sub-category-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
    /* Truncate long names */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-product-count {
    display: block;
    font-size: 12px;
    color: #6c757d; /* Muted color for the count */
    font-weight: 500;
}

/* Slick Arrow Customization (optional) */
.sub-category-section .slick-prev:before, .sub-category-section .slick-next:before {
    color: #0a4d5c !important; 
    font-size: 30px !important;
}

  .sub-category-section .slick-next {
    right: 20px;
    top: -16px;
}
.sub-category-section .slick-prev {
    left: 93%;
    top: -16px;
}

@media (min-width:320px) and (max-width:575px){
    .sub-category-section .slick-next {
    right: 20px;
    top: -16px;
}
.sub-category-section .slick-prev {
    left: 230px;
    top: -16px;
}
.sub-category-section {
    background-color: #f5f5f5;
}
.ab-product-section {
    padding: 20px 0px;
}
.ab-heading {
    font-size: 17px!important;
    line-height: 25px;
}
.ab-main-content {
     padding: 20px 0px 0px 0px;
}
.ab-logo-text-block {
     margin-bottom: 0px;
}
.ab-link-columns {
    gap: 0px;
}
.main-image-wrapper img {
    height: 100% !important;
}
.product-details-section .product-name {
    font-size: 20px!important;
}
.product-details-section .current-price {
    font-size: 25px !important;
}
.ab-category-heading {
    font-size: 20px;
}
.ab-category-name {
    font-size: 12px;
}

}


/*details page*/
.product-details-section {
    padding: 40px 0px;
}

/* ==================== Image Gallery ==================== */
.product-gallery {
    background: #fff;
    height: 480px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90px;
}

.thumbnail {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.thumbnail:hover {
    border-color: #0a4d5c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 77, 92, 0.2);
}

.thumbnail.active {
    border-color: #0a4d5c;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(10, 77, 92, 0.15);
}

.main-image-wrapper {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.main-image-wrapper img {
    /*height: 100%;*/
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ==================== Product Features Section ==================== */
.product-features-section {
    background: #f2f3f6;
}

.feature-box {
    padding: 5px 5px 20px 5px;
    /* border-radius: 10px; */
    transition: all 0.3s ease;
    /* background: #f8f9fa; */
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 12px;
    display: inline-block;
}

.feature-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* ==================== Product Info & Text ==================== */
.product-details-section .product-name {
    font-size: 30px;
    font-weight: 700;
    color: #212529;
}

.product-category {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.product-brand {
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

/* ==================== Price ==================== */
.current-price {
    color: #dc3545 !important;
    font-size: 25px;
}

/* ==================== Options (Color & Size Swatches) ==================== */
.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.color-swatch.active {
    border-color: #0a4d5c;
    box-shadow: 0 0 0 3px rgba(10, 77, 92, 0.2);
    transform: scale(1.1);
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 3px rgba(0,0,0,0.8);
}

.size-swatch {
    min-width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.size-swatch:hover {
    border-color: #0a4d5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 77, 92, 0.2);
}

.size-swatch.active {
    background-color: #0a4d5c;
    color: #fff;
    border-color: #0a4d5c;
    box-shadow: 0 4px 12px rgba(10, 77, 92, 0.3);
}

/* ==================== Action Buttons ==================== */
.btn-addto-cart {
    border: 1px solid rgba(0,0,0,.5);
    background: #0a4d5c;
    color: #fff;
    border-radius: 0px;
    /*padding: 12px 28px;*/
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-addto-cart:hover {
    background: #083d49;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 77, 92, 0.3);
}

.btn-buy-now {
    border: 1px solid rgba(0,0,0,.5);
    background: #e5b085;
    color: #000;
    border-radius: 0px;
    /*padding: 12px 28px;*/
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: #d9a070;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 176, 133, 0.4);
}

/* ==================== Contact Options ==================== */
.contact-options {
    background-color: #f8f9fa;
    border: 1px dashed #ced4da !important;
}

.contact-options h5 {
    color: #007bff;
}

@media (max-width: 480px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    .product-gallery {
    background: #fff;
    height: 100%;
}
.product-features-section {
    display: none;
}
}
/*details page*/



/*search*/
.search-wrapper {
    position: relative;
}

.search-result-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: none;
    z-index: 99999;
}

.search-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #000;
}

.search-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}

.search-item:hover {
    background: #f7f7f7;
}

/*search*/


/*user icon*/
.user-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 35px;
    background: #fff;
    width: 150px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    display: none;
    z-index: 999;
    padding: 10px 0;
}

.user-dropdown a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    transition: background .2s;
}

.user-dropdown a:hover {
    background: #f5f5f5;
}
/*user icon*/

/*login register*/
.login-section {
    display: flex;
    align-items: center;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #0a4d5c;
}

/*.login-icon {
    font-size: 80px;
    color: #667eea;
}*/

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #667eea;
}

.form-control {
    border-left: none;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: none;
}

.input-group:focus-within .input-group-text {
    border-color: #667eea;
}

.btn-primary {
    background:#0a4d5c;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background:#0a4d5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

#togglePassword {
    border-left: none;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-icon {
        font-size: 60px;
    }
    
    .login-title {
        font-size: 24px;
    }
}
/*login register*/


/* Icon box styling */
.why-choose-us .icon-box {
    background: linear-gradient(135deg, #0f4c5c 0%, #16697a 100%);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px; /* Slightly rounded corners */
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Section background color */
.why-choose-us {
    background-color: #f9f9f9;
    padding:20px 0px;
}

/* Text adjustments */
.why-choose-us h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}


.ab-category-heading {
/*    font-family: "Montserrat", sans-serif;*/
    font-weight: 400;
}

   .cart-item-details {
    flex: 1;
}



/*new section for hero*/
/* Hero Section Height */
.hero-section {
    height: 100%;
}

/* Ensure images cover the area properly */
.hero-section .object-fit-cover {
    object-fit: cover;
}

/* Fix heights for desktop */
@media (min-with: 992px) {
    .hero-section .hero-section .row {
        height: 450px;
    }
    .hero-section .carousel, .hero-section .carousel-inner, .hero-section .carousel-item {
        height: 100%;
    }
}

/* Mobile adjustments */
@media (min-wdith:320px) and (max-width: 575px) {
    .hero-section .row {
        height: auto;
    }
    .hero-section .carousel-item img {
        height: 100% !important;
    }
    .hero-section .col-lg-4 .h-50 {
        height: 200px !important;
        margin-top: 10px;
    }
}

/* Banner Hover Effect */
.hero-section .banner-card img {
    transition: transform 0.5s ease;
}
.hero-section .banner-card:hover img {
    transform: scale(1.05);
}

/* Customizing Carousel Controls */
.hero-section .carousel-control-prev-icon, .hero-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}
/*new section for hero*/


.header-section h4{
  background-color: #f2f3f6;
  padding: 10px 10px;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.cateogry-info-section{
    background-color: #f2f3f6;
    padding:10px 10px;
}
.cateogry-info-section h4 {
    font-size:20px;
    position: relative;
}

/* "View All" button style */
.view-all-btn {
    color: #c49a7c; /* Apnar theme er brownish color */
    font-size: 14px;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #a07a5d;
    text-decoration: underline !important;
}


/*best selling*/
 .best-sellers-section {
            margin: 0 auto;
            padding: 0 15px;
        }


        /* Banner Card */
        .best-sellers-section .banner-card {
           /* background: linear-gradient(135deg, #ffd93d 0%, #ffb93d 100%);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            color: #333;*/
            position: relative;
            overflow: hidden;
        }

         .best-sellers-section .banner-card img{
            width:100%;
            height:100%;
         }

         .banner-image {
            height: 410px !important;
            border-radius: 10px;
        }

      /*  .best-sellers-section .banner-card::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }*/


        /*.best-sellers-section .banner-image {
            width: 100%;
            max-width: 280px;
            height: auto;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }*/

        /* Product Card */
        .best-sellers-section .product-card {
            background: white;
/*            border-radius: 15px;*/
/*            padding: 20px;*/
            margin: 0 10px;
/*            box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
            transition: all 0.3s ease;
            position: relative;
        }

        .best-sellers-section .product-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

/*
        .best-sellers-section .product-image-wrapper {
            text-align: center;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .best-sellers-section .product-image {
            width: 100%;
            object-fit: contain;
        }*/


        /* Slick Slider Customization */
        .best-sellers-section .slick-prev, .best-sellers-section .slick-next {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .best-sellers-section .slick-prev {
            left: -20px;
        }

        .best-sellers-section .slick-next {
            right: -20px;
        }

        .best-sellers-section .slick-prev:before, .best-sellers-section .slick-next:before {
            color: #333;
            font-size: 20px;
            opacity: 1;
        }

        .best-sellers-section .slick-prev:hover, .best-sellers-section .slick-next:hover {
            background: #00d4ff;
        }

        .best-sellers-section .slick-prev:hover:before, .best-sellers-section .slick-next:hover:before {
            color: white;
        }

        @media (max-width: 991px) {
            .best-sellers-section .banner-card {
                margin-bottom: 30px;
            }
        }
/*best selling*/


