/* ==========================================================
   Vapezera - Cart & Checkout Mobile-First
   Mini cart, toast, carrinho, checkout, sucesso, confiança
   ========================================================== */

/* ===== TOAST NOTIFICATION ===== */
.cart-toast {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 9999;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    border: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideUp .35s cubic-bezier(.22,.68,0,1);
    cursor: pointer;
    transition: all .3s ease;
    max-width: calc(100vw - 32px);
}
.cart-toast.hiding {
    opacity: 0;
    transform: translateY(12px);
}
.cart-toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-toast-icon.success { background: rgba(0,165,61,.1); color: #00a53d; }
.cart-toast-icon svg { width: 16px; height: 16px; }
.cart-toast-text {
    flex: 1;
    font-size: 13px;
    color: #1c1c1c;
    line-height: 1.4;
}
.cart-toast-close {
    background: none;
    border: 0;
    color: #bbb;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    line-height: 1;
    align-self: flex-start;
}
.cart-toast-close:hover { color: #555; }

@keyframes toastSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== MINI CART ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.mini-cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    background: #fff;
    z-index: 9001;
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
    transition: right .35s cubic-bezier(.22,.68,0,1);
    display: flex;
    flex-direction: column;
}
.mini-cart.open { right: 0; }

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e7e7e7;
    flex-shrink: 0;
}
.mini-cart-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0;
}
.mini-cart-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: #f6f6f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all .2s;
    font-size: 20px;
}
.mini-cart-close:hover { background: #c90000; color: #fff; }
.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 24px;
    text-align: center;
}
.mini-cart-empty svg { width: 56px; height: 56px; color: #ddd; margin-bottom: 16px; }
.mini-cart-empty h4 { font-size: 16px; color: #1c1c1c; margin: 0 0 6px; }
.mini-cart-empty p { font-size: 13px; color: #888; margin: 0; }

.mini-cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e7e7e7;
}
.mini-cart-item:last-child { border-bottom: 0; }
.mini-cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #f6f6f6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mini-cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.mini-cart-item-img span { font-size: 20px; color: #999; }
.mini-cart-item-info { flex: 1; min-width: 0; }
.mini-cart-item-name {
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1c;
    display: block;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mini-cart-item-price { font-size: 12px; color: #c90000; font-weight: 700; }
.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
.mini-cart-item-qty button {
    width: 24px;
    height: 24px;
    border: 1px solid #e7e7e7;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    transition: all .2s;
    padding: 0;
    line-height: 1;
}
.mini-cart-item-qty button:hover { background: #c90000; color: #fff; border-color: #c90000; }
.mini-cart-item-qty span {
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1c;
    min-width: 20px;
    text-align: center;
}
.mini-cart-item-remove {
    background: none;
    border: 0;
    color: #bbb;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    align-self: flex-start;
    line-height: 1;
    transition: color .2s;
}
.mini-cart-item-remove:hover { color: #c90000; }

.mini-cart-footer {
    border-top: 1px solid #e7e7e7;
    padding: 16px 24px 24px;
    flex-shrink: 0;
    background: #fff;
}
.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.mini-cart-subtotal span:first-child { font-size: 14px; color: #555; }
.mini-cart-subtotal strong { font-size: 18px; color: #1c1c1c; }
.mini-cart-actions { display: flex; flex-direction: column; gap: 8px; }

/* ===== PAGE HEADER ===== */
.vc-page-header {
    background: #f6f6f6;
    padding: 28px 0;
    border-bottom: 1px solid #e7e7e7;
}
.vc-page-header h1 {
    font-size: 24px;
    font-weight: 900;
    color: #1c1c1c;
    margin: 0 0 4px;
}
.vc-page-header p { font-size: 13px; color: #888; margin: 0; }

.vc-section { padding: 32px 0; }

/* ===== CART LAYOUT ===== */
.vc-cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.vc-cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
}

.vc-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e7e7e7;
    transition: background .2s;
}
.vc-cart-item:last-child { border-bottom: none; }

.vc-cart-item-img {
    grid-row: 1 / 3;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vc-cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.vc-cart-item-placeholder { font-size: 24px; color: #bbb; }

.vc-cart-item-info {
    grid-column: 2 / 4;
}
.vc-cart-item-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0 0 3px;
    line-height: 1.3;
}
.vc-cart-item-info h3 a { color: inherit; text-decoration: none; }
.vc-cart-item-info h3 a:hover { color: #c90000; }
.vc-cart-item-price { font-size: 13px; color: #c90000; font-weight: 700; }

.vc-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}
.vc-qty-btn {
    width: 30px;
    height: 30px;
    border: 0;
    background: #f6f6f6;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    padding: 0;
    line-height: 1;
}
.vc-qty-btn:hover { background: #c90000; color: #fff; }
.vc-qty-input {
    width: 36px;
    height: 30px;
    border: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    background: #fff;
    outline: none;
}

.vc-cart-item-total {
    font-size: 15px;
    font-weight: 800;
    color: #1c1c1c;
    white-space: nowrap;
    align-self: center;
}

.vc-cart-item-remove {
    background: none;
    border: 0;
    color: #bbb;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
    align-self: center;
    display: flex;
}
.vc-cart-item-remove:hover { color: #c90000; }

/* ===== CART SIDEBAR ===== */
.vc-cart-frete-gratis {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0,165,61,.08);
    border: 1px solid rgba(0,165,61,.15);
    border-radius: 10px;
    margin-bottom: 16px;
}
.vc-cart-frete-gratis svg { color: #00a53d; flex-shrink: 0; }
.vc-cart-frete-gratis strong { display: block; font-size: 13px; color: #00a53d; }
.vc-cart-frete-gratis span { font-size: 12px; color: #555; }

.vc-cart-frete-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #555;
}
.vc-cart-frete-alert svg { color: #f59e0b; flex-shrink: 0; }
.vc-cart-frete-alert strong { color: #e65100; }

/* ===== CART SUMMARY ===== */
.vc-cart-summary {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 20px;
}
.vc-cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}
.vc-cart-summary-total {
    border-top: 1px solid #e7e7e7;
    margin-top: 8px;
    padding-top: 14px;
    font-size: 18px;
    font-weight: 800;
    color: #1c1c1c;
}
.vc-cart-summary-total strong { color: #c90000; }
.vc-cart-summary-pix {
    font-size: 13px;
    color: #00a53d;
    font-weight: 600;
    margin-top: 6px;
}
.vc-cart-summary-installment {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* ===== BUTTONS ===== */
.vc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    border: 0;
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    padding: 13px 24px;
}
.vc-btn-primary {
    background: #c90000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(201,0,0,.18);
}
.vc-btn-primary:hover { background: #a80000; transform: translateY(-1px); }
.vc-btn-outline {
    background: transparent;
    color: #1c1c1c;
    border: 1px solid #e7e7e7;
}
.vc-btn-outline:hover { background: #f6f6f6; }
.vc-btn-block { width: 100%; }
.vc-btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37,211,102,.2);
}
.vc-btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

.vc-text-green { color: #00a53d !important; font-weight: 700; }

/* ===== TRUST BADGES ===== */
.vc-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
    justify-content: center;
}
.vc-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888;
    padding: 6px 10px;
    background: #f6f6f6;
    border-radius: 6px;
}
.vc-trust-badges svg { flex-shrink: 0; }

/* ===== EMPTY STATE ===== */
.vc-empty-state {
    text-align: center;
    padding: 60px 20px;
}
.vc-empty-icon { margin-bottom: 16px; }
.vc-empty-state h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 8px;
}
.vc-empty-state p { font-size: 14px; color: #888; margin: 0 0 24px; }

/* ===== ALERT ===== */
.vc-alert {
    background: rgba(201,0,0,.06);
    border: 1px solid rgba(201,0,0,.15);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.vc-alert p { font-size: 13px; color: #c90000; margin: 3px 0; }

/* ===== CHECKOUT ===== */
.vc-checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.vc-frete-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(0,165,61,.08), rgba(0,165,61,.04));
    border: 1px solid rgba(0,165,61,.2);
    border-radius: 10px;
    margin-bottom: 20px;
}
.vc-frete-banner svg { color: #00a53d; flex-shrink: 0; }
.vc-frete-banner strong { display: block; font-size: 14px; color: #00a53d; }
.vc-frete-banner span { font-size: 13px; color: #555; }

.vc-frete-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
}
.vc-frete-alert svg { color: #f59e0b; flex-shrink: 0; }

.vc-form-section {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.vc-form-section h2 {
    font-size: 15px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vc-form-section h2 svg { color: #c90000; flex-shrink: 0; }

.vc-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.vc-form-row:last-child { margin-bottom: 0; }
.vc-form-group { display: flex; flex-direction: column; }
.vc-form-group label {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.vc-form-group input,
.vc-form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    font-size: 14px;
    color: #1c1c1c;
    background: #fff;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.vc-form-group input:focus,
.vc-form-group select:focus {
    outline: none;
    border-color: #c90000;
    box-shadow: 0 0 0 3px rgba(201,0,0,.08);
}
.vc-cep { max-width: 200px; }
.vc-estado { max-width: 140px; }

/* ===== PAYMENT OPTIONS ===== */
.vc-payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vc-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    cursor: pointer;
    transition: all .22s;
    background: #fff;
}
.vc-payment-option:hover { border-color: #ccc; }
.vc-payment-option input[type=radio] { display: none; }
.vc-payment-option:has(input:checked) {
    border-color: #c90000;
    background: rgba(201,0,0,.03);
    box-shadow: 0 0 0 1px #c90000;
}
.vc-payment-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.vc-payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #555;
}
.vc-payment-option:has(input:checked) .vc-payment-icon {
    background: rgba(201,0,0,.1);
    color: #c90000;
}
.vc-payment-content div strong {
    display: block;
    font-size: 14px;
    color: #1c1c1c;
    font-weight: 700;
}
.vc-payment-content div span { font-size: 12px; color: #888; }
.vc-payment-value {
    font-size: 16px;
    font-weight: 800;
    color: #c90000;
    white-space: nowrap;
}
.vc-payment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background: #f6f6f6;
    border-radius: 8px;
    font-size: 12px;
    color: #888;
}
.vc-payment-info svg { flex-shrink: 0; }

.vc-mobile-submit { display: flex; }

/* ===== ORDER SUMMARY SIDEBAR ===== */
.vc-order-summary {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 20px;
}
.vc-order-summary h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7e7e7;
}

.vc-order-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.vc-order-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vc-order-item-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.vc-order-item-img img { width: 100%; height: 100%; object-fit: contain; }
.vc-order-item-info { flex: 1; min-width: 0; }
.vc-order-item-name {
    font-size: 12px;
    font-weight: 700;
    color: #1c1c1c;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vc-order-item-qty { font-size: 11px; color: #888; }
.vc-order-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1c;
    white-space: nowrap;
}

.vc-order-totals {
    border-top: 1px solid #e7e7e7;
    padding-top: 12px;
    margin-bottom: 16px;
}
.vc-order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
    color: #555;
}
.vc-order-total-final {
    border-top: 1px solid #e7e7e7;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 800;
    color: #1c1c1c;
}
.vc-order-total-final strong { color: #c90000; }

.vc-order-installments {
    padding: 12px;
    background: #f6f6f6;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #555;
}
.vc-order-installments strong { display: block; margin-bottom: 6px; color: #1c1c1c; }
.vc-installment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.vc-installment-list span {
    padding: 3px 8px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    font-size: 11px;
    color: #555;
}

.vc-order-footer-text {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 10px;
}

.vc-trust-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}
.vc-trust-column span {
    justify-content: flex-start;
    padding: 8px 12px;
}

/* ===== SUCCESS PAGE ===== */
.vc-success {
    padding: 48px 0;
}
.vc-success-card {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 40px 24px;
}
.vc-success-icon { margin-bottom: 16px; }
.vc-success-card h1 {
    font-size: 26px;
    font-weight: 900;
    color: #1c1c1c;
    margin: 0 0 16px;
}
.vc-success-order-id {
    margin-bottom: 16px;
}
.vc-success-order-id span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}
.vc-success-order-id strong {
    font-size: 22px;
    color: #c90000;
    font-weight: 900;
}
.vc-success-msg {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}
.vc-success-summary {
    text-align: left;
    background: #f6f6f6;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}
.vc-success-summary h3 {
    font-size: 14px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 10px;
}
.vc-success-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vc-success-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
}
.vc-success-item-name strong { color: #1c1c1c; }
.vc-success-total {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 16px;
    font-weight: 800;
    color: #1c1c1c;
}
.vc-success-total strong { color: #c90000; }
.vc-success-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}
.vc-success-offline {
    padding: 12px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    font-size: 12px;
    color: #e65100;
    margin-bottom: 20px;
}
.vc-success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.vc-success-actions .vc-btn { width: 100%; }

/* ==================================================================
   TABLET (576px+)
   ================================================================== */
@media (min-width: 576px) {
    .cart-toast {
        left: auto;
        right: 24px;
        bottom: 24px;
        max-width: 380px;
    }

    .vc-page-header { padding: 32px 0; }
    .vc-page-header h1 { font-size: 26px; }
    .vc-section { padding: 40px 0; }

    .vc-cart-item {
        grid-template-columns: 80px 1fr auto auto;
        grid-template-rows: auto;
        padding: 16px 20px;
    }
    .vc-cart-item-img {
        grid-row: 1;
        width: 80px;
        height: 80px;
    }
    .vc-cart-item-info { grid-column: 2; }

    .vc-form-row { grid-template-columns: 1fr 1fr; }
    .vc-form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
    .vc-mobile-submit { display: none; }

    .vc-success-actions { flex-direction: row; justify-content: center; }
    .vc-success-actions .vc-btn { width: auto; }
}

/* ==================================================================
   DESKTOP (768px+)
   ================================================================== */
@media (min-width: 768px) {
    .vc-cart-layout {
        grid-template-columns: 1fr 360px;
        align-items: start;
    }

    .vc-checkout-layout {
        grid-template-columns: 1fr 380px;
        align-items: start;
    }

    .vc-cart-summary { position: sticky; top: 100px; }
    .vc-order-summary { position: sticky; top: 100px; }
}

/* ==================================================================
   VERY SMALL SCREENS (< 360px)
   ================================================================== */
@media (max-width: 359px) {
    .vc-cart-item {
        grid-template-columns: 56px 1fr auto;
        gap: 6px 8px;
        padding: 10px 12px;
    }
    .vc-cart-item-img { width: 56px; height: 56px; }
    .vc-qty-input { width: 28px; }
    .vc-qty-btn { width: 26px; height: 26px; }
    .vc-cart-item-total { font-size: 13px; }
}

/* ===== MOBILE MINI CART OVERRIDE ===== */
@media (max-width: 900px) {
    .mini-cart {
        right: 0;
        left: 0;
        bottom: -100%;
        top: auto;
        width: 100%;
        height: 80vh;
        border-radius: 16px 16px 0 0;
        transition: bottom .35s cubic-bezier(.22,.68,0,1);
        box-shadow: 0 -8px 40px rgba(0,0,0,.12);
    }
    .mini-cart.open {
        right: 0;
        bottom: 0;
    }
    .mini-cart-header {
        padding: 16px 20px;
    }
    .mini-cart-items {
        padding: 12px 20px;
    }
    .mini-cart-footer {
        padding: 12px 20px 20px;
    }
}
