.single-product-addons-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.addon-name-container {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.addon-name {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.addon-options-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 11px
}

.addon-option {
    width: 49%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #E6E9F0;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 16px;
}

.addon-option.selected {
    border-color: #04A86B;
    border-width: 2px;
    font-weight: 700;
}

.addon-option-name {
    position: relative;
}

.price-after-addons {
    font-size: 26px;
}

/* ************************ Addons From Product Attributes Styling Start ************************ */
.custom-device-addon {
    max-height: 187px;
    overflow: hidden;
}

.custom-device-addon .addon-option {
    width: 32%;
    justify-content: center;
    text-align: center;
    padding: 8px;
}

.custom-device-addon .addon-price {
    display: none;
}

.toggle-more-models-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.toggle-more-models {
    border: 1px solid var(--wp--preset--color--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px 16px;
    font-weight: 900;
    font-size: 14px;
    background-color: var(--wp--preset--color--white);
    z-index: 10;
}

.centered-border {
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--border);
    position: absolute;
    top: 20px;
    z-index: 1;
}

@media only screen and (max-width: 528px) {
    .addon-option {
        width: 100%;
    }

    .custom-device-addon {
        max-height: 228px;
    }

    .custom-device-addon .addon-option {
        font-size: 14px;
        width: 31%;
        height: 58px;
    }
}

/* ************************ Tooltip Styling Start ************************ */

.tooltip-box .icon {
    color: var(--wp--preset--color--white);
    font-weight: 500;
    font-size: 12px;
    background: var(--wp--preset--color--primary);
    padding: 4px 12px;
    border-radius: 999px;
    cursor: pointer;
    text-transform: capitalize;
}


.tooltip {
    position: relative;
}

.my-tooltip .tooltiptext {
    display: none;
    width: 400px;
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--primary);
    text-align: left;
    border-radius: 6px;
    padding: 10px 10px 0;
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 0px;
    font-size: 14px;
    font-weight: 300;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.13);
}

.my-tooltip .tooltiptext p {
    margin-bottom: 10px;
}

.my-tooltip .tooltiptext p.tooltip-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.my-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 86px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--wp--preset--color--white) transparent transparent transparent;
}

.tooltip-box:hover .tooltiptext {
    display: block;
}

@media only screen and (max-width: 528px) {
    .my-tooltip .tooltiptext {
        width: 300px;
    }

    .my-tooltip .tooltiptext::after {
        left: 26.5%;
    }
}

/* ************************ Tooltip Styling End ************************ */
#tab-description {
    transition: max-height 0.3s ease;
}

/* ************************ Popup Styling Start ************************ */

.popup-trigger {
    color: #04A86B;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.addon-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10000;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E6E9F0;
}

.popup-close {
    background: #313131;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.popup-body {
    font-size: 16px;
    font-weight: 400;
    padding: 24px;
    line-height: 24px;
}

.popup-body h4,
.popup-body p:has(+ ul) {
    margin-bottom: 8px;
}

.popup-body p,
.popup-body ul {
    margin-bottom: 16px;
}

.popup-body p:last-child {
    margin-bottom: 0;
}

.popup-footer {
    padding: 24px;
    border-top: 1px solid #E6E9F0;
}

.popup-close-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #001739;
    padding: 12px 0;
    border-radius: 8px;
    cursor: pointer;
}

.popup-body ul {
    list-style-type: disc;
    padding-left: 32px;
}

.popup-body ul>li {
    list-style-type: disc;
    padding-left: 6px;
}

.popup-body ol {
    list-style-type: decimal;
    padding-left: 32px;
}

.popup-body ol>li {
    list-style-type: decimal;
    padding-left: 6px;

}

@media only screen and (max-width: 528px) {
    .popup-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .popup-header,
    .popup-body {
        padding: 16px;
    }
}

/* ************************ Popup Styling End ************************ */


.toggle-read-more {
    display: inline-block;
    color: #0073aa;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
}