/* =========================================================
   Vitorize Public Storefront
   RTL Persian Storefront UI
   Pages: Layout, Home, Products Listing, Product Details
   ========================================================= */

/* =========================
   Fonts
   ========================= */

@font-face {
    font-family: 'IranSans';
    src: url('/css/fonts/IranSans/IranSans.woff2') format('woff2'), url('/css/fonts/IranSans/IranSans.woff') format('woff'), url('/css/fonts/IranSans/IranSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('/css/fonts/vazir/woff2/vazir.woff2') format('woff2'), url('/css/fonts/vazir/woff/vazir.woff') format('woff'), url('/css/fonts/vazir/ttf/vazir.ttf') format('truetype'), url('/css/fonts/vazir/eot/vazir.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =========================
   Design Tokens
   ========================= */

:root {
    --vt-primary: #007a73;
    --vt-primary-light: #00a59b;
    --vt-primary-dark: #053f3e;
    --vt-primary-soft: #e4f8f5;
    --vt-danger: #ef4444;
    --vt-danger-soft: #fee2e2;
    --vt-success: #16a34a;
    --vt-success-soft: #dcfce7;
    --vt-text: #0f2f33;
    --vt-heading: #102f34;
    --vt-muted: #64748b;
    --vt-muted-2: #94a3b8;
    --vt-bg: #ffffff;
    --vt-bg-soft: #f8fafc;
    --vt-border: rgba(6, 73, 68, .12);
    --vt-border-soft: rgba(6, 73, 68, .08);
    --vt-radius-sm: 10px;
    --vt-radius-md: 14px;
    --vt-radius-lg: 18px;
    --vt-radius-xl: 22px;
    --vt-radius-2xl: 24px;
    --vt-shadow: 0 22px 70px rgba(15, 82, 87, .10);
    --vt-soft-shadow: 0 18px 45px rgba(15, 23, 42, .07);
    --vt-card-shadow: 0 16px 38px rgba(15, 23, 42, .06);
    --vt-shell: 1440px;
}

/* =========================
   Reset / Base
   ========================= */

* {
    box-sizing: border-box;
}

html {
    direction: rtl;
    scroll-behavior: smooth;
}

body.vt-body {
    margin: 0;
    min-height: 100vh;
    color: var(--vt-text);
    background: radial-gradient(circle at top right, rgba(0, 139, 131, .08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8fbfb 45%, #ffffff 100%);
    font-family: 'Vazir', 'IranSans', Tahoma, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

/* =========================
   Shared Utilities
   ========================= */

.vt-shell {
    width: min(100% - 40px, var(--vt-shell));
    margin-inline: auto;
}

.vt-main {
    padding-block: 28px 0;
}

.vt-empty-state {
    padding: 24px;
    border: 1px dashed rgba(6, 73, 68, .18);
    border-radius: var(--vt-radius-lg);
    background: #fff;
    color: var(--vt-muted);
    font-weight: 800;
    text-align: center;
}

.vt-outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    height: 38px;
    border: 1px solid rgba(0, 139, 131, .22);
    border-radius: 11px;
    color: var(--vt-primary);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    transition: all .2s ease;
}

    .vt-outline-link:hover {
        border-color: rgba(0, 139, 131, .45);
        background: var(--vt-primary-soft);
        transform: translateY(-1px);
    }

/* =========================
   Header / Layout
   ========================= */

.vt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(6, 73, 68, .08);
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(20px);
}

.vt-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    color: #39565b;
    font-size: 13px;
}

.vt-top-link {
    color: #39565b;
    font-weight: 700;
    transition: color .2s ease;
}

    .vt-top-link:hover {
        color: var(--vt-primary);
    }

.vt-mainbar {
    display: grid;
    grid-template-columns: 260px 1fr 110px;
    align-items: center;
    gap: 28px;
    min-height: 74px;
}

.vt-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--vt-primary-dark);
    font-size: 30px;
    font-weight: 1000;
    letter-spacing: -.8px;
}

.vt-brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.vt-search {
    position: relative;
}

    .vt-search input {
        width: 100%;
        height: 46px;
        border: 1px solid rgba(6, 73, 68, .10);
        border-radius: var(--vt-radius-md);
        background: var(--vt-bg-soft);
        padding: 0 48px 0 18px;
        color: #102a2d;
        outline: none;
        transition: all .2s ease;
    }

        .vt-search input:focus {
            background: #fff;
            border-color: rgba(0, 139, 131, .35);
            box-shadow: 0 0 0 4px rgba(0, 139, 131, .08);
        }

    .vt-search button {
        position: absolute;
        inset-inline-start: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--vt-muted);
        background: transparent;
        border: 0;
    }

.vt-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vt-cart-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 16px;
    color: var(--vt-primary-dark);
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
}

.vt-cart-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding-inline: 5px;
    border-radius: 999px;
    background: var(--vt-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.vt-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    min-height: 55px;
    border-top: 1px solid rgba(6, 73, 68, .07);
}

.vt-nav-item {
    position: relative;
    padding: 18px 0;
    color: #113b40;
    font-size: 14px;
    font-weight: 900;
}

    .vt-nav-item::after {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        bottom: 8px;
        height: 2px;
        border-radius: 10px;
        background: var(--vt-primary);
        transform: scaleX(0);
        transition: transform .2s ease;
    }

    .vt-nav-item:hover::after {
        transform: scaleX(1);
    }

.vt-nav-special {
    color: var(--vt-danger) !important;
}

    .vt-nav-special::after {
        background: var(--vt-danger) !important;
    }

/* =========================
   Home Page
   ========================= */

.vt-hero {
    position: relative;
    min-height: 374px;
    overflow: hidden;
    border-radius: var(--vt-radius-lg);
    background: linear-gradient(90deg, rgba(3, 43, 47, .96) 0%, rgba(3, 43, 47, .82) 37%, rgba(3, 43, 47, .20) 70%), url('/img/storefront/hero-gaming.jpg') center / cover no-repeat;
    box-shadow: var(--vt-shadow);
}

    .vt-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 65% 45%, transparent 0 30%, rgba(0, 0, 0, .12) 70%);
        pointer-events: none;
    }

.vt-hero-content {
    position: relative;
    z-index: 2;
    width: min(630px, 100%);
    padding: 76px 92px;
    color: #fff;
}

    .vt-hero-content h1 {
        margin: 0;
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 1000;
        line-height: 1.55;
        letter-spacing: -1px;
    }

    .vt-hero-content p {
        margin-top: 18px;
        color: rgba(255, 255, 255, .85);
        font-size: 16px;
        font-weight: 700;
    }

.vt-hero-primary,
.vt-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 48px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 900;
    transition: all .2s ease;
}

.vt-hero-primary {
    background: linear-gradient(135deg, var(--vt-primary-light), var(--vt-primary));
    color: #fff;
    box-shadow: 0 18px 35px rgba(0, 139, 131, .30);
}

.vt-hero-secondary {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .04);
}

    .vt-hero-primary:hover,
    .vt-hero-secondary:hover {
        transform: translateY(-2px);
    }

.vt-hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: rgba(2, 18, 22, .62);
    color: #fff;
    font-size: 42px;
    line-height: 1;
}

.vt-hero-arrow-right {
    right: 28px;
}

.vt-hero-arrow-left {
    left: 28px;
}

