/* Cart popup (#cartModal) — list + total; footer buttons unchanged */
.cart-modal-dialog {
    max-width: 520px;
}

.cart-modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.18);
}

.cart-modal-header {
    padding: 24px 24px 8px;
    border-bottom: 0;
}

.cart-modal-header .modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
}

.cart-modal {
    padding: 8px 24px 20px;
}

.cart-modal__structured:empty {
    display: none;
}

.cart-modal__subtitle {
    margin: 0 0 16px;
    color: #9b9b9b;
    font-size: 1rem;
    line-height: 1.35;
}

.cart-modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cart-modal__item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f5f5f5;
}

.cart-modal__item:last-child {
    margin-bottom: 0;
}

.cart-modal__item-name {
    flex: 0 1 auto;
    max-width: 55%;
    color: #2f3338;
    font-size: 0.95rem;
    line-height: 1.35;
}

.cart-modal__item-leader {
    flex: 1 1 auto;
    min-width: 12px;
    margin: 0 4px;
    border-bottom: 2px dotted #d0d0d0;
    transform: translateY(-0.2em);
}

.cart-modal__item-price {
    flex: 0 0 auto;
    color: #2f3338;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.cart-modal__total {
    margin: 20px 0 0;
    color: #2f3338;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: center;
}

.cart-modal__total strong {
    font-size: 1.2rem;
    font-weight: 800;
}

.cart-modal-content > .modal-footer {
    padding: 0 24px 24px;
    border-top: 0;
}
