:root {
    --brand-primary: #2563eb;
    --brand-primary-hover: #1d4ed8;
    --brand-primary-light: #dbeafe;
    --brand-primary-50: #eff6ff;
    --brand-secondary: #0ea5e9;
    --brand-accent: #f59e0b;
    --brand-accent-light: #fef3c7;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --info: #06b6d4;
    --info-light: #cffafe;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --header-height: 64px;
    --container-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.vd-page {
    width: min(100%, var(--container-max));
    margin: 0 auto;
    padding: 28px var(--space-6) 56px;
}

.vd-section,
.vd-detail-hero,
.vd-cart-panel {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.vd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: var(--space-6);
    align-items: start;
}

.vd-layout--preview {
    grid-template-columns: minmax(0, 1fr);
}

.vd-member-preview-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding: 18px 20px;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.vd-member-preview-banner strong {
    color: var(--gray-900);
    font-size: var(--text-lg);
    font-weight: 800;
}

.vd-member-preview-banner p {
    margin: 5px 0 0;
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.vd-member-preview-banner a,
.vd-product-login-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    background: var(--brand-primary);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 800;
}

.vd-member-preview-banner a:hover,
.vd-product-login-link:hover {
    background: var(--brand-primary-hover);
    color: #fff;
}

.vd-detail-stack {
    display: grid;
    gap: var(--space-6);
    min-width: 0;
}

.vd-section {
    padding: 24px;
    min-width: 0;
}

.vd-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5);
    margin-bottom: 18px;
}

.vd-section-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0;
}

.vd-section-heading--main {
    align-items: flex-start;
}

.vd-section-heading--main h1 {
    margin: 0;
    color: var(--gray-900);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.vd-section-heading p {
    max-width: 420px;
    margin: 0;
    color: var(--gray-500);
    font-size: var(--text-sm);
}

.vd-section-heading--main p {
    max-width: 520px;
}

.vd-campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vd-campaign-card {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.vd-campaign-card:hover {
    border-color: rgba(37, 99, 235, 0.36);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.vd-campaign-link {
    display: block;
    height: 100%;
}

.vd-campaign-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-900);
}

.vd-campaign-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-campaign-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.35));
}

.vd-campaign-play {
    position: absolute;
    z-index: 1;
}

.vd-campaign-play {
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-primary);
    font-size: 26px;
    transform: translate(-50%, -50%);
}

.vd-campaign-body {
    padding: 15px;
}

.vd-campaign-body h3 {
    margin: 6px 0 8px;
    color: var(--gray-900);
    font-size: 17px;
    line-height: 1.38;
    font-weight: 700;
    letter-spacing: 0;
}

.vd-campaign-body p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0;
    overflow: hidden;
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vd-campaign-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-top: 14px;
    color: var(--gray-500);
    font-size: var(--text-xs);
    font-weight: 700;
}

.vd-campaign-meta strong {
    color: var(--brand-primary);
}

.vd-detail-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.vd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-700);
    font-size: var(--text-sm);
    font-weight: 700;
}

.vd-back-link:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary-50);
    color: var(--brand-primary);
}

.vd-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 20px;
    padding: 20px;
}

.vd-video-frame {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: var(--radius-md);
    background: var(--gray-900);
}

.vd-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.vd-video-mobile-link {
    display: none;
}

.vd-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.vd-detail-info h1 {
    margin: 14px 0 12px;
    color: var(--gray-900);
    font-size: 30px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: 0;
}

.vd-detail-info p {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--text-base);
}

.vd-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.vd-detail-stats span {
    padding: 7px 10px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: var(--text-xs);
    font-weight: 700;
}

.vd-product-list {
    display: grid;
    gap: 14px;
}

.vd-product-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.vd-product-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 132px;
    min-height: 132px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-400);
    font-size: 32px;
}

.vd-product-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-product-visual.is-empty {
    background: var(--gray-100);
}

.vd-product-body {
    min-width: 0;
}

.vd-product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
}

.vd-product-head h3 {
    margin: 4px 0 0;
    color: var(--gray-900);
    font-size: var(--text-lg);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0;
}

.vd-product-brand {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--brand-primary);
    font-size: var(--text-xs);
    font-weight: 800;
}

.vd-stock-badge {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: var(--radius-full);
    background: var(--success-light);
    color: #047857;
    font-size: 11px;
    font-weight: 700;
}

.vd-stock-badge.is-low {
    background: var(--warning-light);
    color: #b45309;
}

.vd-stock-badge.is-unlimited {
    background: #eef2ff;
    color: #3730a3;
}

