.piero-extras-wrap {
    margin: 20px 0;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 18px 16px 14px;
    background: #fff;
    font-family: inherit;
}

.piero-extras-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 14px;
}

.piero-extras-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.piero-extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #fafafa;
    transition: border-color .15s, background .15s;
}

.piero-extra-item.piero-extra-active {
    border-color: #b8925a;
    background: #fdf7ee;
}

.piero-extra-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.piero-extra-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.piero-extra-img-empty {
    background: #f0f0f0;
}

.piero-extra-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.piero-extra-name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.3;
}

.piero-extra-price {
    font-size: 12px;
    color: #b8925a;
    font-weight: 500;
}

.piero-extra-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.piero-qty-minus,
.piero-qty-plus {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #444;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color .15s, background .15s;
    flex-shrink: 0;
}

.piero-qty-minus:hover,
.piero-qty-plus:hover {
    border-color: #b8925a;
    color: #b8925a;
}

.piero-qty-minus:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.piero-qty-value {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    min-width: 20px;
    text-align: center;
}

.piero-extras-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

.piero-extras-total-label {
    color: #666;
}

.piero-extras-total-value {
    font-weight: 600;
    color: #222;
}

@media (max-width: 480px) {
    .piero-extra-item {
        flex-wrap: wrap;
    }
    .piero-extra-qty {
        margin-left: auto;
    }
}
