/* List Layout */
.acf-product-field-block.layout-list .attribute-item {
    display: block;
    margin-bottom: 8px;
    padding: 5px 0;
}

.acf-product-field-block.layout-list .attribute-item:last-child {
    margin-bottom: 0;
}

/* Inline Layout */
.acf-product-field-block.layout-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.acf-product-field-block.layout-inline .attribute-item {
    display: inline-flex;
    align-items: center;
    background: #f5f7fb;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: clamp(11px, 1vw, 13px);
    line-height: 1.56;
    font-weight: 500;
}

/* Attribute Styling */
.acf-product-field-block .attribute-label {
    font-weight: 600;
    color: var(--wp--preset--color--grey);
    margin-right: 5px;
}

.acf-product-field-block .attribute-value {
    color: var(--wp--preset--color--text-white);
}

/* WooCommerce Shop Page Integration */
.woocommerce .products .product .acf-product-field-block {
    margin: 8px 0;
    font-size: 12px;
}

.woocommerce .products .product .acf-product-field-block .attribute-item {
    margin-bottom: 4px;
}

/* Color Variations for Different Attributes */
.acf-product-field-block .attribute-item:nth-child(odd) .attribute-label {
    color: #2c5aa0;
}

.acf-product-field-block .attribute-item:nth-child(even) .attribute-label {
    color: #7c4dff;
}