.vd-product-body p {
    margin: 8px 0 0;
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.vd-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 10px;
}

.vd-product-price strong {
    color: var(--gray-900);
    font-size: var(--text-xl);
    font-weight: 800;
}

.vd-product-price span {
    color: var(--gray-500);
    font-size: var(--text-xs);
    font-weight: 600;
}

.vd-product-price.is-locked strong {
    color: var(--brand-primary);
    font-size: var(--text-lg);
}

.vd-product-price.is-locked strong i {
    margin-right: 4px;
    font-size: 0.85em;
}

.vd-product-limits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.vd-product-limits span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: var(--radius-full);
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-size: var(--text-xs);
    font-weight: 700;
}

.vd-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
}

.vd-product-actions label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: 600;
}

.vd-product-actions input {
    width: 76px;
    height: 38px;
    padding: 0 8px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-900);
    font: inherit;
    font-weight: 600;
}

.vd-product-actions button,
.vd-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--brand-primary);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 700;
}

.vd-product-actions button:hover,
.vd-order-button:hover {
    background: var(--brand-primary-hover);
}

.vd-product-actions button:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

.vd-product-login-link {
    min-height: 44px;
}

.vd-cart-panel {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    padding: 20px;
}

.vd-cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: 14px;
}

.vd-cart-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vd-cart-header h2 {
    margin: 4px 0 0;
    color: var(--gray-900);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0;
}

.vd-cart-count {
    padding: 6px 9px;
    border-radius: var(--radius-full);
    background: var(--brand-primary-50);
    color: var(--brand-primary);
    font-size: var(--text-xs);
    font-weight: 700;
}

.vd-cart-close,
.vd-mobile-cart-bar,
.vd-cart-backdrop {
    display: none;
}

.vd-cart-empty {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 130px;
    padding: 18px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--gray-500);
    text-align: center;
}

.vd-cart-empty.is-hidden {
    display: none;
}

.vd-cart-empty i {
    color: var(--gray-400);
    font-size: 28px;
}

.vd-cart-empty p {
    margin: 0;
    font-size: var(--text-sm);
    font-weight: 600;
}

.vd-cart-list {
    display: grid;
    gap: 10px;
}

.vd-cart-item {
    display: grid;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.vd-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.vd-cart-item-name {
    color: var(--gray-900);
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.35;
}

.vd-cart-item-price {
    color: var(--gray-500);
    font-size: var(--text-xs);
    font-weight: 600;
}

.vd-cart-remove,
.vd-cart-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-600);
}

.vd-cart-remove:hover,
.vd-cart-qty button:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.vd-cart-qty button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.vd-cart-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vd-cart-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vd-cart-qty-control span {
    min-width: 26px;
    color: var(--gray-900);
    font-size: var(--text-sm);
    font-weight: 700;
    text-align: center;
}

.vd-cart-subtotal {
    color: var(--gray-900);
    font-size: var(--text-sm);
    font-weight: 700;
}

.vd-cart-breakdown {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
}

.vd-cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.vd-cart-summary-row span {
    color: var(--gray-500);
    font-size: var(--text-xs);
    font-weight: 700;
    white-space: nowrap;
}

.vd-cart-summary-row strong {
    min-width: 0;
    color: var(--gray-800);
    font-size: var(--text-sm);
    font-weight: 800;
    text-align: right;
    overflow-wrap: anywhere;
}

.vd-cart-shipping-hint {
    margin: 2px 0 0;
    padding-top: 8px;
    border-top: 1px dashed var(--gray-200);
    color: var(--brand-primary);
    font-size: var(--text-xs);
    font-weight: 700;
    line-height: 1.45;
}

.vd-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.vd-cart-total span {
    color: var(--gray-500);
    font-size: var(--text-sm);
    font-weight: 600;
}

.vd-cart-total strong {
    color: var(--gray-900);
    font-size: var(--text-xl);
    font-weight: 800;
}

.vd-order-button {
    width: 100%;
    min-height: 44px;
    margin-top: 14px;
}

.vd-cart-note {
    margin: 10px 0 0;
    color: var(--gray-500);
    font-size: var(--text-xs);
    text-align: center;
}

.vd-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    max-width: min(360px, calc(100vw - 40px));
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: var(--gray-900);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.16s, transform 0.16s;
}