.vt-hero-dots {
    position: absolute;
    z-index: 5;
    right: 50%;
    bottom: 28px;
    display: flex;
    gap: 8px;
    transform: translateX(50%);
}

    .vt-hero-dots span {
        width: 13px;
        height: 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .35);
    }

        .vt-hero-dots span.active {
            width: 34px;
            background: #fff;
        }

.vt-trustbar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-lg);
    background: rgba(255, 255, 255, .90);
    box-shadow: var(--vt-soft-shadow);
}

.vt-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 23px 20px;
    border-left: 1px solid rgba(6, 73, 68, .09);
}

    .vt-trust-item:last-child {
        border-left: 0;
    }

.vt-trust-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 139, 131, .16);
    border-radius: 16px;
    background: #f0fbfa;
    color: var(--vt-primary);
    font-size: 22px;
}

.vt-trust-item b {
    display: block;
    color: #123b40;
    font-size: 15px;
    font-weight: 1000;
}

.vt-trust-item small {
    display: block;
    margin-top: 5px;
    color: var(--vt-muted);
    font-size: 12px;
    font-weight: 700;
}

.vt-section {
    margin-top: 48px;
}

.vt-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

    .vt-section-head h2 {
        margin: 0;
        color: #123b40;
        font-size: 22px;
        font-weight: 1000;
        letter-spacing: -.3px;
    }

.vt-category-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(10, minmax(92px, 1fr));
    gap: 20px;
    padding: 24px 26px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-lg);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--vt-soft-shadow);
}

.vt-category-item {
    display: grid;
    justify-items: center;
    gap: 12px;
    color: #123b40;
    transition: transform .2s ease;
}

    .vt-category-item:hover {
        transform: translateY(-4px);
    }

    .vt-category-item img {
        width: 75px;
        height: 75px;
        border-radius: 17px;
        object-fit: cover;
        box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
    }

    .vt-category-item b {
        font-size: 14px;
        font-weight: 1000;
        text-align: center;
    }

.vt-product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.vt-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 32px;
}

.vt-promo {
    position: relative;
    min-height: 160px;
    overflow: hidden;
    border-radius: var(--vt-radius-lg);
    color: #fff;
    box-shadow: var(--vt-soft-shadow);
    background-position: center;
    background-size: cover;
}

    .vt-promo::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, .52), transparent);
    }

    .vt-promo div {
        position: relative;
        z-index: 2;
        padding: 28px;
    }

    .vt-promo span {
        display: block;
        font-size: 19px;
        font-weight: 900;
    }

    .vt-promo b {
        display: block;
        margin-top: 2px;
        font-size: 30px;
        font-weight: 1000;
    }

    .vt-promo small {
        display: inline-flex;
        margin-top: 16px;
        padding: 8px 16px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .18);
        font-weight: 900;
    }

.vt-promo-xbox {
    background: linear-gradient(135deg, rgba(2, 79, 28, .96), rgba(0, 127, 49, .55)), url('/img/storefront/promo-xbox.jpg') center/cover no-repeat;
}

.vt-promo-playstation {
    background: linear-gradient(135deg, rgba(0, 50, 145, .95), rgba(0, 162, 255, .50)), url('/img/storefront/promo-playstation.jpg') center/cover no-repeat;
}

.vt-promo-nintendo {
    background: linear-gradient(135deg, rgba(190, 0, 18, .95), rgba(255, 80, 80, .45)), url('/img/storefront/promo-nintendo.jpg') center/cover no-repeat;
}

.vt-service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.vt-service-card {
    display: grid;
    justify-items: center;
    min-height: 170px;
    padding: 26px 18px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-lg);
    background: #fff;
    color: #123b40;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .05);
    text-align: center;
    transition: all .2s ease;
}

    .vt-service-card:hover {
        transform: translateY(-4px);
    }

    .vt-service-card img {
        width: 58px;
        height: 58px;
        margin-bottom: 15px;
        border-radius: 15px;
        object-fit: cover;
    }

    .vt-service-card b {
        font-size: 15px;
        font-weight: 1000;
    }

    .vt-service-card span {
        margin-top: 7px;
        color: var(--vt-muted);
        font-size: 13px;
        font-weight: 700;
    }

.vt-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.vt-why-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .05);
}

    .vt-why-card span {
        display: grid;
        place-items: center;
        width: 45px;
        height: 45px;
        border-radius: 16px;
        background: #f0fbfa;
        color: var(--vt-primary);
        font-size: 22px;
    }

    .vt-why-card b {
        display: block;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-why-card small {
        display: block;
        margin-top: 4px;
        color: var(--vt-muted);
        font-size: 12px;
        font-weight: 700;
    }

/* =========================
   Product Card
   ========================= */

.vt-product-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-lg);
    background: #fff;
    color: #123b40;
    box-shadow: var(--vt-card-shadow);
    transition: all .22s ease;
}

    .vt-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 55px rgba(15, 23, 42, .10);
    }

.vt-product-card-disabled {
    opacity: .68;
}

.vt-product-image-wrap {
    position: relative;
    padding: 18px 18px 8px;
}

    .vt-product-image-wrap img {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 15px;
        object-fit: cover;
        background: #f3f7f8;
    }

.vt-discount-badge,
.vt-featured-badge,
.vt-stock-badge {
    position: absolute;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
}

.vt-discount-badge {
    top: 12px;
    right: 12px;
    background: #ff5570;
}

.vt-featured-badge {
    top: 12px;
    right: 12px;
    background: var(--vt-danger);
}

.vt-stock-badge {
    top: 12px;
    left: 12px;
    background: var(--vt-muted);
}

.vt-product-body {
    padding: 0 18px 18px;
}

    .vt-product-body h3 {
        min-height: 25px;
        margin: 0;
        overflow: hidden;
        color: var(--vt-heading);
        font-size: 15px;
        font-weight: 1000;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vt-product-body p {
        margin: 4px 0 0;
        overflow: hidden;
        color: var(--vt-muted);
        font-size: 12px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.vt-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    color: var(--vt-muted);
    font-size: 11px;
    font-weight: 900;
}

.vt-product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

    .vt-product-price b {
        color: var(--vt-primary-dark);
        font-size: 16px;
        font-weight: 1000;
    }

    .vt-product-price del {
        color: var(--vt-muted-2);
        font-size: 12px;
        font-weight: 800;
    }

/* =========================
   Products Listing
   ========================= */

.vt-products-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 230px;
    margin-bottom: 30px;
    padding: 42px 56px;
    overflow: hidden;
    border-radius: var(--vt-radius-xl);
    background: linear-gradient(90deg, rgba(3, 43, 47, .94), rgba(0, 122, 115, .72)), radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 28%), url('/img/storefront/hero-gaming.jpg') center/cover no-repeat;
    color: #fff;
    box-shadow: var(--vt-shadow);
}

    .vt-products-hero span {
        display: inline-flex;
        padding: 7px 14px;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        font-size: 13px;
        font-weight: 900;
    }

    .vt-products-hero h1 {
        margin: 18px 0 0;
        font-size: clamp(30px, 3vw, 48px);
        font-weight: 1000;
        line-height: 1.45;
    }

    .vt-products-hero p {
        max-width: 720px;
        margin: 12px 0 0;
        color: rgba(255, 255, 255, .82);
        font-size: 15px;
        font-weight: 700;
        line-height: 2;
    }

