.product-section{
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
    padding: 0;
}

.product-container{
    width: 100%;
    height: 600px;
    display: flex;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    padding-block: 30px;
}

.product-img{
    
    width: 210px;
    background-position: center;
    background-size: cover;
    height: 100%;
}

#image1{
    background-image: url("../image/low-sugar-can.png");
}

#image2{
    background-image: url("../image/Blue\ Can.png");
}

#image3{
    background-image: url("../image/ClassicBlackCan.png");
}

.product-details{
    position: relative;
    display: flex;
    flex-grow: 1;
    height: 100%;
    
    /* background: rgb(255, 75, 75); */
    padding: 20px;
    color: white;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

#details1{
    background: linear-gradient(-90deg, rgb(255, 75, 75), rgb(255, 105, 105));
}

#details2{
    background: linear-gradient(90deg, rgb(75, 108, 255), rgb(100, 129, 255));
}

#details3{
    background: linear-gradient(-90deg, rgb(86, 86, 86), rgb(125, 125, 125));
}

.product-details h2, h3{
    margin: auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.product-details h3{
    font-style: italic;
}

.product-details p{
    width: 800px;
    margin: auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}


.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle contrast against the red */
    border-radius: 30px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 0;
}

.stats-table td {
padding: 12px 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-table tr:last-child td {
border-bottom: none;
}

.label {
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
width: 40%;
}

.value {
text-align: right;
font-size: 1.1rem;
}

.highlight {
color: #ffeb3b;
font-weight: bold;
}






/* INFO SECTION */
.info-section{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    height: fit-content;
}

.info-container{
    position: relative;
    min-height: 350px;
    max-height: fit-content;
}

.info-box{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    margin: auto;
    margin-top: 0;
}

.info-box h3{
    font-size: 1.7rem;
    color: rgb(255, 75, 75);
}
.info-box p{
    width: 100%;
    font-size: 1.2rem;
}

.info-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    width: 50%;
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    color: white;
    /* background-color: rgb(255, 75, 75); */
    border-radius: 20px;
}

details {
/* background: rgba(255, 255, 255, 0.2); */
background-color: rgb(255, 75, 75);
margin-bottom: 10px;
padding: 15px;
border-radius: 15px;
cursor: pointer;
transition: background 0.3s;
}

details:hover {
background: rgb(255, 99, 99);
}

summary {
    font-weight: bold;
    font-size: 1.1rem;
    background: rgb(255, 117, 117);
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    transition: background 0.3s;
    list-style: none; /* Removes default arrow in some browsers */
}

summary i{
    margin: auto;
    margin-right: 0;
}

.info-panel{
    background: rgb(255, 99, 99);
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    margin-top: 10px;
    transition: background 0.3s;
}

summary::-webkit-details-marker {
display: none; /* Removes default arrow in Chrome/Safari */
}

.faq-content {
margin-top: 10px;
line-height: 1.6;
color: #f0f0f0;
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 10px;
}

.partner-section{
    background: linear-gradient(-45deg, rgb(82, 34, 34), red);
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.partner-section div{
    width: 15%;
    height: auto;
    aspect-ratio: 1/0.27;
    margin: auto;
    margin-block: 20px;
    background-image: url("../image/Surge\ Main\ Logo.svg");
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 600px) {
    .product-section{
    }

    .info-section{
    }
    
    .info-container{
        flex-direction: column;
    }

    .info-box, .faq-container{
        width: 100%;
    }

    .product-container{
        flex-direction: column;
        height: fit-content;
    }

    .product-details
    {
        width: 100%;
    }

    .product-img{
        width: 70%;
        height: auto;
        aspect-ratio: 1/2.55;
        margin: auto;
        margin-bottom: 10px;
    }

    .product-details p{
        width: 100%;
        white-space: normal;
    }
}