body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Google Sans Code', monospace;
    color: white;
    overflow-x: hidden;
}

/* VIDEO */
#bg-video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

/* ENTER */
#tap-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 9999;
}

/* LOGO */
#main-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    opacity: 0;
    z-index: 5;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

/* MAIN GALLERY */
#image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 2rem;
    position: relative;
    z-index: 2;

    opacity: 0;
    pointer-events: none;

    transition: opacity 1.5s ease;
}

#image-gallery.active {
    opacity: 1;
    pointer-events: auto;
}

#image-gallery img {
    width: 85%;
    max-width: 500px;
    height: auto;
    cursor: pointer;
    display: block;
}

/* PRODUCT VIEW */
#product-view {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3;

    background: transparent;
    overflow: hidden;

    opacity: 0;
    transition: opacity 0.8s ease;
}

#product-view.active {
    opacity: 1;
}

.product-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 50px;
}

/* PRODUCT IMAGES */
.product-images {
    width: 60%;
    height: 80vh;
    position: relative;
}

.product-images img {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    opacity: 0;
    transition: opacity 1s ease;
}

.show {
    opacity: 1 !important;
}

/* PRODUCT TEXT */
.product-info {
    width: 38%;
    text-align: center;
    background: transparent;
}

/* BACK BUTTON */
#back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;

    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 600px) {
    .product-layout {
        flex-direction: column;
    }

    .product-images {
        width: 100%;
        height: 50vh;
    }

    .product-info {
        width: 90%;
    }
}