.vt-products-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 24px;
    align-items: start;
}

.vt-products-filter {
    position: sticky;
    top: 150px;
    padding: 22px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--vt-soft-shadow);
}

.vt-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

    .vt-filter-head b {
        color: #123b40;
        font-size: 18px;
        font-weight: 1000;
    }

    .vt-filter-head a {
        color: var(--vt-danger);
        font-size: 12px;
        font-weight: 900;
    }

.vt-filter-form {
    display: grid;
    gap: 17px;
}

.vt-filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #123b40;
    font-size: 13px;
    font-weight: 1000;
}

.vt-filter-group input,
.vt-filter-group select {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(6, 73, 68, .12);
    border-radius: var(--vt-radius-md);
    background: var(--vt-bg-soft);
    color: #102a2d;
    padding-inline: 14px;
    outline: none;
    font-weight: 800;
}

    .vt-filter-group input:focus,
    .vt-filter-group select:focus {
        background: #fff;
        border-color: rgba(0, 139, 131, .36);
        box-shadow: 0 0 0 4px rgba(0, 139, 131, .08);
    }

.vt-filter-switches {
    display: grid;
    gap: 10px;
}

    .vt-filter-switches label {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        padding: 10px 12px;
        border: 1px solid rgba(6, 73, 68, .10);
        border-radius: var(--vt-radius-md);
        background: #fff;
        color: #334155;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
    }

    .vt-filter-switches input {
        width: 18px;
        height: 18px;
        accent-color: var(--vt-primary);
    }

.vt-filter-submit {
    height: 48px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--vt-primary-light), var(--vt-primary));
    color: #fff;
    font-size: 14px;
    font-weight: 1000;
    box-shadow: 0 18px 35px rgba(0, 139, 131, .22);
}

.vt-filter-fast {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(6, 73, 68, .10);
}

    .vt-filter-fast b {
        display: block;
        margin-bottom: 12px;
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-filter-fast div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vt-filter-fast a {
        display: inline-flex;
        align-items: center;
        height: 34px;
        padding-inline: 12px;
        border: 1px solid rgba(0, 139, 131, .14);
        border-radius: 999px;
        background: #f0fbfa;
        color: var(--vt-primary-dark);
        font-size: 12px;
        font-weight: 900;
    }

.vt-products-content {
    min-width: 0;
}

.vt-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding: 22px 24px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--vt-soft-shadow);
}

    .vt-products-toolbar h2 {
        margin: 0;
        color: #123b40;
        font-size: 24px;
        font-weight: 1000;
    }

    .vt-products-toolbar p {
        margin: 5px 0 0;
        color: var(--vt-muted);
        font-size: 13px;
        font-weight: 800;
    }

.vt-products-toolbar-actions {
    display: flex;
    gap: 10px;
}

    .vt-products-toolbar-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        padding-inline: 14px;
        border: 1px solid rgba(0, 139, 131, .16);
        border-radius: 12px;
        background: #fff;
        color: var(--vt-primary);
        font-size: 13px;
        font-weight: 1000;
    }

.vt-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.vt-products-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 70px 24px;
    border: 1px dashed rgba(6, 73, 68, .20);
    border-radius: var(--vt-radius-xl);
    background: #fff;
    color: var(--vt-muted);
    text-align: center;
}

    .vt-products-empty div {
        font-size: 48px;
    }

    .vt-products-empty b {
        color: #123b40;
        font-size: 20px;
        font-weight: 1000;
    }

    .vt-products-empty p {
        margin: 0;
        font-weight: 800;
    }

    .vt-products-empty a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        margin-top: 8px;
        padding-inline: 18px;
        border-radius: 13px;
        background: var(--vt-primary);
        color: #fff;
        font-weight: 1000;
    }

.vt-products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

    .vt-products-pagination a,
    .vt-products-pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 40px;
        padding-inline: 16px;
        border: 1px solid rgba(6, 73, 68, .12);
        border-radius: 12px;
        background: #fff;
        color: #123b40;
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-products-pagination a {
        color: var(--vt-primary);
    }

/* =========================
   Product Details
   ========================= */

.vt-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--vt-muted);
    font-size: 13px;
    font-weight: 800;
}

    .vt-product-breadcrumb a {
        color: var(--vt-primary);
    }

    .vt-product-breadcrumb b {
        color: #123b40;
    }

.vt-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: 28px;
    align-items: start;
}

.vt-product-gallery {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
}

.vt-product-thumbs {
    display: grid;
    align-content: start;
    gap: 14px;
}

    .vt-product-thumbs img {
        width: 92px;
        height: 92px;
        padding: 6px;
        border: 1px solid rgba(6, 73, 68, .12);
        border-radius: var(--vt-radius-lg);
        background: #fff;
        object-fit: cover;
        box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
    }

.vt-product-main-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 560px;
    padding: 44px;
    overflow: hidden;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-2xl);
    background: radial-gradient(circle at 50% 25%, rgba(0, 139, 131, .08), transparent 36%), #fff;
    box-shadow: var(--vt-soft-shadow);
}

    .vt-product-main-image img {
        max-width: 100%;
        max-height: 470px;
        border-radius: var(--vt-radius-2xl);
        object-fit: contain;
    }

.vt-product-detail-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--vt-danger);
    color: #fff;
    font-size: 13px;
    font-weight: 1000;
}

.vt-product-buybox {
    padding: 30px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-2xl);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--vt-soft-shadow);
}

.vt-product-category {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid rgba(0, 139, 131, .16);
    border-radius: 999px;
    background: #f0fbfa;
    color: var(--vt-primary);
    font-size: 13px;
    font-weight: 1000;
}

.vt-product-title-row h1 {
    margin: 0;
    color: var(--vt-heading);
    font-size: clamp(26px, 2.2vw, 38px);
    font-weight: 1000;
    line-height: 1.55;
}

.vt-product-title-row p {
    margin: 10px 0 0;
    color: var(--vt-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 2;
}

.vt-product-mini-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 22px;
}

    .vt-product-mini-info span {
        display: flex;
        align-items: center;
        min-height: 42px;
        padding-inline: 13px;
        border: 1px solid rgba(6, 73, 68, .08);
        border-radius: var(--vt-radius-md);
        background: var(--vt-bg-soft);
        color: #334155;
        font-size: 13px;
        font-weight: 900;
    }

.vt-product-form {
    margin-top: 26px;
}

.vt-product-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

    .vt-product-section-title b {
        color: #123b40;
        font-size: 15px;
        font-weight: 1000;
    }

    .vt-product-section-title small {
        color: var(--vt-muted);
        font-size: 12px;
        font-weight: 800;
    }

