.bebanstore-product-attributes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.bebanstore-product-attributes *,
.bebanstore-product-attributes *::before,
.bebanstore-product-attributes *::after {
    box-sizing: border-box;
}

.bebanstore-product-attributes .bebanstore-product-attributes__item,
.bebanstore-product-attributes .attribute-item {
    padding: 13px;
    border-radius: 8px;
    min-width: 0;
}

.bebanstore-product-attributes .bebanstore-product-attributes__label,
.bebanstore-product-attributes .attribute-label {
    margin: 0 0 5px;
    padding: 0;
    font-size: 0.85em;
    line-height: 1.4;
    opacity: 0.8;
}

.bebanstore-product-attributes .bebanstore-product-attributes__value,
.bebanstore-product-attributes .attribute-value {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .bebanstore-product-attributes {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .bebanstore-product-attributes .bebanstore-product-attributes__item,
    .bebanstore-product-attributes .attribute-item {
        padding: 12px;
    }
}

/* Elementor widget (scoped via .bebanstore-product-attributes--elementor) */
.bebanstore-product-attributes--elementor .bebanstore-product-attributes__value,
.bebanstore-product-attributes--elementor .attribute-value {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bebanstore-product-attributes--hide-labels .bebanstore-product-attributes__label,
.bebanstore-product-attributes--hide-labels .attribute-label {
    display: none;
}

.bebanstore-product-attributes__item--show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.bebanstore-product-attributes__show-more {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    text-align: center;
    cursor: pointer;
    line-height: 1.4;
}

.bebanstore-product-attributes__show-more:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .bebanstore-product-attributes--elementor.bebanstore-product-attributes--mobile-scroll {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 16px 0 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: calc(100% - 0px);
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .bebanstore-product-attributes--elementor.bebanstore-product-attributes--mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .bebanstore-product-attributes--elementor.bebanstore-product-attributes--mobile-scroll .bebanstore-product-attributes__item,
    .bebanstore-product-attributes--elementor.bebanstore-product-attributes--mobile-scroll .attribute-item {
        flex: 0 0 auto;
        min-width: 150px;
        max-width: 150px;
    }
}
