.sqarp-addon-categories > h2 {
    margin-bottom: 1rem;
}
.sqarp-allcaps-title {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
}
.sqarp-addon-category-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sqarp-addon-category {
    padding: 1rem 1rem;
    border: 1px solid rgba(18, 18, 18, 0.12);
    border-radius: 0.5rem;
}
details.sqarp-addon-category > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
details.sqarp-addon-category:open > summary {
    margin-bottom: 1rem;
}
details.sqarp-addon-category > p {
    margin-bottom: 1rem;
    margin-bottom: 1rem;
}
.sqarp-virtual-addon-list {
    max-height: 25rem;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.sqarp-addon {
    border-top: 1px solid rgba(18, 18, 18, 0.12);
    width: 100%;
    display: flex;
    column-gap: 0.75rem;
    padding: 1.375rem 0;
}
.sqarp-virtual-addon-list > .sqarp-virtual-addon:first-child > .sqarp-addon-list > .sqarp-addon:first-child {
    border-top: none;
}
.sqarp-addon-image {
    /* width: 20%; */
    /* min-width: 20%; */
    height: 7rem;
    aspect-ratio: 4 /5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures no overflow if the image exceeds bounds */
    /* background-color: #efefef; */
    background: rgb(var(--background));
    border: 1px solid rgba(18, 18, 18, 0.12);
    border-radius: 0.25rem;
    overflow: hidden;
}
.sqarp-addon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sqarp-addon-details {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    position: relative;
    width: 100%;
}
.sqarp-addon-details .sqarp-addon-details-title {
    font-weight: bold;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5em;
}
.sqarp-addon-details .sqarp-addon-details-variant {
    line-height: 1.5em;
}
.sqarp-addon-details .sqarp-addon-details-price {
    margin-top: auto;
}
.sqarp-addon-details .sqarp-addon-add {
    --button-background: var(--button-background-primary) /
        var(--button-background-opacity, 1);
    --button-text-color: var(--button-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--button-background));
    color: rgb(var(--button-text-color));
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
}
