@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital@0;1&family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,500;1,500&family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    font-family: "Exo 2", serif;
    font-weight: 300;
}

body {
    font-family: "Exo 2", serif;
    overflow-x: hidden;
}

@media screen and (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }
}

button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

.zoro-container {
    overflow-x: hidden;
}

.category-container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1600px;
    margin: 0 auto;
    height: 135px;
}


/* Navbar styles Starts*/
.navbar-custom {
            background-color: #ff5b00;
            padding: 0px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .navbar-custom .navbar-brand,
        .navbar-custom .nav-link,
        .navbar-custom .navbar-text {
            color: white;
            transition: color 0.3s ease;
        }

        .navbar-custom .navbar-brand img {
            margin-right: 10px;
            width: 150px;
        }

        .navbar-custom .nav-link:hover {
            color: black;
        }

        .navbar-custom .dropdown-menu {
            background-color: white;
            border: 1px solid #ff5b00;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            display: block;
        }

        .navbar-custom .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .navbar-custom .dropdown-item {
            color: black;
            padding: 10px 20px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .navbar-custom .dropdown-item:hover {
            background-color: #ff5b00;
            color: white;
        }

        .navbar-custom .form-control {
            background-color: white;
            color: black;
            border: 1px solid #ff5b00;
            border-radius: 20px;
            padding: 8px 20px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-custom .form-control:focus {
            border-color: #ff8c42;
            box-shadow: 0 0 8px rgba(255, 91, 0, 0.5);
        }

        .navbar-custom .form-control::placeholder {
            color: black;
            opacity: 0.7;
        }

        /* Align all elements except logo to the right */
        .navbar-custom .navbar-collapse {
            justify-content: flex-end;
        }

        .navbar-custom .navbar-nav.mr-auto {
            margin-right: 0 !important;
        }

        /* Hide Navbar on Small Devices */
        @media (max-width: 991.98px) {
            .navbar-custom {
                display: none;
            }
        }

/* Desktop navbar styles end */

/* Bottom Navbar */

.footer-navbar {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

.toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.toolbar-inner a {
    text-align: center;
    flex: 1;
    color: #ff5b00;
    text-decoration: none;
}

.toolbar-inner i {
    font-size: 1.5rem;
}

.toolbar-inner small {
    display: block;
    font-size: 0.8rem;
    margin-top: 4px;
}
/* Bottom Navbar ends */



.mob-navbar {
    height: 60px;
    background-color: #ffffff;
    position: relative; 
    z-index: 1100;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
/* navbar ends */

.scroll-container {
    display: flex;
    transition: transform 0.3s ease;
    overflow-x: scroll;
    white-space: nowrap;
    scroll-behavior: smooth;
}

/* Hide the scrollbar */
.scroll-container::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    width: 120px;
    text-align: center;
    white-space: nowrap;
    text-align: center;
    margin-top: 16px;
}
.category-item img {
    width: 85px;
    height: 80px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .category-item img {
        max-width: 100px;
    }
}

@media (max-width: 2000px) {
    .category-item img {
        max-width: 400px;
    }
}

.category-item p {
    margin-top: 10px;
    font-size: 14px;
}
.scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    display: none;
}
#scroll-left {
    left: 0px;
    /* margin-left: -35px; */
}

#scroll-right {
    right: 0px;
    /* margin-right: -45px; */
}
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
}
.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Category items section starts */

/* fashion starts */

.content-container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.fashion-container {
    padding: 15px;
    min-height: 100%;
}

.fashion-container .row {
    height: 100%;
}

