.krypton-gas-full-product {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Styling for Left Section */
.left-section {
    float: left;
    width: 45%;
    padding-right: 20px;
}

.left-section img,
.thumbnail img {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.thumbnail img {
    max-width: 80px;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
}

/* Accordion Styling */
.accordion-section .accordion-content {
    display: none;  /* Initially hide all content */
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Active Accordion Title */
.accordion-title.active {
    color: #0056b3;
}

/* Styling for Right Section */
.right-section {
    float: right;
    width: 50%;
}

.cylinder-sizes {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cylinder-size {
    border: 1px solid #333;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

/* Styling for the Accordion */
.additional-info .accordion-section {
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
}

.additional-info .accordion-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .left-section, .right-section {
        width: 100%;
        float: none;
    }

    .right-section {
        margin-top: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
