
body {
    padding: 0;
    margin: 0;
    background-color: #f8fbff;
}

.product-container {
    display: grid;
    flex-direction: row; 
    gap: 50px;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}


.product-info-panel {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discover-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 35px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    font-family: copperplate;
}

.product-item:hover .discover-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.discover-button:active {
    transform: scale(0.98);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    object-fit: cover;
}

.category-label {
    font-size: 26px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 80px;
    color: #1a1a1a;
    margin-top: 0px;
}

h1 {
    font-size: 51px;
}

p.current-price {
    font-size: 22px;
}

.editorial-ticker-container {
    width: 100vw;
    height: 85px;
    min-height: 120px;
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 90;
}



.buy-zone {
    margin-top: auto; 
    padding-top: 50px;
    border-top: 1px solid #eee; 
}

.price-display {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 300;
    font-family: copperplate;
    color: #0023ad;
}

.mobile-name {
    display: none;
}

.product-info-panel {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    min-width: 0; 
    overflow-wrap: break-word; 
    word-wrap: break-word;
}

.short-desc {
    max-width: 100%; 
    white-space: normal; 
    overflow-wrap: anywhere; 
    line-height: 1.6;
    font-size: 1rem;
}


video {
    height: 850px;
    object-fit: cover;
}



  .carousel-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
}

#mainDisplayImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The Flash/Blink Effect */
.flash-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.332);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.flash-active {
    animation: gentleBlink 0.7s ease-in-out;
}

@keyframes gentleBlink {
    0% { opacity: 0; }
    50% { opacity: 1; } /* Fully white at the midpoint */
    100% { opacity: 0; }
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(208 0 0 / 0%);
    border: none;
    font-size: 24px;
    padding: 120px 15px;
    cursor: pointer;
    z-index: 0;
    transition: 0.3s;
}

.nav-btn:hover { background: #ffffff00; }
.prev { left: 0; }
.next { right: 0; }

/* Thumbnails */
.thumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.carousel-thumbnails {
    display: flex;
    gap: 10px;
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    border: 1px solid transparent;
    transition: 0.3s;
}

.thumb.active {
    opacity: 1;
    border-color: #000;
}

.main-image-container {
    height: 100%;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    overflow-wrap: anywhere;
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 24px;
}
@media (max-width: 768px) {

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    overflow-wrap: anywhere;
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 22px;
}

    .mobile-name {
        display: inline;
    }

 

    .mobile-name h1 {
    margin-bottom: 10px;
    font-size: 42px;
    font-family: copperplate;
}
 
.product-carousel {
        height: 450px; /* Shorter for mobile */
    }

    .product-info-panel {
        align-items: baseline;
        flex: 0.8;
    }

    .product-container {
        grid-template-columns: repeat(1, 1fr); 
        display: grid;
        flex-direction: row; /* Desktop: Side by Side */
        gap: 10px;
        padding: 100px 10%;
        max-width: 1400px;
        margin: 0 auto;
        margin-top: -65px;
    }

    .product-info-panel h1 {
        display: none;
    }
}


@media (min-width: 1380px) {
    .slide {
    min-width: 100%;
    object-fit: cover;
    }
}