.vt-variant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vt-variant-card {
    position: relative;
    display: grid;
    gap: 7px;
    min-height: 122px;
    padding: 16px;
    border: 1px solid rgba(6, 73, 68, .12);
    border-radius: var(--vt-radius-lg);
    background: #fff;
    cursor: pointer;
    transition: all .18s ease;
}

    .vt-variant-card:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 139, 131, .35);
    }

    .vt-variant-card input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .vt-variant-card:has(input:checked) {
        border-color: var(--vt-primary);
        background: #f0fbfa;
        box-shadow: 0 0 0 4px rgba(0, 139, 131, .08);
    }

    .vt-variant-card.disabled {
        opacity: .5;
        cursor: not-allowed;
    }

    .vt-variant-card span b {
        display: block;
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-variant-card span small {
        display: block;
        margin-top: 4px;
        color: var(--vt-muted);
        font-size: 12px;
        font-weight: 800;
    }

    .vt-variant-card strong {
        color: var(--vt-primary-dark);
        font-size: 16px;
        font-weight: 1000;
    }

    .vt-variant-card del {
        color: var(--vt-muted-2);
        font-size: 12px;
        font-weight: 800;
    }

    .vt-variant-card em {
        color: var(--vt-muted);
        font-size: 11px;
        font-style: normal;
        font-weight: 900;
    }

.vt-product-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding: 22px;
    border: 1px solid rgba(6, 73, 68, .08);
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(0, 139, 131, .10), transparent 38%), var(--vt-bg-soft);
}

    .vt-product-price-box small {
        display: block;
        color: var(--vt-muted);
        font-size: 12px;
        font-weight: 900;
    }

    .vt-product-price-box b {
        display: block;
        margin-top: 4px;
        color: var(--vt-primary-dark);
        font-size: 30px;
        font-weight: 1000;
    }

    .vt-product-price-box del {
        display: block;
        margin-top: 4px;
        color: var(--vt-muted-2);
        font-size: 13px;
        font-weight: 800;
    }

.vt-product-stock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding-inline: 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 1000;
}

    .vt-product-stock.available {
        background: var(--vt-success-soft);
        color: #15803d;
    }

    .vt-product-stock.unavailable {
        background: var(--vt-danger-soft);
        color: #b91c1c;
    }

.vt-product-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}

    .vt-product-quantity-row label {
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-product-quantity-row input {
        width: 120px;
        height: 46px;
        border: 1px solid rgba(6, 73, 68, .12);
        border-radius: var(--vt-radius-md);
        background: #fff;
        color: #123b40;
        text-align: center;
        font-weight: 1000;
        outline: none;
    }

.vt-add-to-cart-btn {
    width: 100%;
    height: 56px;
    margin-top: 20px;
    border: 0;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--vt-primary-light), var(--vt-primary));
    color: #fff;
    font-size: 16px;
    font-weight: 1000;
    box-shadow: 0 20px 42px rgba(0, 139, 131, .24);
}

    .vt-add-to-cart-btn span {
        margin-right: 8px;
    }

    .vt-add-to-cart-btn.disabled {
        background: var(--vt-muted-2);
        box-shadow: none;
        cursor: not-allowed;
    }

.vt-product-tabs {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: var(--vt-radius-2xl);
    background: #fff;
    box-shadow: var(--vt-soft-shadow);
}

.vt-product-tabs-head {
    display: flex;
    gap: 26px;
    padding: 0 28px;
    border-bottom: 1px solid rgba(6, 73, 68, .09);
}

    .vt-product-tabs-head span {
        position: relative;
        padding: 22px 0;
        color: var(--vt-muted);
        font-size: 14px;
        font-weight: 1000;
    }

        .vt-product-tabs-head span.active {
            color: var(--vt-primary);
        }

            .vt-product-tabs-head span.active::after {
                content: '';
                position: absolute;
                right: 0;
                left: 0;
                bottom: -1px;
                height: 3px;
                border-radius: 10px;
                background: var(--vt-primary);
            }

.vt-product-tabs-body {
    padding: 28px;
}

    .vt-product-tabs-body h2 {
        margin: 0 0 14px;
        color: #123b40;
        font-size: 22px;
        font-weight: 1000;
    }

    .vt-product-tabs-body p,
    .vt-product-tabs-body li {
        color: #475569;
        font-size: 15px;
        font-weight: 700;
        line-height: 2.2;
    }

    .vt-product-tabs-body ul {
        margin-top: 18px;
        padding-right: 22px;
    }

/* =========================
   Footer
   ========================= */

.vt-footer {
    margin-top: 46px;
    padding-top: 48px;
    background: radial-gradient(circle at top right, rgba(0, 139, 131, .30), transparent 35%), linear-gradient(135deg, #053f3e, #022b2f);
    color: #fff;
}

.vt-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr 1.2fr;
    gap: 44px;
}

.vt-footer-about p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .74);
    line-height: 2;
}

.vt-footer h4 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 1000;
}

.vt-footer a {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 700;
}

    .vt-footer a:hover {
        color: #fff;
    }

.vt-newsletter {
    display: flex;
    gap: 8px;
}

    .vt-newsletter input {
        min-width: 0;
        flex: 1;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 12px;
        background: rgba(255, 255, 255, .05);
        color: #fff;
        padding-inline: 14px;
        outline: none;
    }

    .vt-newsletter button {
        width: 60px;
        border: 0;
        border-radius: 12px;
        background: var(--vt-primary-light);
        color: #fff;
        font-weight: 1000;
    }

.vt-social {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.vt-footer-bottom {
    margin-top: 42px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1200px) {
    .vt-trustbar {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-category-strip {
        grid-template-columns: repeat(5, 1fr);
    }

    .vt-service-grid,
    .vt-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-products-layout {
        grid-template-columns: 1fr;
    }

    .vt-products-filter {
        position: relative;
        top: auto;
    }

    .vt-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .vt-product-detail {
        grid-template-columns: 1fr;
    }

    .vt-product-buybox {
        order: -1;
    }
}

@media (max-width: 768px) {
    .vt-shell {
        width: min(100% - 24px, var(--vt-shell));
    }

    .vt-topbar,
    .vt-nav {
        display: none;
    }

    .vt-mainbar {
        grid-template-columns: 1fr auto;
        gap: 14px;
        min-height: 70px;
    }

    .vt-brand {
        font-size: 23px;
    }

    .vt-brand-logo {
        width: 38px;
        height: 38px;
    }

    .vt-search {
        grid-column: 1 / -1;
        order: 3;
        margin-bottom: 14px;
    }

    .vt-hero {
        min-height: 420px;
    }

    .vt-hero-content {
        padding: 62px 28px;
        text-align: center;
    }

    .vt-hero-arrow {
        display: none;
    }

    .vt-trustbar,
    .vt-product-grid,
    .vt-promo-grid,
    .vt-service-grid,
    .vt-why-grid,
    .vt-footer-grid {
        grid-template-columns: 1fr;
    }

    .vt-category-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-products-hero {
        min-height: auto;
        padding: 32px 24px;
    }

    .vt-products-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .vt-products-toolbar-actions {
        width: 100%;
        overflow-x: auto;
    }

    .vt-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .vt-product-gallery {
        grid-template-columns: 1fr;
    }

    .vt-product-thumbs {
        display: flex;
        order: 2;
        overflow-x: auto;
    }

    .vt-product-main-image {
        min-height: 360px;
        padding: 24px;
    }

    .vt-product-mini-info,
    .vt-variant-grid {
        grid-template-columns: 1fr;
    }

    .vt-product-price-box,
    .vt-product-quantity-row,
    .vt-product-section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .vt-product-tabs-head {
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 460px) {
    .vt-products-grid {
        grid-template-columns: 1fr;
    }
}
.vt-cart-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 190px;
    margin-bottom: 24px;
    padding: 38px 44px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(3, 43, 47, .94), rgba(0, 122, 115, .70)), url('/img/storefront/hero-gaming.jpg') center/cover no-repeat;
    color: #fff;
    box-shadow: var(--vt-shadow);
}

    .vt-cart-hero span {
        display: inline-flex;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.22);
        font-size: 13px;
        font-weight: 900;
    }

    .vt-cart-hero h1 {
        margin: 16px 0 0;
        font-size: clamp(30px, 3vw, 46px);
        font-weight: 1000;
    }

    .vt-cart-hero p {
        margin: 10px 0 0;
        color: rgba(255,255,255,.82);
        font-weight: 800;
    }

    .vt-cart-hero a {
        flex: 0 0 auto;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-inline: 20px;
        border-radius: 14px;
        background: #fff;
        color: var(--vt-primary-dark);
        font-weight: 1000;
    }

