/* body {
    background-image: url(/public/img/ROB_END\ PAGE_BG.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

body {
    /* Mobile Background (Default) */
    background-color: #ffff;
}

/* Hide scrollbar for all browsers */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Body scrollbar hiding */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#mobile-drawer {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

#mobile-drawer.open {
    transform: translateX(0);
}

/* Hide body content when search overlay is open to prevent scrolling */
.no-scroll {
    overflow: hidden;
}
.artist-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}
.product-card {
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
}
.scroll-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}
.scroll-container > div {
    display: flex;
    min-width: min-content;
}

/* Hide scrollbar for tabs */
.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hero Swiper Hover Effects */
.hero-swiper-container:hover .hero-nav-prev,
.hero-swiper-container:hover .hero-nav-next {
    opacity: 1 !important;
}

/* Mobile: Always show navigation arrows */
@media (max-width: 640px) {
    .hero-nav-prev,
    .hero-nav-next {
        opacity: 1 !important;
    }
}

/* Hero Pagination Dots */
.hero-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-pagination .swiper-pagination-bullet,
.hero-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 4px !important;
    opacity: 1 !important;
}

.hero-pagination .swiper-pagination-bullet-active,
.hero-pagination-bullet-active {
    width: 24px !important;
    height: 8px !important;
    border-radius: 4px !important;
    background-color: rgba(255, 255, 255, 1) !important;
}
.section-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
@media (max-width: 640px) {
    .section-header {
        background-attachment: scroll;
    }
}
.section-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.466);
    backdrop-filter: blur(150px);
    -webkit-backdrop-filter: blur(150px);
    z-index: 1;
}
.section-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}
.section-header > * {
    position: relative;
    z-index: 3;
}
