/* ============================
   Voltano Store - Brand Colors
   #102e50 Navy | #f5c45e Gold | #e78b48 Orange | #322f2f Dark
   ============================ */

:root {
    --store-navy:   #102e50;
    --store-gold:   #f5c45e;
    --store-orange: #e78b48;
    --store-dark:   #322f2f;
    --store-gray:   #f4f6f8;
    --store-border: #e0e4ea;
    --store-text:   #333333;
    --store-muted:  #6c757d;
}

/* ── Store Hero Banner ── */
.store-banner {
    background: linear-gradient(135deg, var(--store-navy) 60%, #1a4a7a 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}
.store-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--store-gold);
    opacity: .07;
    border-radius: 50%;
}
.store-banner h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
}
.store-banner p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
}
.store-banner .badge-gold {
    background: var(--store-gold);
    color: var(--store-navy);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .85rem;
}

/* ── Category Filter Bar ── */
.category-filter-bar {
    background: #fff;
    border-bottom: 2px solid var(--store-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.category-filter-bar .filter-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.category-filter-bar .filter-pills::-webkit-scrollbar { display: none; }
.filter-pill {
    flex-shrink: 0;
    border: 1.5px solid var(--store-navy);
    color: var(--store-navy);
    background: #fff;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.filter-pill:hover,
.filter-pill.active {
    background: var(--store-navy);
    color: #fff;
}
.filter-pill.active {
    box-shadow: 0 3px 10px rgba(16,46,80,.3);
}

/* ── Product Grid ── */
.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
}
@media (max-width: 1200px) { .store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .store-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .store-grid { grid-template-columns: 1fr; } }

/* ── Product Card ── */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--store-border);
    transition: all .3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--store-gold);
    box-shadow: 0 8px 30px rgba(16,46,80,.13);
    transform: translateY(-4px);
}
.product-card .badge-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e53935;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}
.product-card .badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--store-gold);
    color: var(--store-navy);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}
.product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--store-gray);
    cursor: pointer;
    position: relative;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}
.product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,46,80,.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity .25s;
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-name-link {
    cursor: pointer;
    transition: color .2s;
}
.product-name-link:hover { color: var(--store-navy); text-decoration: underline; }
.product-body {
    padding: 14px 14px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category {
    font-size: .75rem;
    color: var(--store-muted);
    margin-bottom: 4px;
}
.product-name {
    font-size: .97rem;
    font-weight: 700;
    color: var(--store-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.product-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--store-navy);
}
.product-price-original {
    font-size: .85rem;
    color: var(--store-muted);
    text-decoration: line-through;
}
.product-price span.currency {
    font-size: .8rem;
    font-weight: 600;
    color: var(--store-muted);
    margin-right: 2px;
}
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.btn-add-cart {
    flex: 1;
    background: var(--store-navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 10px;
    font-size: .87rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-add-cart:hover { background: #1a4a7a; }
.btn-add-cart.added { background: #28a745; }
.btn-whatsapp-product {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: .87rem;
    cursor: pointer;
    transition: background .2s;
}
.btn-whatsapp-product:hover { background: #1da851; }

/* ── Cart Sidebar ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}
.cart-sidebar.open { right: 0; }

@media (max-width: 480px) {
    .cart-sidebar { width: 100vw; right: -100vw; }
}

.cart-sidebar-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--store-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--store-navy);
    color: #fff;
}
.cart-sidebar-header h5 { margin: 0; font-weight: 700; font-size: 1.1rem; }
.btn-close-cart {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.btn-close-cart:hover { background: rgba(255,255,255,.3); }

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.cart-empty-msg {
    text-align: center;
    padding: 60px 20px;
    color: var(--store-muted);
}
.cart-empty-msg i { font-size: 3rem; margin-bottom: 12px; color: var(--store-border); }

.cart-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--store-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--store-gray);
    flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--store-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}
.cart-item-price {
    font-size: .88rem;
    color: var(--store-navy);
    font-weight: 700;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}
.qty-btn {
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--store-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.qty-btn:hover { border-color: var(--store-navy); color: var(--store-navy); }
.qty-display {
    font-size: .9rem;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
}
.btn-remove-item {
    background: none;
    border: none;
    color: #e53935;
    cursor: pointer;
    font-size: .85rem;
    padding: 4px;
    align-self: flex-start;
}

.cart-sidebar-footer {
    padding: 16px 20px;
    border-top: 2px solid var(--store-border);
    background: var(--store-gray);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.cart-total-label { font-size: 1rem; color: var(--store-muted); }
.cart-total-value { font-size: 1.3rem; font-weight: 800; color: var(--store-navy); }
.btn-checkout {
    width: 100%;
    background: var(--store-gold);
    color: var(--store-navy);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 10px;
}
.btn-checkout:hover { background: var(--store-orange); color: #fff; }
.btn-whatsapp-checkout {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s;
}
.btn-whatsapp-checkout:hover { background: #1da851; }

/* ── Cart Floating Button ── */
.cart-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--store-navy);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(16,46,80,.4);
    cursor: pointer;
    z-index: 999;
    transition: transform .2s;
    border: none;
}
.cart-float-btn:hover { transform: scale(1.1); }
.cart-float-btn .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--store-gold);
    color: var(--store-navy);
    font-size: .7rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ── Checkout Modal ── */
.checkout-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1060;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.checkout-modal-backdrop.open { display: flex; }
.checkout-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}
.checkout-modal h4 {
    color: var(--store-navy);
    font-weight: 700;
    margin-bottom: 6px;
}
.checkout-modal .form-label { font-weight: 600; color: var(--store-dark); }
.checkout-modal .form-control {
    border-radius: 8px;
    border: 1.5px solid var(--store-border);
    padding: 10px 14px;
    font-size: .95rem;
}
.checkout-modal .form-control:focus {
    border-color: var(--store-navy);
    box-shadow: 0 0 0 3px rgba(16,46,80,.1);
}
.checkout-order-summary {
    background: var(--store-gray);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    font-size: .9rem;
}
.checkout-order-summary .item-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid var(--store-border);
}
.checkout-order-summary .item-row:last-child { border: none; }
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--store-navy);
    padding-top: 8px;
    margin-top: 4px;
    border-top: 2px solid var(--store-navy);
}