.vt-cart-message {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #ecfdf5;
    border: 1px solid rgba(22, 163, 74, .20);
    color: #15803d;
    font-weight: 900;
}

.vt-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 24px;
    align-items: start;
}

.vt-cart-items {
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--vt-soft-shadow);
    overflow: hidden;
}

.vt-cart-items-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(6, 73, 68, .09);
}

    .vt-cart-items-head h2 {
        margin: 0;
        color: #123b40;
        font-size: 20px;
        font-weight: 1000;
    }

    .vt-cart-items-head button {
        border: 0;
        background: transparent;
        color: #ef4444;
        font-size: 13px;
        font-weight: 1000;
        cursor: pointer;
    }

.vt-cart-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 130px 120px 140px 40px;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(6, 73, 68, .08);
}

    .vt-cart-item:last-child {
        border-bottom: 0;
    }

.vt-cart-item-img {
    display: block;
}

    .vt-cart-item-img img {
        width: 96px;
        height: 96px;
        border-radius: 18px;
        object-fit: cover;
        background: #f8fafc;
        border: 1px solid rgba(6, 73, 68, .08);
    }

.vt-cart-item-info {
    min-width: 0;
}

    .vt-cart-item-info h3 {
        margin: 0;
        color: #102f34;
        font-size: 16px;
        font-weight: 1000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vt-cart-item-info p {
        margin: 7px 0 0;
        color: #64748b;
        font-size: 13px;
        font-weight: 800;
    }

.vt-cart-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

    .vt-cart-item-tags span {
        display: inline-flex;
        height: 28px;
        align-items: center;
        padding-inline: 10px;
        border-radius: 999px;
        background: #f0fbfa;
        color: var(--vt-primary-dark);
        border: 1px solid rgba(0,139,131,.14);
        font-size: 11px;
        font-weight: 900;
    }

.vt-cart-item-price small,
.vt-cart-item-total small {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
}

.vt-cart-item-price b,
.vt-cart-item-total b {
    display: block;
    margin-top: 6px;
    color: #123b40;
    font-size: 15px;
    font-weight: 1000;
}

.vt-cart-item-total b {
    color: var(--vt-primary-dark);
}

.vt-cart-qty {
    display: inline-grid;
    grid-template-columns: 34px 44px 34px;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .vt-cart-qty button,
    .vt-cart-qty span {
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        border: 1px solid rgba(6, 73, 68, .12);
        background: #fff;
        color: #123b40;
        font-weight: 1000;
    }

    .vt-cart-qty button {
        cursor: pointer;
    }

        .vt-cart-qty button:disabled {
            opacity: .45;
            cursor: not-allowed;
        }

.vt-cart-remove button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: #fff1f2;
    color: #e11d48;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
}

.vt-cart-summary {
    position: sticky;
    top: 150px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--vt-soft-shadow);
    padding: 24px;
}

    .vt-cart-summary h2 {
        margin: 0;
        color: #123b40;
        font-size: 20px;
        font-weight: 1000;
    }

.vt-cart-coupon {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(6, 73, 68, .09);
}

    .vt-cart-coupon label {
        display: block;
        margin-bottom: 9px;
        color: #123b40;
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-cart-coupon div {
        display: flex;
        gap: 8px;
    }

    .vt-cart-coupon input {
        min-width: 0;
        flex: 1;
        height: 42px;
        border: 1px solid rgba(6, 73, 68, .12);
        border-radius: 13px;
        background: #f8fafc;
        padding-inline: 12px;
        outline: none;
        font-weight: 800;
    }

    .vt-cart-coupon button {
        width: 70px;
        border: 0;
        border-radius: 13px;
        background: var(--vt-primary);
        color: #fff;
        font-weight: 1000;
    }

    .vt-cart-coupon small {
        display: block;
        margin-top: 8px;
        color: #64748b;
        font-size: 11px;
        font-weight: 800;
    }

.vt-cart-summary-lines {
    display: grid;
    gap: 13px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(6, 73, 68, .09);
}

    .vt-cart-summary-lines div,
    .vt-cart-grand-total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .vt-cart-summary-lines span {
        color: #64748b;
        font-size: 13px;
        font-weight: 900;
    }

    .vt-cart-summary-lines b {
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

.vt-cart-grand-total {
    padding: 20px 0;
}

    .vt-cart-grand-total span {
        color: #123b40;
        font-size: 15px;
        font-weight: 1000;
    }

    .vt-cart-grand-total b {
        color: var(--vt-primary-dark);
        font-size: 25px;
        font-weight: 1000;
    }

.vt-cart-checkout {
    width: 100%;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: linear-gradient(135deg, #00a59b, #007a73);
    color: #fff;
    font-size: 15px;
    font-weight: 1000;
    box-shadow: 0 20px 42px rgba(0, 139, 131, .24);
}

.vt-cart-trust {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(6, 73, 68, .08);
}

    .vt-cart-trust span {
        color: #334155;
        font-size: 12px;
        font-weight: 900;
    }

.vt-cart-empty {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 80px 24px;
    border: 1px dashed rgba(6, 73, 68, .22);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--vt-soft-shadow);
    text-align: center;
}

.vt-cart-empty-icon {
    font-size: 64px;
}

.vt-cart-empty h2 {
    margin: 0;
    color: #123b40;
    font-size: 26px;
    font-weight: 1000;
}

.vt-cart-empty p {
    max-width: 560px;
    margin: 0;
    color: #64748b;
    font-weight: 800;
    line-height: 2;
}

.vt-cart-empty a {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding-inline: 22px;
    border-radius: 15px;
    background: var(--vt-primary);
    color: #fff;
    font-weight: 1000;
}

@media (max-width: 1200px) {
    .vt-cart-layout {
        grid-template-columns: 1fr;
    }

    .vt-cart-summary {
        position: relative;
        top: auto;
    }

    .vt-cart-item {
        grid-template-columns: 90px minmax(0, 1fr) 120px 120px 36px;
    }

    .vt-cart-item-price {
        display: none;
    }
}

@media (max-width: 768px) {
    .vt-cart-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }

    .vt-cart-item {
        grid-template-columns: 82px minmax(0, 1fr) 36px;
        gap: 14px;
    }

    .vt-cart-item-img img {
        width: 82px;
        height: 82px;
    }

    .vt-cart-qty,
    .vt-cart-item-total {
        grid-column: 1 / -1;
    }

    .vt-cart-item-total {
        display: flex;
        justify-content: space-between;
    }

    .vt-cart-remove {
        grid-column: 3;
        grid-row: 1;
    }
}
.vt-checkout-hero {
    display: flex;
    align-items: center;
    min-height: 210px;
    margin-bottom: 22px;
    padding: 42px 50px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(3, 43, 47, .95), rgba(0, 122, 115, .72)), url('/img/storefront/hero-gaming.jpg') center/cover no-repeat;
    color: #fff;
    box-shadow: var(--vt-shadow);
}

    .vt-checkout-hero span {
        display: inline-flex;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.22);
        font-size: 13px;
        font-weight: 900;
    }

    .vt-checkout-hero h1 {
        margin: 16px 0 0;
        font-size: clamp(30px, 3vw, 46px);
        font-weight: 1000;
    }

    .vt-checkout-hero p {
        margin: 10px 0 0;
        color: rgba(255,255,255,.82);
        font-weight: 800;
    }

