body {
    background-color: #FDFBF7;
    color: #034C53;
    overflow-x: hidden;
}

/* Solid Borders */
.b-solid {
    border: 2px solid #034C53;
}

.b-t {
    border-top: 2px solid #034C53;
}

.b-b {
    border-bottom: 2px solid #034C53;
}

.b-l {
    border-left: 2px solid #034C53;
}

.b-r {
    border-right: 2px solid #034C53;
}

/* Loader Styles */
.curtain {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: #034C53;
    z-index: 100;
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.curtain-top {
    top: 0;
    transform-origin: top;
}

.curtain-bottom {
    bottom: 0;
    transform-origin: bottom;
}

.loader-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    transition: opacity 0.5s ease;
}

.loaded .curtain-top {
    transform: translateY(-100%);
}

.loaded .curtain-bottom {
    transform: translateY(100%);
}

.loaded .loader-logo {
    opacity: 0;
    pointer-events: none;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

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

/* Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Professional Marquee Animation */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    padding-left: 4rem;
    /* Spacing between sets */
    width: max-content;
    animation: scroll-loop 40s linear infinite;
}

/* Pause on hover for better UX */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-loop {
    from {
    transform: translateX(0);
    }

    to {
    transform: translateX(-100%);
    }
}

/* Mobile Product Images Square Ratio */
@media (max-width: 767px) {
    #products .overflow-hidden:has(> img) {
    height: auto !important;
    aspect-ratio: 1.25 / 1 !important;
    }

    #products img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    }
}