.featured-banners {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .banner-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.trending-categories {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.category-item {
    text-align: center;
    text-decoration: none;
    color: #333;
}

    .category-item img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

.latest-collections {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.collection-item {
    text-align: center;
}

    .collection-item img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .collection-item h3 {
        font-size: 18px;
        margin: 10px 0 5px;
    }

    .collection-item p {
        color: #666;
        font-size: 14px;
    }

.latest-collections {
    position: relative;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-slide {
    width: auto;
}

.card-body {
    padding: 10px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.product-description {
    font-size: 13px;
    color: #555;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

:root {
    --swiper-navigation-size: 36px !important;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 0 1rem 1rem 1rem;
}

.scroll-card {
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-shrink: 0;
    width: 170px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .scroll-card img {
        width: 100%;
        height: 220px; /* or adjust to your liking */
        object-fit: cover;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        background-color: #f2f2f2; /* fallback background */
    }

.scroll-container::-webkit-scrollbar {
    display: none;
}

.card-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #555;
}


/*Navigation menu*/
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #0d6efd;
    }

.dropdown-menu {
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
}

.navbar-brand i {
    color: #0d6efd;
}

.navbar-toggler {
    border: none;
    outline: none;
    font-size: 1.25rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 1050;
    border-right: 1px solid #ddd;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}

    .mobile-drawer.open {
        left: 0;
    }

.drawer-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
}

.drawer-body {
    padding-top: 0;
}

.nav-link {
    font-size: 1rem;
}

    .nav-link:hover {
        color: #0d6efd;
        background-color: rgba(13, 110, 253, 0.05);
        border-radius: 0.25rem;
    }
    .nav-link[aria-expanded="true"] .fa-chevron-down {
        transform: rotate(180deg);
        transition: transform 0.2s ease-in-out;
    }
.p-t3 {
    padding-top: 3rem !important;
}
/*End*/

/* Custom Swiper Arrows */
/* Better Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background-color: #468ffa99;
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    top: 45% !important;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10 !important;
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
        font-weight: bold;
    }



@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
