/* Custom CSS for Next Shipping */

:root {
    --lando-yellow: #d2ff00;
    --lando-black: #000000;
    --lando-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--lando-black);
    color: var(--lando-white);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FIX: helmet-grid-item-img-helmet-w missing from webflow.css
   The wrapper has no width/height causing images to not display
   ═══════════════════════════════════════════════════════════════════════════ */
.helmet-grid-item-img-helmet-w {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure helmet image fills the wrapper */
.helmet-grid-item-img-helmet-w .helmet-grid-item-img-helmet {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NOTE: Rive canvases start with opacity 0 and become visible via ScrollTrigger.
   This is intentional - they animate in when scrolled into view.
   If you see opacity:0 in debug, scroll to that section to trigger the animation.
   ═══════════════════════════════════════════════════════════════════════════ */

/* WebGL Canvas (added by Renderer.js to .gl-wrap) */
.gl-wrap canvas.gl,
.gl-wrap .gl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}

.css-main {
    position: relative;
    z-index: 1;
}