.vt-checkout-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

    .vt-checkout-steps div {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 72px;
        padding: 16px;
        border: 1px solid rgba(6, 73, 68, .10);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
    }

    .vt-checkout-steps span {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: #f1f5f9;
        color: #64748b;
        font-weight: 1000;
    }

    .vt-checkout-steps b {
        color: #64748b;
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-checkout-steps .done span,
    .vt-checkout-steps .active span {
        background: var(--vt-primary);
        color: #fff;
    }

    .vt-checkout-steps .done b,
    .vt-checkout-steps .active b {
        color: #123b40;
    }

.vt-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
}

.vt-checkout-card,
.vt-checkout-summary {
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--vt-soft-shadow);
}

.vt-checkout-card {
    padding: 28px;
}

.vt-checkout-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

    .vt-checkout-card-head span {
        color: var(--vt-primary);
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-checkout-card-head h2 {
        margin: 6px 0 0;
        color: #123b40;
        font-size: 24px;
        font-weight: 1000;
    }

.vt-checkout-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.vt-checkout-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(6, 73, 68, .08);
}

    .vt-checkout-info-box > span {
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: #f0fbfa;
        color: var(--vt-primary);
        font-size: 22px;
    }

    .vt-checkout-info-box b {
        display: block;
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-checkout-info-box small {
        display: block;
        margin-top: 5px;
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.8;
    }

.vt-checkout-field {
    margin-top: 18px;
}

    .vt-checkout-field label {
        display: block;
        margin-bottom: 9px;
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-checkout-field input,
    .vt-checkout-field textarea {
        width: 100%;
        border: 1px solid rgba(6, 73, 68, .12);
        border-radius: 16px;
        background: #f8fafc;
        color: #102a2d;
        padding: 14px 16px;
        outline: none;
        font-weight: 800;
        resize: vertical;
    }

    .vt-checkout-field input {
        height: 48px;
    }

        .vt-checkout-field input:focus,
        .vt-checkout-field textarea:focus {
            background: #fff;
            border-color: rgba(0, 139, 131, .36);
            box-shadow: 0 0 0 4px rgba(0, 139, 131, .08);
        }

    .vt-checkout-field small {
        display: block;
        margin-top: 8px;
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
    }

.vt-checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

    .vt-checkout-actions a,
    .vt-checkout-actions button {
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 17px;
        font-size: 15px;
        font-weight: 1000;
    }

    .vt-checkout-actions a {
        width: 180px;
        background: #fff;
        border: 1px solid rgba(6, 73, 68, .12);
        color: #123b40;
    }

    .vt-checkout-actions button {
        flex: 1;
        border: 0;
        background: linear-gradient(135deg, #00a59b, #007a73);
        color: #fff;
        box-shadow: 0 20px 42px rgba(0, 139, 131, .24);
        cursor: pointer;
    }

.vt-checkout-summary {
    position: sticky;
    top: 150px;
    padding: 24px;
}

    .vt-checkout-summary h2 {
        margin: 0;
        color: #123b40;
        font-size: 20px;
        font-weight: 1000;
    }

.vt-checkout-items {
    display: grid;
    gap: 12px;
    max-height: 360px;
    overflow-y: auto;
    margin-top: 18px;
    padding-left: 4px;
}

.vt-checkout-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 17px;
    background: #f8fafc;
    border: 1px solid rgba(6, 73, 68, .07);
}

    .vt-checkout-item img {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        object-fit: cover;
        background: #fff;
    }

    .vt-checkout-item div {
        min-width: 0;
    }

    .vt-checkout-item b {
        display: block;
        color: #123b40;
        font-size: 13px;
        font-weight: 1000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vt-checkout-item span,
    .vt-checkout-item small {
        display: block;
        margin-top: 4px;
        color: #64748b;
        font-size: 11px;
        font-weight: 800;
    }

    .vt-checkout-item strong {
        color: var(--vt-primary-dark);
        font-size: 13px;
        font-weight: 1000;
        white-space: nowrap;
    }

.vt-checkout-lines {
    display: grid;
    gap: 13px;
    padding: 20px 0;
    margin-top: 18px;
    border-top: 1px solid rgba(6, 73, 68, .09);
    border-bottom: 1px solid rgba(6, 73, 68, .09);
}

    .vt-checkout-lines div,
    .vt-checkout-total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .vt-checkout-lines span {
        color: #64748b;
        font-size: 13px;
        font-weight: 900;
    }

    .vt-checkout-lines b {
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

.vt-checkout-total {
    padding: 20px 0;
}

    .vt-checkout-total span {
        color: #123b40;
        font-size: 15px;
        font-weight: 1000;
    }

    .vt-checkout-total b {
        color: var(--vt-primary-dark);
        font-size: 25px;
        font-weight: 1000;
    }

.vt-checkout-trust {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(6, 73, 68, .08);
}

    .vt-checkout-trust span {
        color: #334155;
        font-size: 12px;
        font-weight: 900;
    }

.vt-checkout-error {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, .20);
    color: #b91c1c;
    font-weight: 900;
}

@media (max-width: 1200px) {
    .vt-checkout-layout {
        grid-template-columns: 1fr;
    }

    .vt-checkout-summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .vt-checkout-hero {
        padding: 30px 24px;
    }

    .vt-checkout-steps,
    .vt-checkout-info-grid {
        grid-template-columns: 1fr;
    }

    .vt-checkout-actions {
        flex-direction: column;
    }

        .vt-checkout-actions a {
            width: 100%;
        }

    .vt-checkout-card {
        padding: 22px;
    }
}
.vt-auth-link,
.vt-login-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding-inline: 16px;
    border-radius: 999px;
    background: #f0fbfa;
    color: var(--vt-primary-dark);
    border: 1px solid rgba(0,139,131,.16);
    font-size: 13px;
    font-weight: 1000;
}

.vt-user-menu {
    position: relative;
}

.vt-user-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 999px;
    background: #fff;
    color: #123b40;
    padding-inline: 12px;
    font-size: 13px;
    font-weight: 1000;
    cursor: pointer;
}

.vt-user-avatar {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #f0fbfa;
}

.vt-user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 100;
    width: 210px;
    padding: 10px;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .18s ease;
}

.vt-user-menu:hover .vt-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vt-user-dropdown a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding-inline: 12px;
    border-radius: 12px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

    .vt-user-dropdown a:hover {
        background: #f0fbfa;
        color: var(--vt-primary-dark);
    }

    .vt-user-dropdown a.danger {
        color: #dc2626;
    }

        .vt-user-dropdown a.danger:hover {
            background: #fef2f2;
        }

