.attribute-pricing-container {
    display: flex;
    flex-direction: row-reverse; /* Для RTL направления */
    align-items: flex-start;
    gap: 20px;
}

.attributes-wrapper {
    flex: 1;
}

.action-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-label {
    margin-bottom: 0;
}

/* Удаляем дублирующийся блок с ценой */
.attribute-pricing-container > .price-display {
    display: none;
} 