@import url("https://fonts.googleapis.com/css?family=Comme:300,600,500,400,700");

@font-face {
    font-family: 'Comme';
    src: url('/fonts/Comme-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    scroll-padding-top: 90px; /* Prevent content from hiding under fixed navbar */
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #A99AE3;
    border-radius: 3px;
}

/* Mobile menu animation */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

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

.shadow-drop-shadow-300 {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.carousel-container {
    scroll-behavior: smooth;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .product-image {
        height: 400px;
    }
}

/* Make the navbar fixed */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}