/* ── Product Gallery ── */
.product-gallery {
    position: relative;
    background: #111;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
.gallery-main-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1a1a;
    transition: opacity .25s;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.18);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: rgba(255,255,255,.35); }
.gallery-prev { right: 12px; }
.gallery-next { left: 12px; }
.gallery-arrow.hidden { display: none; }

.gallery-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: .78rem;
    padding: 3px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.gallery-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    background: #1a1a1a;
    scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .55;
    transition: all .2s;
}
.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--store-gold);
    opacity: 1;
}

/* ── Product Detail Modal ── */
.product-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 1070;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.product-modal-backdrop.open { display: flex; }
.product-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
}
.product-modal-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.product-modal-body { padding: 24px; }
.product-modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,.4);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}
.product-modal-close:hover { background: rgba(0,0,0,.7); }

/* ── Featured Section on Homepage ── */
.section-store-preview {
    padding: 70px 0;
    background: var(--store-gray);
}
.section-store-preview .section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--store-navy);
    margin-bottom: 6px;
}
.section-store-preview .section-subtitle {
    color: var(--store-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}
.section-store-preview .title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2db337 0%, #23922d 100%);
    border-radius: 2px;
    margin: 10px auto 28px;
}
.btn-view-all-store {
    background: var(--store-navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: .97rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    margin-top: 30px;
}
.btn-view-all-store:hover {
    background: var(--store-gold);
    color: var(--store-navy);
}

/* ── Success / Error States ── */
.order-success-box {
    text-align: center;
    padding: 30px 20px;
}
.order-success-box .success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 16px;
}
.order-success-box h5 { color: var(--store-navy); font-weight: 700; }
.order-success-box .order-num {
    background: var(--store-gray);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--store-navy);
    display: inline-block;
    margin: 10px 0;
    letter-spacing: 1px;
}

/* ── No Products ── */
.no-products-msg {
    text-align: center;
    padding: 60px 20px;
    color: var(--store-muted);
    grid-column: 1 / -1;
}
.no-products-msg i { font-size: 3.5rem; color: var(--store-border); margin-bottom: 12px; }

