/* Google Web Fonts & Custom Styles */
body {
    font-family: 'Noto Sans KR', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Swiper custom 3D effects */
.jikoo-category-3d-swiper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.jikoo-category-3d-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 280px;
    height: 380px;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jikoo-category-3d-swiper .swiper-slide-active {
    box-shadow: 0 20px 40px rgba(0, 82, 155, 0.2);
}

/* Toast Container pointer-events fixed */
#toast-container {
    pointer-events: none;
}
#toast-container > div {
    pointer-events: auto;
}

/* Interactive elements styles */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-6px);
}
