    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica', Arial, sans-serif;
            background-color: #f5f5f5;
            line-height: 1.6;
        }

        .page-wrapper {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* NAVBAR */
        nav {
            background: linear-gradient(90deg, #C8F4C1 0%, #32E09B 100%);
            padding: 16px 35px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .logo{
            height: 50px;
        }
        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-sub {
            font-size: 12px;
            color: #000;
        }

        nav .menu {
            display: flex;
            gap: 50px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }

    /* Gallery Section Styles */
.gallery-section {
    min-height: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top: 20px;
    
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}


input[type="radio"] {
    display: none;
}

/* Main Display */
.main-display {
    flex: 3;
    position: relative;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.display-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#img1:checked ~ .gallery-container .main-display .img1-display,
#img2:checked ~ .gallery-container .main-display .img2-display,
#img3:checked ~ .gallery-container .main-display .img3-display {
    opacity: 1;
}

/* Thumbnails */
.thumbnails {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: fill;
    display: block;
}

#img1:checked ~ .gallery-container .thumbnails label[for="img1"],
#img2:checked ~ .gallery-container .thumbnails label[for="img2"],
#img3:checked ~ .gallery-container .thumbnails label[for="img3"] {
    border-color: #32E09B;
    box-shadow: 0 4px 15px rgba(50, 224, 155, 0.4);
}

        /* PRODUCT DESCRIPTION */
        .product-section {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin-top: 20px;
        }

        .product-section h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: #222;
            font-weight: 700;
        }

        .gradient-border {
            height: 3px;
            background: linear-gradient(90deg, #2dd794 0%, #32E09B 100%);
            margin-bottom: 20px;
        }

        .product-description-text {
            color: #333;
            margin-bottom: 20px;
            font-size: 20px;
            line-height: 1.7;
            /* font-weight: 600; */
        }

        .product-specs {
            display: flex;
            gap: 40px;
            justify-content: center;
        }

        .list-group-item span{
            /* font-weight: 600; */
            font-size: 18px;
            letter-spacing: .7px;
        }
        .list-group-item span.w-50::before {
            content: "•";
            margin-right: .75rem;
            font-size: 20px;
        }
        .list-group-flush>.list-group-item{
            border: 0px solid;
        }

.accordion-section {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.accordion-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    height: 550px;
    overflow: hidden;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 15px; */
}

.accordion-panel {
    position: relative;
    transition: flex 0.6s ease;
    overflow: hidden;
}

.accordion-panel {
    flex: 0 0 200px;
}

#return:checked ~ .return-panel,
#payment:checked ~ .payment-panel,
#delivery:checked ~ .delivery-panel {
    flex: 1;
}

.accordion-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 2rem 1rem;
}


#return:checked ~ .return-panel .accordion-tab,
#payment:checked ~ .payment-panel .accordion-tab,
#delivery:checked ~ .delivery-panel .accordion-tab {
    display: none;
}

.tab-title {
    position: absolute;
    top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 0.05em;
    text-align: center;
    order: 1;
}

.tab-icon {
    font-size: 5rem;
    color: white;
    order: 2;
    width: auto;
    height: 150px;
}

.return-panel {
    background: linear-gradient(135deg, #27DF99 0%, #27DF99 100%);
    box-shadow: inset -15px 0 30px rgba(0, 0, 0, 0.2);
}

.payment-panel {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    box-shadow: inset -10px 0 35px rgba(0, 0, 0, 0.1), inset 10px 0 35px rgba(0, 0, 0, 0.1);
}

/* Payment panel changes color based on adjacent panel state */
#return:checked ~ .payment-panel {
    background: linear-gradient(135deg, #27DF99 0%, #27DF99 100%);
}

#delivery:checked ~ .payment-panel {
    background: linear-gradient(135deg, #4DD7F1 0%, #4DD7F1 100%);
}

.delivery-panel {
    background: linear-gradient(135deg, #4DD7F1 0%, #4DD7F1 100%);
    box-shadow: inset 15px 0 30px rgba(0, 0, 0, 0.2);
}

.accordion-content {
    opacity: 0;
    padding: 3rem;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease 0.2s;
    background: white;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

#return:checked ~ .return-panel .accordion-content,
#payment:checked ~ .payment-panel .accordion-content,
#delivery:checked ~ .delivery-panel .accordion-content {
    opacity: 1;
}

.accordion-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    /* font-weight: 600; */
}

.accordion-content li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #34495e;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-shrink: 1;
    letter-spacing: .4px;
}

.accordion-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: -9px;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.5rem;
}
.about-section {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    
}
.about-section h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: #000;
            font-weight: 700;
        }
.about-section p {
           line-height: 2;
           /* font-weight: 600; */
        }

        /* FOOTER */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 16px 24px;
            border-radius: 12px;
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 14px;
        }
        /* Responsive Design */

@media (max-width: 768px) {

    .gallery-container {
        flex-direction: column;
    }

    .main-display {
        order: 2;
        height: 260px;
        width: 100%;
        flex: none;
    }

    .thumbnails {
        order: 1;
        flex-direction: row;
        width: 100%;
    }

    .thumbnail img {
        height: 100px;
    }

    .accordion-container {
        flex-direction: column;
        height: auto;
    }

    .accordion-panel {
        flex: 0 0 80px;
    }

    #return:checked ~ .return-panel,
    #delivery:checked ~ .delivery-panel {
        flex: 0 0 auto;
    
    }
        #payment:checked ~ .payment-panel{
             flex: 0 0 auto;
        }

    .accordion-tab {
        width: 100%;
        height: 80px;
        flex-direction: row;
        padding: 0 2rem;
    }

    .tab-title {
        writing-mode: horizontal-tb;
        font-size: 1.5rem;
        position: relative;
        top: 0;
    }
    

    .tab-icon {
        width: 40px;
        height: 40px;
    }

    .accordion-content {
        margin-left: 0;
        margin-top: 80px;
        padding: 2rem;
    }
}
@media (max-width: 991px) {
        .list-group-item{
       display: flex!important;
        justify-content: space-between!important;
        gap: 45px!important;
        text-align: right!important;
    }
    .gallery-section{
        min-height: 100%;
    }
}