/* ── Store Navbar Cart Icon ── */
.nav-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
}
.nav-cart-icon .nav-cart-badge {
    background: var(--store-gold);
    color: var(--store-navy);
    font-size: .68rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* ═══════════════════════════════════════════════════════
   Order Tracking Section
═══════════════════════════════════════════════════════ */
.vlt-track-section {
    background: #f4f6f8;
    padding: 70px 0 60px;
    border-top: 1px solid #e0e4ea;
}

.vlt-track-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #2db337 0%, #23922d 100%);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.vlt-track-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #102e50;
    margin: 0 0 8px;
}

.vlt-track-sub {
    color: #6c757d;
    font-size: .95rem;
    margin-bottom: 36px;
}

/* Form */
.vlt-track-form-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.vlt-track-form {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.vlt-track-input {
    flex: 1;
    border: 2px solid #e0e4ea;
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 1rem;
    font-family: inherit;
    color: #2c2c2c;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    text-align: right;
    direction: ltr;
}

.vlt-track-input:focus {
    border-color: #2db337;
    box-shadow: 0 0 0 3px rgba(45,179,55,.12);
}

.vlt-track-btn {
    background: linear-gradient(135deg, #2db337 0%, #23922d 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(45,179,55,.3);
}

.vlt-track-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45,179,55,.4);
}

/* States */
.vlt-track-loading,
.vlt-track-error {
    text-align: center;
    padding: 24px;
    border-radius: 14px;
    font-size: 1rem;
}

.vlt-track-loading { color: #6c757d; background: #fff; }
.vlt-track-error   { color: #d32f2f; background: #fef2f2; border: 1px solid #fecaca; }

/* Result card */
.vlt-track-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e4ea;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.vlt-track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e0e4ea;
}

.vlt-track-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #102e50;
    direction: ltr;
}

.vlt-track-date {
    font-size: .82rem;
    color: #6c757d;
    margin-top: 3px;
}

.vlt-track-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: 7px 16px;
    border-radius: 50px;
}

/* Progress steps */
.vlt-track-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
}

.vlt-track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.vlt-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .3s;
}

.vlt-track-step.done .vlt-step-dot {
    background: #2db337;
    color: #fff;
}

.vlt-track-step.active .vlt-step-dot {
    background: #2db337;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(45,179,55,.2);
    transform: scale(1.15);
}

.vlt-step-label {
    font-size: .72rem;
    color: #9ca3af;
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
}

.vlt-track-step.done .vlt-step-label,
.vlt-track-step.active .vlt-step-label {
    color: #2db337;
    font-weight: 700;
}

.vlt-step-line {
    flex: 1;
    min-width: 28px;
    height: 3px;
    background: #e5e7eb;
    margin-bottom: 24px;
    transition: background .3s;
}

.vlt-track-step.done + .vlt-step-line {
    background: #2db337;
}

.vlt-track-cancelled {
    text-align: center;
    padding: 16px;
    color: #d32f2f;
    font-weight: 700;
    font-size: .95rem;
    background: #fef2f2;
    border-top: 1px solid #fecaca;
}

/* Items */
.vlt-track-items {
    padding: 16px 24px;
    border-top: 1px solid #e0e4ea;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vlt-track-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vlt-track-item-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e4ea;
    flex-shrink: 0;
}

.vlt-track-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vlt-track-item-info strong {
    font-size: .92rem;
    color: #2c2c2c;
}

.vlt-track-item-info span {
    font-size: .8rem;
    color: #6c757d;
}

.vlt-track-item-total {
    font-size: .9rem;
    font-weight: 700;
    color: #102e50;
    white-space: nowrap;
}

/* Total + address */
.vlt-track-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #f8fafc;
    border-top: 1px solid #e0e4ea;
    font-size: .95rem;
}

.vlt-track-total strong {
    color: #2db337;
    font-size: 1.05rem;
}

.vlt-track-address {
    padding: 10px 24px;
    font-size: .82rem;
    color: #6c757d;
    border-top: 1px solid #e0e4ea;
}

@media (max-width: 575px) {
    .vlt-track-form { flex-direction: column; }
    .vlt-track-btn  { width: 100%; }
    .vlt-track-title { font-size: 1.5rem; }
    .vlt-step-label { font-size: .66rem; }
    .vlt-step-line  { min-width: 16px; }
}