.vt-user-dropdown hr {
    border: 0;
    border-top: 1px solid rgba(6, 73, 68, .10);
    margin: 8px 0;
}

.vt-header-actions {
    gap: 10px;
}

.vt-auth-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 28px;
    align-items: stretch;
    min-height: 650px;
}

.vt-auth-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 620px;
    border-radius: 28px;
    padding: 60px;
    color: #fff;
    background: linear-gradient(90deg, rgba(3,43,47,.96), rgba(0,122,115,.72)), url('/img/storefront/hero-gaming.jpg') center/cover no-repeat;
    box-shadow: var(--vt-shadow);
}

    .vt-auth-visual > span {
        display: inline-flex;
        width: max-content;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.24);
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-auth-visual h1 {
        margin: 22px 0 0;
        max-width: 620px;
        font-size: clamp(34px, 4vw, 58px);
        font-weight: 1000;
        line-height: 1.45;
    }

    .vt-auth-visual p {
        max-width: 590px;
        margin: 18px 0 0;
        color: rgba(255,255,255,.82);
        font-size: 16px;
        font-weight: 800;
        line-height: 2.1;
    }

.vt-auth-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

    .vt-auth-benefits div {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        padding-inline: 15px;
        border-radius: 999px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        font-size: 13px;
        font-weight: 900;
    }

.vt-auth-card {
    align-self: center;
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--vt-soft-shadow);
    padding: 34px;
}

.vt-auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

    .vt-auth-logo img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .vt-auth-logo b {
        color: var(--vt-primary-dark);
        font-size: 28px;
        font-weight: 1000;
    }

.vt-auth-card h2 {
    margin: 0;
    color: #123b40;
    font-size: 26px;
    font-weight: 1000;
}

.vt-auth-card > p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    line-height: 2;
}

.vt-auth-error {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, .18);
    color: #b91c1c;
    font-size: 13px;
    font-weight: 900;
}

.vt-auth-form {
    display: grid;
    gap: 17px;
    margin-top: 24px;
}

    .vt-auth-form label {
        display: block;
        margin-bottom: 8px;
        color: #123b40;
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-auth-form input {
        width: 100%;
        height: 48px;
        border: 1px solid rgba(6, 73, 68, .12);
        border-radius: 16px;
        background: #f8fafc;
        color: #102a2d;
        padding-inline: 15px;
        outline: none;
        font-weight: 800;
    }

        .vt-auth-form input:focus {
            background: #fff;
            border-color: rgba(0,139,131,.36);
            box-shadow: 0 0 0 4px rgba(0,139,131,.08);
        }

    .vt-auth-form span {
        display: block;
        margin-top: 6px;
        color: #dc2626;
        font-size: 11px;
        font-weight: 800;
    }

    .vt-auth-form button {
        height: 52px;
        border: 0;
        border-radius: 17px;
        background: linear-gradient(135deg, #00a59b, #007a73);
        color: #fff;
        font-size: 15px;
        font-weight: 1000;
        box-shadow: 0 20px 42px rgba(0,139,131,.24);
        cursor: pointer;
    }

.vt-auth-footer-link {
    margin-top: 22px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

    .vt-auth-footer-link a {
        color: var(--vt-primary);
        font-weight: 1000;
    }

@media (max-width: 1100px) {
    .vt-auth-page {
        grid-template-columns: 1fr;
    }

    .vt-auth-visual {
        min-height: auto;
        padding: 44px 30px;
    }
}

@media (max-width: 768px) {
    .vt-user-menu-main,
    .vt-login-pill {
        display: none;
    }

    .vt-auth-card {
        padding: 26px;
    }
}
.vt-orders-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 210px;
    margin-bottom: 22px;
    padding: 42px 50px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(3, 43, 47, .95), rgba(0, 122, 115, .72)), url('/img/storefront/hero-gaming.jpg') center/cover no-repeat;
    color: #fff;
    box-shadow: var(--vt-shadow);
}

    .vt-orders-hero span {
        display: inline-flex;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.22);
        font-size: 13px;
        font-weight: 900;
    }

    .vt-orders-hero h1 {
        margin: 16px 0 0;
        font-size: clamp(30px, 3vw, 46px);
        font-weight: 1000;
    }

    .vt-orders-hero p {
        margin: 10px 0 0;
        color: rgba(255,255,255,.82);
        font-weight: 800;
    }

    .vt-orders-hero a {
        flex: 0 0 auto;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-inline: 20px;
        border-radius: 14px;
        background: #fff;
        color: var(--vt-primary-dark);
        font-weight: 1000;
    }

.vt-orders-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

    .vt-orders-stats div {
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 92px;
        padding: 18px;
        border: 1px solid rgba(6, 73, 68, .10);
        border-radius: 20px;
        background: rgba(255,255,255,.94);
        box-shadow: var(--vt-soft-shadow);
    }

    .vt-orders-stats span {
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        border-radius: 17px;
        background: #f0fbfa;
        font-size: 22px;
    }

    .vt-orders-stats b {
        display: block;
        color: #123b40;
        font-size: 18px;
        font-weight: 1000;
    }

    .vt-orders-stats small {
        display: block;
        margin-top: 4px;
        color: #64748b;
        font-size: 12px;
        font-weight: 900;
    }

.vt-orders-layout {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.vt-orders-list,
.vt-order-details {
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--vt-soft-shadow);
}

.vt-orders-list {
    position: sticky;
    top: 150px;
    overflow: hidden;
}

.vt-orders-list-head {
    padding: 22px 24px;
    border-bottom: 1px solid rgba(6, 73, 68, .09);
}

    .vt-orders-list-head span {
        color: var(--vt-primary);
        font-size: 12px;
        font-weight: 1000;
    }

    .vt-orders-list-head h2 {
        margin: 6px 0 0;
        color: #123b40;
        font-size: 20px;
        font-weight: 1000;
    }

.vt-order-card {
    display: block;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(6, 73, 68, .08);
    color: #123b40;
    transition: all .18s ease;
}

    .vt-order-card:last-child {
        border-bottom: 0;
    }

    .vt-order-card:hover,
    .vt-order-card.active {
        background: #f0fbfa;
    }

    .vt-order-card.active {
        box-shadow: inset -4px 0 0 var(--vt-primary);
    }

.vt-order-card-top,
.vt-order-card-bottom,
.vt-order-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

    .vt-order-card-top b {
        display: block;
        color: #123b40;
        font-size: 16px;
        font-weight: 1000;
    }

    .vt-order-card-top small {
        display: block;
        margin-top: 5px;
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
    }

.vt-order-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding-inline: 11px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 11px;
    font-weight: 1000;
}

