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

.bebanstore-product-attributes .attribute-item {
    padding: 13px;
    border-radius: 8px;
}

.bebanstore-product-attributes .attribute-label {
    font-size: 0.85em;
    margin-bottom: 5px;
    opacity: 0.8;
}

.bebanstore-product-attributes .attribute-value {
    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 .attribute-item {
        padding: 12px;
    }
} 