.sidebar {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.fashion-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.fashion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fashionadd-banner {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.fashionadd-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fashionadd-banner-text {
    position: absolute;
    top: 44%;
    left: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .left-offers{
        padding: 0;
    }

    .right-offers{
        padding: 0;
    }
}

/* Extra Small (xs) */
@media (max-width: 575.98px) {
    .sidebar h3 {
        font-size: 1rem;
    }

    .fashionadd-banner-text h2 {
        font-size: 1.25rem;
    }

    .fashionadd-banner-text p {
        font-size: 0.8rem;
    }

    .fashion-item {
        aspect-ratio: 1;
    }
}

/* Small (sm) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .sidebar h3 {
        font-size: 1.3rem;
    }

    .fashionadd-banner-text h2 {
        font-size: 1.5rem;
    }
}

/* Medium (md) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .fashion-item {
        aspect-ratio: 1;
    }
}

/* Large (lg) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .fashionadd-banner-text h2 {
        font-size: 1.75rem;
    }
}

/* Extra Large (xl) */
@media (min-width: 1200px) {
    .fashionadd-banner-text h2 {
        font-size: 2rem;
    }
}
/* fashion ends */

/* Main Carousel Starts */
.carousel-container {
    padding: 0 15px;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

/* Default: Large Screens */
.carousel-inner img {
    width: 100%;
    height: 500px; /* Fixed height for large screens */
    object-fit: cover;
}

/* Medium Screens (Tablets) */
@media (max-width: 1080px) {
    .carousel-inner img {
        height: 400px; /* Slightly reduced height */
        object-fit: cover;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
    .carousel-inner img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: 23px;
        padding: 10px;
    }
}

@media (max-width: 425px) {
    .carousel-inner img {
        height: 180px;
        width: 100%;
        object-fit: cover;
        border-radius: 23px;
        padding: 10px;
    }
}

/* Main Carousel Ends */



/* deal Starts */

.deals-wrapper {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.deals-main-container {
    width: 100%;
    padding: 15px;
}

.deals-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

/* Column Styles */
.deals-column {
    flex: 0 0 33.333%;
    padding: 15px;
    width: 100%;
}

.deals-block {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

/* Title Styles */
.deals-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.deals-separator {
    height: 2px;
    background: #ebeef5;
    margin-bottom: 20px;
}

/* Grid Layout */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.deals-item {
    width: 100%;
}

/* Card Styles */
.deal-card {
    border: 1px solid #ebeef5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-image {
    width: calc(100% - 20px); 
    height: 160px;
    object-fit: contain;
    display: block;
    background: #fff8f3;
    margin: 10px;
    border-radius: 8px;
    padding: 5px;
    box-sizing: border-box; 
}


.deal-details {
    padding: 15px;
}

/* Tag Styles */
.deal-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.deal-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Description Styles */
.deal-description {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Action Area Styles */
.deal-action {
    padding: 15px;
    border-top: 1px solid #ebeef5;
    text-align: center;
}

.deal-link {
    color: #ff5b00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.deal-link:hover {
    color: #ff7f33;
}

/* Tablet Styles */
@media screen and (max-width: 1200px) {
    .deals-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .deals-column {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .deals-column:nth-child(3) {
        grid-column: 1 / -1; /* Makes the third column span full width */
    }

    .deals-block {
        height: auto;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .deals-row {
        display: block;
    }

    .deals-column {
        margin-bottom: 20px;
    }

    .deals-column:last-child {
        margin-bottom: 0;
    }
    
    .deals-grid {
        gap: 15px;
    }
    
    .deal-image {
        height: 140px;
    }
}

@media screen and (max-width: 576px) {
    .deals-wrapper {
        padding: 10px;
    }

    .deals-main-container {
        padding: 10px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .deal-card {
        border-radius: 6px;
    }

    .deal-image {
        height: 120px;
    }

    .deal-details {
        padding: 10px;
    }

    .deal-description {
        font-size: 12px;
    }

    .deal-action {
        padding: 10px;
    }

    .deal-link {
        font-size: 12px;
    }
}

.deal-card {
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/* deal Ends */



/* Avail Best Offers & Discounts Starts */

 .promo-wrapper {
            padding: 15px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .promo-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 2px solid #ebeef5;
        }

        .promo-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0;
        }

        .promo-viewall {
            color: #ff5b00;
            text-decoration: none;
            font-weight: 500;
        }

        .promo-viewall:hover {
            color: #ff7f33;
            text-decoration: none;
        }

        /* Reduce gutters between cards */
        .promo-row {
            margin-left: -5px;
            margin-right: -5px;
        }

        .promo-col {
            padding-left: 5px;
            padding-right: 5px;
            margin-bottom: 10px;
        }

        .promo-card {
            border: 1px solid #ebeef5;
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            background-color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        .promo-image-container {
            padding: 10px;
            background-color: #fff;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .promo-image {
            max-width: 100%;
            max-height: 140px;
            object-fit: contain;
        }

        .promo-category {
            list-style: none;
            padding: 10px 10px 0;
            margin-bottom: 0;
        }

        .promo-tag {
            display: block;
            background: #f8f9fa;
            color: #666;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .promo-content {
            padding: 0 10px 10px;
        }

        .promo-text {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            line-height: 1.4;
            margin-bottom: 0;
        }

        .promo-footer {
            padding: 12px;
            border-top: 1px solid #ebeef5;
            text-align: center;
        }

        .promo-btn {
            color: #ff5b00;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: inline-block;
            padding: 6px 12px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .promo-btn:hover {
            background-color: rgba(255, 91, 0, 0.1);
            text-decoration: none;
            color: #ff5b00;
        }

         /* Responsive breakpoints */
        /* Mobile (< 576px) */
        @media (max-width: 575.98px) {
             .promo-card{
                border: none;
                border-radius: none;          
             }
            .promo-wrapper {
                padding: 8px;
            }

            .promo-header {
                margin-bottom: 8px;
            }

            .promo-title {
                font-size: 18px;
            }

            .promo-image-container {
                height: 215px;
            }

            .promo-image {
                max-height: 200px;
            }

            .promo-text {
                font-size: 12px;
                margin-left: 4px;
            }
        
            .promo-btn{
                font-size: 16px;
                padding: 4px 4px;
            }
            .promo-col {
                margin-bottom: 8px;
            }

            .promo-footer{
                border-top: none;
                border: 1px solid #ebeef5;
                border-radius:30px;
                margin: 8px;
                padding: 0px;
            }

            /* Tighter gutters for mobile */
            .promo-row {
                margin-left: -3px;
                margin-right: -3px;
            }

            .promo-col {
                padding-left: 3px;
                padding-right: 3px;
            }
        }

        /* Small tablets (576px - 767px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .promo-wrapper {
                padding: 10px;
            }

            .promo-title {
                font-size: 20px;
            }

            .promo-image-container {
                height: 120px;
            }

            .promo-image {
                max-height: 100px;
            }

            .promo-col {
                margin-bottom: 10px;
            }

            /* Slightly tighter gutters for small tablets */
            .promo-row {
                margin-left: -4px;
                margin-right: -4px;
            }

            .promo-col {
                padding-left: 4px;
                padding-right: 4px;
            }
        }

        /* Medium tablets (768px - 991px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .promo-wrapper {
                padding: 12px;
            }

            .promo-title {
                font-size: 22px;
            }

            .promo-image-container {
                height: 140px;
            }

            .promo-image {
                max-height: 120px;
            }
        }

        /* Large tablets and small desktops (992px - 1199px) */
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .promo-image-container {
                height: 150px;
            }

            .promo-text {
                font-size: 13px;
            }
        }
/* Avail Best Offers & Discounts Ends */

/* FOOTER STARTS */
.footer-body {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 10px; 
}


.footer-body .container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .footer-body .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .footer-body .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .footer-body .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .footer-body .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .footer-body .container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .footer-body .container {
        max-width: 1500px;
    }
}

@media (min-width: 1920px) {
    .footer-body .container {
        max-width: 1800px;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icons a {
    color: #ffffff;
    font-size: clamp(12px, 1.5vw, 14px); 
    width: clamp(28px, 3vw, 32px); 
    height: clamp(28px, 3vw, 32px); 
    line-height: clamp(26px, 3vw, 30px); 
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Description */
.footer-description {
    font-size: clamp(10px, 1.5vw, 12px); 
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

/* Links */
.footer-links {
    margin-top: 20px; 
}

.link-column {
    text-align: center;
    padding: 0 10px; 
}

.link-column h5 {
    margin-bottom: 10px;
    font-size: clamp(12px, 1.5vw, 14px); 
    text-transform: uppercase;
    color: #ffffff;
}

.link-column a {
    color: #ecf0f1;
    display: block;
    margin: 6px 0; 
    font-size: clamp(10px, 1.5vw, 12px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: #ff5b00;
    text-decoration: none;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px; 
    padding-top: 10px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: clamp(10px, 1.5vw, 12px);
    margin: 0;
}

.payment-icons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons img {
    width: clamp(30px, 4vw, 40px);
    height: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .footer-body {
        padding: 15px 10px;
    }

    .link-column {
        text-align: center;
        margin-bottom: 15px; 
    }

    .payment-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .social-icons {
        gap: 6px; 
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (min-width: 2000px) {
    .footer-body {
        padding: 30px 15px; 
    }

    .social-icons a {
        font-size: 14px; 
        width: 32px; 
        height: 32px; 
        line-height: 30px;
    }

    .footer-description,
    .link-column a,
    .copyright p {
        font-size: 12px; 
    }

    .link-column h5 {
        font-size: 14px;
    }
}
/* FOOTER ENDS */





/* VIEW ALL PRODUCT PAGE STARTS*/

/* VIEW ALL PRODUCT PAGE ENDS*/
