/* Custom CSS for LUMIÈRE High-End Editorial Fashion Store */

/* Glassmorphic Header Navigation */
.glass-nav {
    background-color: rgba(249, 249, 249, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(198, 198, 198, 0.25);
}

/* Custom Hide Scrollbar Utility */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Subtle image hover scaling & satin smooth transitions */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-zoom-container:hover img {
    transform: scale(1.06);
}

/* Custom Scrollbar for Drawer */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #F9F9F9;
}
::-webkit-scrollbar-thumb {
    background: #C6C6C6;
}
::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Zero Radius Sharp Corners Constraint */
button, input, select, div {
    border-radius: 0px !important;
}
