@charset "UTF-8";
/* CSS Document */
==========
   Product Section (Pure CSS Slideshow using hidden radio inputs)
   ========================================================================== */
/* Container Layout */
.product {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    background: #FFF;
}
.product h1 {
    text-align: center;
    font-family: 'Michroma', 'Eurostile', ''Century Gothic', 'Arial', sans-serif;
    line-height: 1.6;
    margin-top: 20px;
}

.product-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 32px;
}

/* Hide Radio Inputs completely */
.slide-radio, .video-radio {
    display: none;
}

.slideshow-product {
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
}
.slideshow-product {
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
}

/* Main Image Window */
.main-image-window {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.main-image-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Thumbnail Container styling */
.thumbnail-product {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}
.thumb-label {
    width: 20%;
    aspect-ratio: 1 / 1;
    background-color: #ccc;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    display: block;
}
.thumb-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pure CSS Image Switching Logic */
#slide1:checked ~ .product .product-section #img1,
#slide2:checked ~ .product .product-section #img2,
#slide3:checked ~ .product .product-section #img3,
#slide4:checked ~ .product .product-section #img4 {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Dynamic Border Highlight for Active Thumbnail */
#slide1:checked ~ .product .product-section .thumb-l1,
#slide2:checked ~ .product .product-section .thumb-l2,
#slide3:checked ~ .product .product-section .thumb-l3,
#slide4:checked ~ .product .product-section .thumb-l4 {
    border-color: #0066cc;
}

/* Product Text Fields */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/*.main-text-field {
    font-size: 1rem;
    font-weight: 500;
}*/
.sub-text-field {
    font-size: 1rem;
    color: #666;
}

/* ==========================================================================
   Two-Column Full Width Section
   ========================================================================== */
.full-width-section {
    background-color: #fff;
    padding: 32px 16px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.two-column-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.column-card {
    display: flex;
    flex-direction: row; 
    gap: 16px;
    align-items: flex-start;
}
.column-image {
    flex: 0 0 100px;
    aspect-ratio: 1 / 1;
    background-color: #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-text {
    flex: 1;
}
.column-text h3 {
    margin-bottom: 4px;
}
/*.column-text p {
    font-size: 0.9rem;
    color: #555;
}*/

==========================================================================
   Desktop Responsive Adjustments (Screens wider than 768px)
   ========================================================================== */
@media (min-width: 768px) {
    /* Product Section Desktop Layout */
    .product-section {
        flex-direction: row;
        align-items: flex-start;
    }
    .slideshow-product {
        flex: 0 0 50%;
        max-width: 800px;
    }
    .product-info {
        flex: 1;
        padding-left: 16px;
    }
   /* .main-text-field {
        font-size: 2rem;
    }*/
    
    /* Two Column Desktop Layout */
    .two-column-grid {
        flex-direction: row;
    }
    .column-card {
        flex: 1;
    }
    .column-image {
        flex: 0 0 150px;
    }

    /* Video Section Desktop Layout (Two horizontal modules) */
    .video-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    .video-player-container {
        flex: 1;
    }
    .video-sidebar {
        flex: 0 0 350px; /* Sidebar stays anchored to the right side */
    }
}
