model-viewer {
    --poster-color: transparent;
    outline: none;
}

#marquee-container span {
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes liquid-wave {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

.shimmer-wave {
    background: linear-gradient(
        90deg,
        #18660E 0%,
        #18660E 40%,
        #4ade80 50%,
        #18660E 60%,
        #18660E 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquid-wave 4s linear infinite;
}

.model-glow {
    position: relative;
}
.model-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(24,102,14,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

h1 {
    text-transform: uppercase;
}

.full-width-scroller {
    height: 52px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.scroll-item {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transform: translateY(-12px);
    animation: slide-down-fade 24s infinite ease-in-out;
    width: 100%;
    display: flex;
    align-items: center;
}

.scroll-item:nth-child(1) { animation-delay: 0s; }
.scroll-item:nth-child(2) { animation-delay: 8s; }
.scroll-item:nth-child(3) { animation-delay: 16s; }

@keyframes slide-down-fade {
    0% { opacity: 0; transform: translateY(-12px); }
    5%, 30% { opacity: 1; transform: translateY(0); }
    35%, 40% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; }
}

.spread-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

/* Marquee Swiper — linear continuous scroll */
.marquee-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Swiper navigation buttons */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border: 1px solid rgba(113, 113, 122, 0.5);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.product-swiper .swiper-button-prev:hover,
.product-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.65);
}
.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
    font-size: 13px !important;
    color: white;
    font-weight: 700;
}
