.vm-mini-alt {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    color: #171818;
    backdrop-filter: blur(18px);
}

.vm-mini-alt__header {
    padding: 22px 24px 10px;
}

.vm-mini-alt__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vm-mini-alt__close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(23, 24, 24, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #171818;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.vm-mini-alt__close:hover {
    transform: scale(1.04);
    background: #f4f0e8;
    border-color: rgba(23, 24, 24, 0.2);
}

.vm-mini-alt__header h4 {
    margin: 0;
    font-family: "Noto Serif", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.vm-mini-alt__header span {
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 8px;
    background: #6f5c37;
}

.vm-mini-alt__items {
    flex: 1;
    overflow-y: auto;
    padding: 6px 24px 18px;
    min-height: 0;
}

.vm-mini-alt__item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 24, 24, 0.08);
}

.vm-mini-alt__thumb {
    width: 96px;
    height: 128px;
    overflow: hidden;
    background: #ece8e0;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vm-mini-alt__item:hover .vm-mini-alt__thumb {
    transform: scale(1.03);
}

.vm-mini-alt__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-mini-alt__copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
    padding: 2px 0;
}

.vm-mini-alt__copy h6 {
    margin: 0;
    font-family: "Noto Serif", Georgia, serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.vm-mini-alt__copy h6 a {
    color: #171818;
    text-decoration: none;
}

.vm-mini-alt__meta {
    margin: 6px 0 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(23, 24, 24, 0.6);
}

.vm-mini-alt__bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.vm-mini-alt__controls {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(23, 24, 24, 0.62);
}

.vm-mini-alt__remove {
    color: #6f5c37;
    text-decoration: none;
    font-weight: 700;
}

.vm-mini-alt__price {
    font-size: 14px;
    font-weight: 700;
    color: #171818;
    white-space: nowrap;
}

.vm-mini-alt__suggestion {
    padding-top: 22px;
}

.vm-mini-alt__suggestion > p {
    margin: 0 0 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(23, 24, 24, 0.42);
}

.vm-mini-alt__suggestion-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f0eee9;
    color: #171818;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.vm-mini-alt__suggestion-card:hover {
    background: #e7e3dc;
}

.vm-mini-alt__suggestion-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #6f5c37;
    flex-shrink: 0;
}

.vm-mini-alt__suggestion-copy {
    display: grid;
    gap: 4px;
}

.vm-mini-alt__suggestion-copy strong {
    font-family: "Noto Serif", Georgia, serif;
    font-size: 14px;
    font-weight: 700;
}

.vm-mini-alt__suggestion-copy small {
    font-size: 11px;
    color: rgba(23, 24, 24, 0.6);
}

.vm-mini-alt__empty {
    padding: 40px 0;
    text-align: center;
}

.vm-mini-alt__empty p {
    margin: 0;
    color: rgba(23, 24, 24, 0.62);
}

.vm-mini-alt__empty a {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #171818;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.vm-mini-alt__footer {
    padding: 24px;
    background: #f5f3ee;
    border-top: 1px solid rgba(23, 24, 24, 0.08);
}

.vm-mini-alt__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.vm-mini-alt__subtotal h6 {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.vm-mini-alt__subtotal span {
    font-family: "Noto Serif", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}

.vm-mini-alt__actions {
    display: grid;
    gap: 12px;
}

.vm-mini-alt__btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.vm-mini-alt__btn:hover {
    transform: scale(1.01);
}

.vm-mini-alt__btn--primary {
    background: #171818;
    color: #fff;
}

.vm-mini-alt__btn--ghost {
    background: transparent;
    color: #171818;
    border-color: rgba(23, 24, 24, 0.16);
}

.vm-mini-alt__note {
    margin: 14px 0 0;
    font-size: 10px;
    text-align: center;
    color: rgba(23, 24, 24, 0.42);
    font-style: italic;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .vm-mini-alt__header {
        padding: 30px 30px 8px;
    }

    .vm-mini-alt__items {
        padding: 4px 30px 24px;
    }

    .vm-mini-alt__footer {
        padding: 28px 30px 30px;
    }

    .vm-mini-alt__thumb {
        width: 100px;
        height: 134px;
    }
}