.vd-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .vd-layout,
    .vd-detail-hero {
        grid-template-columns: 1fr;
    }

    .vd-cart-panel {
        position: static;
    }

    .vd-campaign-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.vd-cart-open {
        overflow: hidden;
        touch-action: none;
    }

    .vd-page {
        padding: 18px var(--space-4) 104px;
    }

    .vd-section,
    .vd-detail-hero,
    .vd-cart-panel {
        padding: 18px;
    }

    .vd-section-heading--main h1,
    .vd-detail-info h1 {
        font-size: 26px;
    }

    .vd-detail-info p,
    .vd-product-body p,
    .vd-section-heading p {
        color: var(--gray-700);
        font-size: 15px;
        line-height: 1.65;
    }

    .vd-back-link {
        min-height: 48px;
        padding: 0 16px;
        font-size: 15px;
    }

    .vd-campaign-body h3,
    .vd-product-head h3 {
        font-size: 19px;
    }

    .vd-campaign-meta,
    .vd-stock-badge,
    .vd-detail-stats span {
        font-size: 13px;
    }

    .vd-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .vd-member-preview-banner {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
    }

    .vd-member-preview-banner a,
    .vd-product-login-link {
        width: 100%;
        min-height: 50px;
        font-size: 15px;
    }

    .vd-campaign-grid,
    .vd-product-card {
        grid-template-columns: 1fr;
    }

    .vd-video-frame,
    .vd-video-frame iframe {
        min-height: 220px;
    }

    .vd-video-frame iframe {
        pointer-events: auto;
    }

    .vd-video-mobile-link {
        position: static;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 14px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.96);
        color: var(--gray-900);
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    }

    .vd-video-mobile-link i {
        color: #ff0033;
        font-size: 17px;
    }

    .vd-product-visual {
        height: 150px;
        min-height: 150px;
    }

    .vd-product-head,
    .vd-product-actions,
    .vd-detail-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .vd-product-actions button,
    .vd-product-actions label,
    .vd-product-actions input {
        width: 100%;
    }

    .vd-product-actions button,
    .vd-order-button {
        min-height: 50px;
        font-size: 16px;
    }

    .vd-product-actions input {
        height: 50px;
        font-size: 17px;
    }

    .vd-product-actions label {
        align-items: flex-start;
        flex-direction: column;
        font-size: 15px;
    }

    .vd-cart-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 1300;
        max-height: min(82vh, 680px);
        overflow-y: auto;
        padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -16px 36px rgba(15, 23, 42, 0.16);
        transform: translateY(calc(100% + 16px));
        transition: transform 0.2s ease;
    }

    .vd-cart-panel.is-open {
        transform: translateY(0);
    }

    .vd-cart-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--gray-300);
        border-radius: var(--radius-md);
        background: #fff;
        color: var(--gray-700);
    }

    .vd-cart-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1290;
        border: 0;
        background: rgba(15, 23, 42, 0.42);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease;
    }

    .vd-cart-backdrop.is-open {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .vd-mobile-cart-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 1280;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 68px;
        padding: 12px 14px;
        border: 1px solid rgba(37, 99, 235, 0.28);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
        color: var(--gray-900);
        text-align: left;
    }

    body.account-menu-open .vd-mobile-cart-bar {
        animation: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
    }

    .vd-mobile-cart-copy {
        display: grid;
        gap: 2px;
    }

    .vd-mobile-cart-copy strong {
        font-size: 16px;
        font-weight: 700;
    }

    .vd-mobile-cart-copy span {
        color: var(--gray-600);
        font-size: 14px;
        font-weight: 600;
    }

    .vd-mobile-cart-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 78px;
        min-height: 44px;
        padding: 0 14px;
        border-radius: var(--radius-md);
        background: var(--brand-primary);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
    }

    .vd-mobile-cart-bar.has-items {
        border-color: rgba(37, 99, 235, 0.42);
    }

    .vd-mobile-cart-bar.is-highlighted {
        border-color: rgba(14, 165, 233, 0.78);
        background: var(--brand-primary-50);
        box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
        animation: vdCartPulse 0.9s ease;
    }

    .vd-mobile-cart-bar.is-highlighted .vd-mobile-cart-action {
        background: var(--brand-secondary);
    }

    @keyframes vdCartPulse {
        0% {
            transform: translateY(0) scale(1);
        }
        34% {
            transform: translateY(-5px) scale(1.015);
        }
        100% {
            transform: translateY(0) scale(1);
        }
    }

    .vd-cart-remove,
    .vd-cart-qty button {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .vd-cart-item-name,
    .vd-cart-subtotal {
        font-size: 15px;
    }

    .vd-cart-qty-control span {
        min-width: 34px;
        font-size: 17px;
    }
}
