/* ============================================================ 
   LUXURY NEW ARRIVALS BANNER
   ============================================================ */
.new-arrivals-scroll {
    overflow: hidden !important;
    width: 100%;
}

.new-arrivals-track {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.na-banner-card {
    height: 320px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.na-banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.na-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.na-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.na-banner-text {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #fff;
    max-width: 75%;
}

.na-banner-title {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.na-banner-weight {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.na-banner-btn {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #ed2d3d;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 15px rgba(237, 45, 61, 0.3);
    transition: all 0.3s ease;
}

.na-banner-btn:hover {
    background: #d62837;
    transform: scale(1.05);
}

.na-banner-logo-box {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.na-banner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .na-banner-card {
        height: 280px;
    }

    .na-banner-title {
        font-size: 18px;
    }
}

/* Mobile view only */
@media (max-width: 764px) {
    .px-5 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    /* Occasion buttons hidden on mobile */
    .occ-btn {
        display: none !important;
    }

    /* Ensure swipers work correctly */
    .occasionsSwiper,
    .productCategorySwiper,
    .subCategorySwiper,
    .new-arrivals-scroll {
        overflow: hidden !important;
    }
}
@media (max-width: 576px) {
    .occasions-section {
        margin-top: -84px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.for-category-section {
        margin-top: 0px !important;
    }
}