.vt-order-card-meta {
    margin-top: 14px;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.vt-order-card-bottom {
    margin-top: 14px;
}

    .vt-order-card-bottom strong {
        color: var(--vt-primary-dark);
        font-size: 16px;
        font-weight: 1000;
    }

    .vt-order-card-bottom em {
        color: var(--vt-primary);
        font-size: 12px;
        font-style: normal;
        font-weight: 1000;
    }

.vt-order-details {
    padding: 26px;
    min-height: 520px;
}

.vt-order-details-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

    .vt-order-details-head span {
        color: var(--vt-primary);
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-order-details-head h2 {
        margin: 6px 0 0;
        color: #123b40;
        font-size: 26px;
        font-weight: 1000;
    }

    .vt-order-details-head p {
        margin: 6px 0 0;
        color: #64748b;
        font-size: 13px;
        font-weight: 800;
    }

.vt-order-details-status {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding-inline: 14px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 12px;
    font-weight: 1000;
}

.vt-order-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

    .vt-order-timeline div {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 62px;
        padding: 14px;
        border-radius: 17px;
        background: #f8fafc;
        border: 1px solid rgba(6, 73, 68, .08);
    }

    .vt-order-timeline span {
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 13px;
        background: #e2e8f0;
        color: #64748b;
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-order-timeline b {
        color: #64748b;
        font-size: 12px;
        font-weight: 1000;
    }

    .vt-order-timeline .done span,
    .vt-order-timeline .active span {
        background: var(--vt-primary);
        color: #fff;
    }

    .vt-order-timeline .done b,
    .vt-order-timeline .active b {
        color: #123b40;
    }

.vt-order-items {
    display: grid;
    gap: 16px;
}

.vt-order-item {
    border: 1px solid rgba(6, 73, 68, .10);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.vt-order-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
}

.vt-order-item h3 {
    margin: 0;
    color: #123b40;
    font-size: 16px;
    font-weight: 1000;
}

.vt-order-item p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.vt-order-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

    .vt-order-item-meta span {
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding-inline: 10px;
        border-radius: 999px;
        background: #f8fafc;
        color: #64748b;
        font-size: 11px;
        font-weight: 900;
    }

.vt-delivery-status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding-inline: 12px;
    border-radius: 999px;
    background: #f0fbfa;
    color: var(--vt-primary-dark);
    font-size: 11px;
    font-weight: 1000;
    white-space: nowrap;
}

.vt-delivery-list {
    display: grid;
    gap: 12px;
    padding: 0 18px 18px;
}

.vt-delivery-box {
    padding: 16px;
    border-radius: 18px;
    background: #f0fbfa;
    border: 1px solid rgba(0,139,131,.14);
}

.vt-delivery-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

    .vt-delivery-box-head b {
        color: #123b40;
        font-size: 13px;
        font-weight: 1000;
    }

.vt-copy-btn {
    height: 32px;
    border: 0;
    border-radius: 11px;
    padding-inline: 13px;
    background: var(--vt-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
    cursor: pointer;
}

    .vt-copy-btn.copied {
        background: #16a34a;
    }

.vt-delivery-box pre {
    margin: 0;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    color: var(--vt-primary-dark);
    border: 1px solid rgba(6, 73, 68, .08);
    white-space: pre-wrap;
    word-break: break-word;
    direction: ltr;
    text-align: center;
    font-family: Consolas, Monaco, monospace;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.8;
}

.vt-delivery-box small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

.vt-delivery-pending {
    display: grid;
    gap: 6px;
    margin: 0 18px 18px;
    padding: 15px;
    border-radius: 17px;
    background: #fff7ed;
    border: 1px solid rgba(249,115,22,.18);
}

    .vt-delivery-pending b {
        color: #9a3412;
        font-size: 13px;
        font-weight: 1000;
    }

    .vt-delivery-pending span {
        color: #9a3412;
        font-size: 12px;
        font-weight: 800;
    }

.vt-order-payment-summary {
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(6, 73, 68, .08);
}

    .vt-order-payment-summary h3 {
        margin: 0 0 16px;
        color: #123b40;
        font-size: 18px;
        font-weight: 1000;
    }

    .vt-order-payment-summary div {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        padding: 9px 0;
        color: #64748b;
        font-size: 13px;
        font-weight: 900;
    }

    .vt-order-payment-summary b {
        color: #123b40;
        font-weight: 1000;
    }

    .vt-order-payment-summary .total {
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid rgba(6, 73, 68, .10);
        color: #123b40;
    }

        .vt-order-payment-summary .total b {
            color: var(--vt-primary-dark);
            font-size: 20px;
        }

.vt-order-details-empty,
.vt-orders-empty {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 70px 24px;
    text-align: center;
}

    .vt-order-details-empty div,
    .vt-orders-empty div {
        font-size: 54px;
    }

    .vt-order-details-empty b,
    .vt-orders-empty h2 {
        margin: 0;
        color: #123b40;
        font-size: 24px;
        font-weight: 1000;
    }

    .vt-order-details-empty p,
    .vt-orders-empty p {
        max-width: 560px;
        margin: 0;
        color: #64748b;
        font-weight: 800;
        line-height: 2;
    }

.vt-orders-empty {
    border: 1px dashed rgba(6, 73, 68, .20);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--vt-soft-shadow);
}

    .vt-orders-empty a {
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-inline: 22px;
        border-radius: 15px;
        background: var(--vt-primary);
        color: #fff;
        font-weight: 1000;
    }

@media (max-width: 1200px) {
    .vt-orders-layout {
        grid-template-columns: 1fr;
    }

    .vt-orders-list {
        position: relative;
        top: auto;
    }

    .vt-orders-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vt-orders-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }

    .vt-orders-stats,
    .vt-order-timeline {
        grid-template-columns: 1fr;
    }

    .vt-order-details {
        padding: 20px;
    }

    .vt-order-details-head,
    .vt-order-item-head {
        flex-direction: column;
    }
}
.vt-user-dropdown-head {
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(6, 73, 68, .10);
    margin-bottom: 8px;
}

    .vt-user-dropdown-head b {
        display: block;
        color: #123b40;
        font-size: 14px;
        font-weight: 1000;
    }

    .vt-user-dropdown-head small {
        display: block;
        margin-top: 5px;
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
    }

.vt-mock-payment {
    min-height: 620px;
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.vt-mock-payment-card {
    width: min(100%, 520px);
    padding: 36px;
    border-radius: 28px;
    border: 1px solid rgba(6, 73, 68, .10);
    background: radial-gradient(circle at top right, rgba(0,139,131,.10), transparent 38%), #fff;
    box-shadow: var(--vt-shadow);
    text-align: center;
}

.vt-mock-payment-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: #f0fbfa;
    font-size: 34px;
}

.vt-mock-payment-card h1 {
    margin: 0;
    color: #123b40;
    font-size: 28px;
    font-weight: 1000;
}

.vt-mock-payment-card p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    line-height: 2;
}

.vt-mock-payment-amount {
    margin-top: 26px;
    padding: 22px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(6, 73, 68, .08);
}

    .vt-mock-payment-amount span {
        display: block;
        color: #64748b;
        font-size: 13px;
        font-weight: 900;
    }

    .vt-mock-payment-amount b {
        display: block;
        margin-top: 8px;
        color: var(--vt-primary-dark);
        font-size: 30px;
        font-weight: 1000;
    }

.vt-mock-payment-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

    .vt-mock-payment-actions button {
        width: 100%;
        height: 52px;
        border: 0;
        border-radius: 17px;
        font-size: 15px;
        font-weight: 1000;
        cursor: pointer;
    }

    .vt-mock-payment-actions .pay {
        background: linear-gradient(135deg, #00a59b, #007a73);
        color: #fff;
        box-shadow: 0 20px 42px rgba(0,139,131,.24);
    }

    .vt-mock-payment-actions .cancel {
        background: #f1f5f9;
        color: #475569;
    }