/* ============================================
   VinCart - Indigo Theme v2.1
   Cohesive with the main VinTheme design
   ============================================ */

.vin-cart-order {
    color: var(--vt-text);
}

/* ============================================
   0. TOKEN ALIASES
   VinCart tokens inherit from the main VinTheme tokens.
   If the main VinTheme stylesheet is not loaded, the
   hard-coded fallbacks below keep the orderform legible.
   ============================================ */
:root {
    /* Brand */
    --vc-primary: var(--vt-primary, #4f46e5);
    --vc-primary-dark: var(--vt-primary-dark, #4338ca);
    --vc-primary-light: var(--vt-primary-light, #6366f1);
    --vc-primary-50: var(--vt-primary-50, #eef2ff);
    --vc-primary-100: var(--vt-primary-100, #e0e7ff);
    --vc-accent: #818cf8;

    /* Surfaces */
    --vc-surface: var(--vt-surface-1, #ffffff);
    --vc-surface-soft: var(--vt-surface-2, #f9fafb);
    --vc-surface-strong: var(--vt-surface-1, #ffffff);

    /* Text */
    --vc-text: var(--vt-text, #111827);
    --vc-text-muted: var(--vt-text-3, #6b7280);
    --vc-text-secondary: var(--vt-text-2, #4b5563);

    /* Borders */
    --vc-border: var(--vt-border, #e5e7eb);
    --vc-border-light: var(--vt-border-light, #f3f4f6);

    /* Shadows */
    --vc-shadow-sm: var(--vt-shadow-sm, 0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.04));
    --vc-shadow: var(--vt-shadow, 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05));
    --vc-shadow-lg: var(--vt-shadow-lg, 0 10px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04));
    --vc-shadow-xl: var(--vt-shadow-xl, 0 20px 40px -10px rgb(0 0 0 / 0.12));

    /* Radius */
    --vc-radius-xs: var(--vt-radius-xs, 4px);
    --vc-radius-sm: var(--vt-radius-sm, 6px);
    --vc-radius: var(--vt-radius, 10px);
    --vc-radius-lg: var(--vt-radius-lg, 14px);
    --vc-radius-xl: var(--vt-radius-xl, 20px);
    --vc-radius-full: var(--vt-radius-full, 9999px);
}

/* ============================================
   1. DESIGN TOKENS (fallbacks)
   These only matter when running the orderform in
   isolation (without the main theme stylesheet).
   ============================================ */

/* ============================================
   2. MAIN SHELL
   ============================================ */
.vin-cart-shell {
    padding: 0 0 1.5rem;
    background: var(--vt-bg);
    width: 100%;
    max-width: 100%;
}

.vin-cart-shell > * {
    max-width: 100%;
}

/* ============================================
   3. HERO - Indigo Gradient
   ============================================ */
.vin-cart-shell__hero {
    max-width: none;
    margin: 0 0 1.5rem;
    width: 100%;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid var(--vc-primary-200);
    border-radius: var(--vc-radius-xl);
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
    box-shadow: var(--vc-shadow-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vin-cart-shell__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.vin-cart-shell__hero::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.vin-cart-shell__hero > * {
    position: relative;
    z-index: 1;
}

.vin-cart-shell__hero--compact {
    max-width: none;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
.vin-cart-shell__eyebrow,
.vin-cart-panel__eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--vc-radius-full);
}

.vin-cart-shell__eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
}

.vin-cart-panel__eyebrow {
    background: var(--vc-primary-50);
    color: var(--vc-primary);
}

.vin-cart-shell__title,
.vin-cart-panel__title {
    margin: 0 0 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.vin-cart-shell__title {
    color: #fff;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
}

.vin-cart-panel__title {
    color: var(--vc-text);
    font-size: 1.35rem;
    font-weight: 700;
}

.vin-cart-shell__copy,
.vin-cart-panel__note {
    margin: 0;
    line-height: 1.6;
}

.vin-cart-shell__copy {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.vin-cart-panel__note {
    color: var(--vc-text-muted);
    font-size: 0.9375rem;
}

/* ============================================
   5. BADGES
   ============================================ */
.vin-cart-shell__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.vin-cart-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--vc-radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.vin-cart-badge i {
    font-size: 0.875rem;
}

/* ============================================
   6. LAYOUT GRID
   ============================================ */
.vin-cart-shell__layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.vin-cart-shell--domain .vin-cart-shell__layout,
.vin-cart-shell--domain {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.vin-cart-shell__assist,
.vin-cart-shell__stage {
    min-width: 0;
}

/* ============================================
   7. PANELS
   ============================================ */
.vin-cart-panel,
.vin-cart-stage-card,
.vin-cart-category-nav {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    background: var(--vc-surface);
    box-shadow: var(--vc-shadow-sm);
}

.vin-cart-panel {
    padding: 1.5rem;
}

.vin-cart-panel + .vin-cart-panel,
.vin-cart-panel + .vin-cart-category-nav,
.vin-cart-category-nav + .vin-cart-panel {
    margin-top: 1rem;
}

.vin-cart-panel--soft {
    background: var(--vc-surface-soft);
}

.vin-cart-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    color: var(--vc-primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--vc-radius);
    transition: all 0.2s;
}

.vin-cart-panel__link:hover {
    background: var(--vc-primary-50);
    color: var(--vc-primary-dark);
}

/* ============================================
   8. STEPS LIST
   ============================================ */
.vin-cart-steps {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--vc-text-secondary);
    line-height: 1.7;
}

.vin-cart-steps li + li {
    margin-top: 0.7rem;
}

.vin-cart-steps li::marker {
    color: var(--vc-primary);
    font-weight: 700;
}

/* ============================================
   9. STAGE CARD
   ============================================ */
.vin-cart-stage-card {
    padding: clamp(1rem, 2vw, 1.5rem);
}

/* Step cards (sticky summary on lg+) */
.vin-cart-summary-card {
    position: sticky;
    top: calc(var(--vt-header-height, 64px) + 1rem);
}

@media (max-width: 991.98px) {
    .vin-cart-summary-card {
        position: static;
    }
}

.vin-cart-step {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    background: var(--vc-surface);
    box-shadow: var(--vc-shadow-sm);
    padding: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: var(--vt-space-4, 1rem);
}

.vin-cart-step__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--vt-space-3, 0.75rem);
    padding-bottom: var(--vt-space-3, 0.75rem);
    margin-bottom: var(--vt-space-4, 1rem);
    border-bottom: 1px solid var(--vc-border-light);
}

.vin-cart-step__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--vc-text);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vin-cart-step__title i {
    color: var(--vc-primary);
}

.vin-cart-step__action {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vc-primary);
}

/* ============================================
   10. CATEGORY NAVIGATION
   ============================================ */
.vin-cart-category-nav {
    overflow: hidden;
}

.vin-cart-category-nav .panel-sidebar,
.vin-cart-category-nav .categories-collapsed {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.vin-cart-category-nav .list-group-item {
    border: none;
    border-radius: var(--vc-radius);
    margin: 0.25rem 0;
    padding: 0.75rem 1rem;
    color: var(--vc-text-secondary);
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.vin-cart-category-nav .list-group-item i {
    color: var(--vc-text-muted);
    width: 18px;
    text-align: center;
}

.vin-cart-category-nav .list-group-item:hover {
    background: var(--vc-surface-soft);
    color: var(--vc-primary);
}

.vin-cart-category-nav .list-group-item:hover i {
    color: var(--vc-primary);
}

.vin-cart-category-nav .list-group-item.active {
    background: var(--vc-primary-50);
    color: var(--vc-primary);
    font-weight: 600;
    border-left: 3px solid var(--vc-primary);
}

.vin-cart-category-nav .list-group-item.active i {
    color: var(--vc-primary);
}

/* ============================================
   11. APP CONTAINER
   ============================================ */
.vin-cart-app {
    min-height: 540px;
}

/* ============================================
   12. RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
    .vin-cart-shell__layout,
    .vin-cart-shell--domain {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .vin-cart-shell {
        padding: 1rem;
    }

    .vin-cart-shell__hero {
        border-radius: var(--vc-radius-lg);
        padding: 1.5rem;
    }

    .vin-cart-shell__title {
        font-size: 1.75rem;
    }

    .vin-cart-badge {
        width: 100%;
        justify-content: center;
    }

    .vin-cart-panel,
    .vin-cart-stage-card,
    .vin-cart-category-nav {
        border-radius: var(--vc-radius);
    }
}

/* ============================================
   13. BUTTONS & FORMS
   These rules polish the buttons and inputs that
   ship with the standard_cart checkout partial.
   ============================================ */
.vin-cart-order .btn-primary {
    background: var(--vc-primary);
    border-color: var(--vc-primary);
    color: #fff;
    border-radius: var(--vc-radius);
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    transition: all 0.2s;
}

.vin-cart-order .btn-primary:hover,
.vin-cart-order .btn-primary:focus {
    background: var(--vc-primary-dark);
    border-color: var(--vc-primary-dark);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.vin-cart-order .btn-outline-primary {
    border-color: var(--vc-primary);
    color: var(--vc-primary);
    border-radius: var(--vc-radius);
    font-weight: 600;
}

.vin-cart-order .btn-outline-primary:hover {
    background: var(--vc-primary-50);
    color: var(--vc-primary-dark);
}

.vin-cart-order .form-control,
.vin-cart-order .form-select {
    border-radius: var(--vc-radius);
    border: 1px solid var(--vc-border);
    background: var(--vc-surface);
    color: var(--vc-text);
    transition: all 0.2s;
}

.vin-cart-order .form-control:focus,
.vin-cart-order .form-select:focus {
    border-color: var(--vc-primary);
    box-shadow: 0 0 0 3px var(--vc-primary-100);
}

/* Totals hierarchy in the summary card */
.vin-cart-totals {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vin-cart-totals li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--vc-text-secondary);
    font-size: 0.9375rem;
}

.vin-cart-totals li.is-grand {
    border-top: 1px solid var(--vc-border-light);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    color: var(--vc-text);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ============================================
   14. CART ITEM ROWS
   ============================================ */
.vin-cart-item {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius);
    background: var(--vc-surface);
    padding: 1rem 1.25rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.vin-cart-item + .vin-cart-item,
.vin-cart-item--addon {
    margin-top: 0.5rem;
}

.vin-cart-item:hover {
    border-color: var(--vc-primary-light);
    box-shadow: 0 0 0 3px var(--vc-primary-100);
}

.vin-cart-item--addon {
    background: var(--vc-surface-soft);
    border-style: dashed;
}

.vin-cart-item--addon:hover {
    border-color: var(--vc-primary-light);
}

.vin-cart-item--renewal {
    background: #fffbf0;
    border-color: #fde68a;
}

.vin-cart-item--renewal:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px #fef3c7;
}

.vin-cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vin-cart-item__name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--vc-text);
    line-height: 1.3;
}

.vin-cart-item__edit {
    color: var(--vc-primary);
    font-size: 0.8125rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.vin-cart-item__edit:hover {
    opacity: 1;
}

.vin-cart-item__group {
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
}

.vin-cart-item__domain {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--vc-text-secondary);
    background: var(--vc-surface-soft);
    padding: 0.15rem 0.6rem;
    border-radius: var(--vc-radius-full);
    border: 1px solid var(--vc-border-light);
}

.vin-cart-item__opts {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    color: var(--vc-text-muted);
    font-size: 0.8125rem;
}

.vin-cart-item__price {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--vc-primary);
}

.item-price .cycle {
    display: block;
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
}

.item-price .small {
    font-size: 0.75rem;
}

.vin-cart-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--vc-text-muted);
    border-radius: var(--vc-radius-sm);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.vin-cart-item__remove:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* ============================================
   15. COLUMN HEADERS
   ============================================ */
.view-cart-items-header {
    padding: 0.625rem 1.25rem;
    background: var(--vc-surface-soft);
    border: 1px solid var(--vc-border);
    border-bottom: none;
    border-radius: var(--vc-radius) var(--vc-radius) 0 0;
}

.tracking-wide {
    letter-spacing: 0.06em;
}

/* ============================================
   16. EMPTY CART
   ============================================ */
.vin-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed var(--vc-border);
    border-radius: var(--vc-radius-lg);
    background: var(--vc-surface-soft);
}

.vin-cart-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--vc-primary-50);
    color: var(--vc-primary);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.vin-cart-empty__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vc-text);
}

.vin-cart-empty__copy {
    margin: 0 0 1.5rem;
    color: var(--vc-text-muted);
    max-width: 340px;
}

/* ============================================
   17. SUMMARY CARD
   ============================================ */
.vin-cart-summary-card {
    position: sticky;
    top: calc(var(--vt-header-height, 64px) + 1rem);
    margin-top: 1rem;
}

.vin-cart-summary-card .vin-cart-panel {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    background: var(--vc-surface);
    box-shadow: var(--vc-shadow);
    padding: 1.5rem;
}

.vin-cart-summary-card .vin-cart-panel__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--vc-radius-full);
    background: var(--vc-primary-50);
    color: var(--vc-primary);
}

.vin-cart-summary-card__actions {
    margin-top: 1.25rem;
}

.vin-cart-summary-card__actions .btn-primary {
    background: var(--vc-primary);
    border: none;
    color: #fff;
    border-radius: var(--vc-radius);
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vin-cart-summary-card__actions .btn-primary:hover {
    background: var(--vc-primary-dark);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
    transform: translateY(-1px);
    color: #fff;
}

.vin-cart-summary-card__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vc-border-light);
    color: var(--vc-text-muted);
    font-size: 0.8125rem;
}

.vin-cart-summary-card__trust i {
    color: var(--vc-primary);
    margin-right: 0.3rem;
}

@media (max-width: 991.98px) {
    .vin-cart-summary-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .vin-cart-item {
        padding: 0.875rem 1rem;
    }

    .vin-cart-summary-card .vin-cart-panel {
        padding: 1.25rem;
    }

    .vin-cart-summary-card__trust {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   18. CONFIGURE PRODUCT PAGE
   ============================================ */
.vin-cart-configure .secondary-cart-body {
    min-width: 0;
}

/* Fix messy dropdown options - OS select styling */
.vin-cart-configure .form-select,
.vin-cart-configure select.form-control,
.vin-cart-order select[name^="configoption"] {
    max-width: 100%;
    width: 100%;
}

.vin-cart-configure .config-option-select {
    max-width: 500px;
    width: 100%;
}

.vin-cart-order select option {
    padding: 0.375rem 0.75rem;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

/* Ensure select dropdowns have proper height */
.vin-cart-configure .form-select,
.vin-cart-configure select {
    min-height: 42px;
    height: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.vin-cart-configure .secondary-cart-sidebar {
    position: sticky;
    top: 1rem;
}

.vin-cart-configure .order-summary {
    background: var(--vc-surface);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--vc-shadow-sm);
}

.vin-cart-configure .order-summary h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vc-text);
    margin: 0 0 1rem;
}

.vin-cart-configure .sub-heading {
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--vc-border-light);
}

.vin-cart-configure .sub-heading span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--vc-text);
}

.vin-cart-configure .panel-addon {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius);
    transition: all 0.2s;
}

.vin-cart-configure .panel-addon:hover {
    border-color: var(--vc-primary-light);
    box-shadow: var(--vc-shadow);
}

.vin-cart-configure .panel-addon-selected {
    border-color: var(--vc-primary);
    background: var(--vc-primary-50);
}

.vin-cart-configure #btnCompleteProductConfig {
    background: var(--vc-primary);
    border-color: var(--vc-primary);
    border-radius: var(--vc-radius);
    font-weight: 700;
}

.vin-cart-configure #btnCompleteProductConfig:hover {
    background: var(--vc-primary-dark);
    border-color: var(--vc-primary-dark);
}

.vin-cart-configure .panel-price {
    font-weight: 700;
    color: var(--vc-primary);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    text-align: right;
}

.vin-cart-configure .form-control:focus,
.vin-cart-configure .custom-select:focus {
    border-color: var(--vc-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

.vin-cart-order label {
    color: var(--vc-text);
    font-weight: 600;
}

/* ============================================
   16. FULL WIDTH OVERRIDE
   ============================================ */
.vin-cart-order #main-body > .container,
body.vt-cart-layout #main-body > .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.vt-cart-layout .vin-cart-shell {
    padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 3rem) !important;
}

@media (max-width: 575.98px) {
    body.vt-cart-layout .vin-cart-shell {
        padding: 1rem !important;
    }
}

/* ============================================
   19. DOMAIN SEARCH
   ============================================ */
.vin-domain-search-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vin-domain-search-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.vin-domain-input-wrap {
    position: relative;
    flex: 1;
}

.vin-domain-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vc-text-muted);
    pointer-events: none;
}

.vin-domain-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-size: 1rem;
    border: 2px solid var(--vc-border);
    border-radius: var(--vc-radius);
    background: var(--vc-surface);
    color: var(--vc-text);
    transition: all 0.2s;
    outline: none;
}

.vin-domain-input:focus {
    border-color: var(--vc-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.vin-domain-input::placeholder {
    color: var(--vc-text-muted);
}

textarea.vin-domain-input {
    min-height: 80px;
    resize: vertical;
    padding-left: 1rem;
}

.vin-domain-search-btn {
    border-radius: var(--vc-radius);
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-checker-result-headline { color: var(--vc-text); }

.primary-domain-header {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vc-text-muted);
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.domain-available { color: var(--vc-primary); }

.spotlight-tlds-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.spotlight-tld-container { text-align: center; }

.spotlight-tld {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius);
    padding: 1rem;
    background: var(--vc-surface-soft);
    font-weight: 700;
    color: var(--vc-text);
    transition: all 0.2s;
}

.spotlight-tld:hover {
    border-color: var(--vc-primary);
    box-shadow: var(--vc-shadow);
}

.tld-row:hover { background: var(--vc-surface-soft); }

.featured-tld:hover {
    border-color: var(--vc-primary);
    box-shadow: var(--vc-shadow-sm);
}

/* ============================================
   20. SIDEBAR TEXT WRAP FIX
   ============================================ */
.vin-cart-category-nav .list-group-item {
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

/* ============================================
   21. DOMAIN OPTION CARDS
   ============================================ */
.vin-domain-option {
    padding: 1rem;
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius);
    background: var(--vc-surface);
    transition: all 0.2s;
}

.vin-domain-option:hover {
    border-color: var(--vc-primary-light);
    box-shadow: var(--vc-shadow-sm);
}

.vin-domain-option input[type="radio"]:checked + span {
    color: var(--vc-primary) !important;
}

/* ============================================
   20. REVIEW PAGE (viewcart.tpl)
   Full-width modern cart review layout
   ============================================ */

/* ── 2-column layout ──────────────────────── */
.vc-review-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0 0;
}

@media (max-width: 767.98px) {
    .vc-review-layout {
        grid-template-columns: 1fr;
    }
    .vc-review-summary {
        order: -1;
    }
}

/* ── Cart column ─────────────────────────── */
.vc-review-cart {
    min-width: 0;
}

/* ── Generic card ─────────────────────────── */
.vc-card {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-xl);
    background: var(--vc-surface);
    box-shadow: var(--vc-shadow-sm);
    overflow: hidden;
}

.vc-card__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid var(--vc-border-light);
    background: var(--vc-surface-soft);
}

.vc-card__header-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--vc-radius-lg);
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vc-card__header-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vc-text);
    margin: 0;
}

.vc-card__header-meta {
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
    margin: 0;
}

.vc-card__body {
    padding: 1.25rem 1.5rem;
}

/* ── Item grid ─────────────────────────────── */
.vc-item-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.vc-item-grid--header {
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--vc-border-light);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.vc-item-grid__col { }
.vc-item-grid__col--main { flex: 1; min-width: 0; }
.vc-item-grid__col--qty { width: 90px; }
.vc-item-grid__col--price { text-align: right; min-width: 120px; }
.vc-item-grid__col--remove { width: 40px; }

@media (max-width: 575.98px) {
    .vc-item-grid {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
    }
    .vc-item-grid--header { display: none; }
    .vc-item-grid__col--qty { display: none; }
}

/* ── Items ────────────────────────────────── */
.vc-items {
    display: flex;
    flex-direction: column;
}

.vc-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--vc-border-light);
}

.vc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vc-item:first-child {
    padding-top: 0;
}

.vc-item--addon {
    padding-left: 2.5rem;
    opacity: 0.85;
}

@media (max-width: 575.98px) {
    .vc-item--addon {
        padding-left: 0;
    }
}

/* ── Product / domain icon + info ─────────── */
.vc-item__product {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.vc-item__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--vc-radius);
    background: var(--vc-primary-50);
    color: var(--vc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.vc-item__icon--addon {
    background: #fef3c7;
    color: #d97706;
}

.vc-item__icon--domain {
    background: #dcfce7;
    color: #16a34a;
}

.vc-item__icon--renewal {
    background: #e0f2fe;
    color: #0284c7;
}

.vc-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vc-item__name {
    font-weight: 700;
    color: var(--vc-text);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vc-item__edit {
    font-size: 0.75rem;
    color: var(--vc-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.vc-item__edit:hover {
    color: var(--vc-primary);
}

.vc-item__group {
    font-size: 0.8125rem;
    color: var(--vc-text-secondary);
}

.vc-item__domain {
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
}

.vc-item__options {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 0.25rem;
}

.vc-item__options span {
    font-size: 0.75rem;
    color: var(--vc-text-secondary);
}

.vc-item__amount {
    font-weight: 700;
    font-size: 1rem;
    color: var(--vc-text);
    display: block;
}

.vc-item__cycle {
    font-size: 0.75rem;
    color: var(--vc-text-muted);
    display: block;
}

.vc-item__setup {
    font-size: 0.75rem;
    color: #d97706;
    display: block;
    margin-top: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: #fef3c7;
    border-radius: 6px;
    border: 1px solid #fcd34d;
    font-weight: 600;
}

.vc-item__note {
    font-size: 0.6875rem;
    color: var(--vc-text-muted);
    display: block;
    margin-top: 0.1rem;
}

/* ── Qty inputs ─────────────────────────────── */
.vc-qty-input {
    width: 72px;
    text-align: center;
    padding: 0.25rem 0.5rem;
}

.vc-qty-update {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    padding: 0.1rem 0.5rem;
}

/* ── Remove button ─────────────────────────── */
.vc-item__remove {
    width: 34px;
    height: 34px;
    border-radius: var(--vc-radius);
    border: 1px solid var(--vc-border-light);
    background: transparent;
    color: var(--vc-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vc-item__remove:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

/* ── Empty state ───────────────────────────── */
.vc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    gap: 0.875rem;
}

.vc-empty__illustration {
    margin-bottom: 0.5rem;
}

.vc-empty__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vc-text);
}

.vc-empty__copy {
    color: var(--vc-text-muted);
    max-width: 320px;
}

/* ── Recurring notice ─────────────────────── */
.vc-recurring-notice {
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
    text-align: center;
    padding: 0.75rem;
}

/* ══════════════════════════════════════════════
   SUMMARY CARD (sticky right sidebar)
   ══════════════════════════════════════════════ */
.vc-review-summary {
    min-width: 0;
}

.vc-summary-card {
    position: sticky;
    top: calc(var(--vt-header-height, 80px) + 1.5rem);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-xl);
    background: var(--vc-surface);
    box-shadow: var(--vc-shadow-lg);
    overflow: hidden;
    max-height: calc(100vh - var(--vt-header-height, 80px) - 3rem);
    overflow-y: auto;
}

.vc-summary-card__inner {
    padding: 1.375rem;
}

/* Header */
.vc-summary-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--vc-border-light);
}

.vc-summary-card__icon {
    width: 38px;
    height: 38px;
    border-radius: var(--vc-radius);
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vc-summary-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--vc-text);
    margin: 0;
}

.vc-summary-card__count {
    font-size: 0.75rem;
    color: var(--vc-text-muted);
}

/* Product list in summary */
.vc-summary-products {
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid var(--vc-border-light) !important;
}

.vc-summary-products__heading {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
    color: var(--vc-text-muted) !important;
    margin: 0 0 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
}

.vc-summary-products__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.vc-summary-products__item {
    padding: 0.75rem !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
    transition: all 0.2s ease !important;
}

.vc-summary-products__item:hover {
    border-color: #6366f1 !important;
    box-shadow: 0 3px 8px rgba(79, 70, 229, 0.12) !important;
    transform: translateY(-1px) !important;
}

.vc-summary-products__name {
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.3 !important;
}

.vc-summary-products__sub {
    font-size: 0.75rem !important;
    color: #4b5563 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    background: #f9fafb !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 9999px !important;
    width: fit-content !important;
}

.vc-summary-products__sub i {
    color: #4f46e5 !important;
    font-size: 0.65rem !important;
}

.vc-summary-products__options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.25rem !important;
    margin-top: 0.15rem !important;
}

.vc-summary-products__option {
    font-size: 0.6875rem !important;
    color: #4b5563 !important;
    background: #eef2ff !important;
    border: 1px solid #e0e7ff !important;
    padding: 0.15rem 0.5rem !important;
    border-radius: 9999px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.vc-summary-products__option i {
    color: #4f46e5 !important;
    font-size: 0.6rem !important;
}

.vc-summary-products__price {
    font-size: 0.875rem !important;
    font-weight: 800 !important;
    color: #4f46e5 !important;
    margin-top: 0.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding-top: 0.375rem !important;
    border-top: 1px solid #f3f4f6 !important;
}

.vc-summary-products__cycle {
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    background: #f9fafb !important;
    padding: 0.1rem 0.4rem !important;
    border-radius: 6px !important;
}

/* Line items */
.vc-summary-lines {
    list-style: none;
    margin: 0 0 0.875rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vc-summary-lines__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--vc-text-secondary);
}

.vc-summary-lines__item--discount {
    color: var(--vc-success);
}

.vc-summary-lines__promo-code {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    background: var(--vc-primary-50);
    color: var(--vc-primary);
    border-radius: var(--vc-radius-full);
    padding: 0.05rem 0.5rem;
    margin-left: 0.25rem;
}

/* Grand total */
.vc-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    margin: 0 -1rem;
    background: var(--vc-primary-50);
    border-top: 1px solid var(--vc-border-light);
    border-bottom: 1px solid var(--vc-border-light);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--vc-text);
}

.vc-summary-total__amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vc-primary);
}

/* Credit */
.vc-summary-credit,
.vc-summary-after-credit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    color: var(--vc-success);
}

.vc-summary-after-credit {
    font-weight: 700;
    padding-top: 0.75rem;
}

/* ── Promo code ─────────────────────────────── */
.vc-promo {
    margin-top: 1rem;
}

.vc-promo__toggle {
    font-size: 0.8125rem;
    color: var(--vc-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
}

.vc-promo__toggle:hover {
    color: var(--vc-primary-dark);
}

/* ── Checkout CTA ─────────────────────────────── */
.vc-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.125rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--vc-radius-xl);
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border: none;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    transition: all 0.2s;
}

.vc-checkout-btn:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

.vc-continue-link {
    display: block;
    text-align: center;
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
    text-decoration: none;
    font-weight: 500;
}

.vc-continue-link:hover {
    color: var(--vc-primary);
}

/* ── Trust badges ─────────────────────────────── */
.vc-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vc-border-light);
    flex-wrap: wrap;
}

.vc-trust__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6875rem;
    color: var(--vc-text-muted);
    text-align: center;
}

.vc-trust__badge i {
    font-size: 0.875rem;
    color: var(--vc-success);
}

/* ── Payment icons ─────────────────────────────── */
.vc-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    flex-wrap: wrap;
}

.vc-payments__label {
    font-size: 0.6875rem;
    color: var(--vc-text-muted);
}

.vc-payments__icons {
        display: flex;
        gap: 0.5rem;
        font-size: 1.25rem;
        color: var(--vc-text-muted);
    }

/* ============================================
   30. DOMAIN REGISTER — Search & Pricing UX
   ============================================ */

/* Search card */
.vc-domain-search-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.vc-domain-form {
    margin: 0;
}

/* Advanced options row (TLD multiselect + max length + safe search) */
.vc-advanced-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.vc-advanced-options .multiselect,
.vc-advanced-options select {
    min-width: 180px;
}

.vc-safe-search {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--vc-text-secondary);
    margin: 0;
    cursor: pointer;
}

/* Captcha container */
.vc-captcha {
    margin-top: 1rem;
}

.vc-captcha .default-captcha {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.vc-captcha .default-captcha p {
    margin: 0;
    color: var(--vc-text-muted);
}

/* Pricing card */
.vc-pricing-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.vc-pricing-card__header {
    margin-bottom: 1.25rem;
}

.vc-pricing-card__title {
    margin: 0 0 0.35rem;
    font-weight: 700;
    color: var(--vc-text);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vc-pricing-card__title i {
    color: var(--vc-primary);
}

.vc-pricing-card__copy {
    margin: 0;
    color: var(--vc-text-muted);
    font-size: 0.9375rem;
}

/* Featured TLDs grid */
.vc-featured-tlds {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vc-featured-tld {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius);
    transition: all 0.2s var(--vt-ease);
    background: var(--vc-surface);
}

.vc-featured-tld:hover {
    border-color: var(--vc-primary);
    box-shadow: var(--vc-shadow);
    transform: translateY(-2px);
}

.vc-featured-tld__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vc-featured-tld__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.vc-featured-tld__ext {
    font-weight: 700;
    font-size: 1rem;
    color: var(--vc-text);
}

.vc-featured-tld__price {
    font-weight: 700;
    color: var(--vc-primary);
    font-size: 0.9375rem;
}

/* Filter chips */
.vc-tld-filters {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vc-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--vc-surface-soft);
    color: var(--vc-text-secondary);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-full);
    padding: 0.45rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--vt-ease);
}

.vc-filter-chip:hover {
    border-color: var(--vc-primary);
    color: var(--vc-primary);
    background: var(--vc-primary-50);
}

.vc-filter-chip--active,
.vc-filter-chip.vc-filter-chip--active {
    background: var(--vc-primary);
    color: white;
    border-color: var(--vc-primary);
}

.vc-filter-chip--active .vc-filter-chip__count,
.vc-filter-chip.vc-filter-chip--active .vc-filter-chip__count {
    background: rgba(255, 255, 255, 0.22);
    color: white;
}

.vc-filter-chip__count {
    background: var(--vc-border-light);
    color: var(--vc-text-muted);
    border-radius: var(--vc-radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    min-width: 1.25rem;
    text-align: center;
}

/* TLD pricing table */
.vc-tld-table {
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius);
    overflow: hidden;
    background: var(--vc-surface);
}

.vc-tld-table__header,
.vc-tld-row {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0;
}

.vc-tld-table__header {
    background: var(--vc-surface-soft);
    border-bottom: 2px solid var(--vc-border);
    font-weight: 700;
    color: var(--vc-text);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vc-tld-table__header > div {
    padding: 0.75rem 1rem;
}

.vc-tld-table__body {
    max-height: 480px;
    overflow-y: auto;
}

.vc-tld-table__body::-webkit-scrollbar {
    width: 8px;
}
.vc-tld-table__body::-webkit-scrollbar-thumb {
    background: var(--vc-border);
    border-radius: var(--vc-radius-full);
}
.vc-tld-table__body::-webkit-scrollbar-track {
    background: transparent;
}

.vc-tld-row {
    border-bottom: 1px solid var(--vc-border-light);
    transition: background 0.15s var(--vt-ease);
    font-size: 0.9375rem;
}

.vc-tld-row:last-child {
    border-bottom: 0;
}

.vc-tld-row:hover {
    background: var(--vc-surface-soft);
}

.vc-tld-table__col {
    padding: 0.875rem 1rem;
}

.vc-tld-table__col--ext {
    font-weight: 600;
    color: var(--vc-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vc-tld-table__col--price {
    color: var(--vc-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vc-price-strong {
    font-weight: 700;
    color: var(--vc-primary);
    font-size: 0.9375rem;
}

.vc-price-period {
    color: var(--vc-text-muted);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.1rem;
}

.vc-price-free {
    color: var(--vc-success, #10b981);
    font-weight: 700;
    font-size: 0.875rem;
}

.vc-na {
    color: var(--vc-text-muted);
    font-size: 0.8125rem;
}

.vc-sale-badge {
    font-size: 0.6875rem;
    padding: 0.15rem 0.5rem;
    border-radius: var(--vc-radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--vc-primary-50);
    color: var(--vc-primary);
}

.vc-sale-badge--hot {
    background: #fee2e2;
    color: #b91c1c;
}

.vc-sale-badge--new {
    background: #dbeafe;
    color: #1d4ed8;
}

.vc-sale-badge--sale {
    background: #d1fae5;
    color: #047857;
}

.vc-tld-empty {
    padding: 1.5rem;
    text-align: center;
    color: var(--vc-text-muted);
    background: var(--vc-surface-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vc-tld-empty i {
    color: var(--vc-primary);
}

.w-hidden.vc-tld-empty,
.vc-tld-empty.w-hidden {
    display: none !important;
}

/* Promo row */
.vc-promo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vc-promo-col {
    min-width: 0;
}

.vc-promo-col--wide {
    grid-column: span 1;
}

.vc-promo-card {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.vc-promo-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--vc-primary-50);
    border-radius: var(--vc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-primary);
    font-size: 1.5rem;
}

.vc-promo-card__body {
    flex: 1;
    min-width: 0;
}

.vc-promo-card__title {
    font-weight: 700;
    color: var(--vc-text);
    margin: 0 0 0.25rem;
    font-size: 1.0625rem;
}

.vc-promo-card__copy {
    color: var(--vc-text-muted);
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.vc-promo-card__sub {
    color: var(--vc-text-muted);
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
}

.vc-promo-card__btn {
    border-radius: var(--vc-radius);
    font-weight: 600;
}

/* Section header (used in suggested domains) */
.vc-section-header {
    font-weight: 700;
    color: var(--vc-text);
    border-bottom: 2px solid var(--vc-border-light);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

/* Suggested domain list item */
.domain-suggestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    border-radius: var(--vc-radius);
    margin-bottom: 0.5rem;
    border: 1px solid var(--vc-border-light);
    background: var(--vc-surface);
    transition: all 0.2s var(--vt-ease);
    gap: 1rem;
    flex-wrap: wrap;
}

.domain-suggestion:hover {
    border-color: var(--vc-primary);
    box-shadow: var(--vc-shadow-sm);
}

.vc-suggestion-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.domain-suggestion .domain {
    font-weight: 600;
}

.domain-suggestion .extension {
    color: var(--vc-primary);
    font-weight: 700;
}

.domain-suggestion .actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.domain-suggestion .actions .price {
    font-weight: 700;
    color: var(--vc-primary);
}

.domain-suggestion .panel-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--vc-border-light);
    margin-top: 1rem;
}

.domain-suggestions-warning {
    margin-top: 1rem;
}

.domain-suggestions-warning p {
    font-size: 0.8125rem;
    color: var(--vc-text-muted);
    margin: 0;
}

/* Suggested domains loaders & messages */
.domain-lookup-loader {
    color: var(--vc-text-muted);
}

.domain-lookup-suggestions-loader {
    padding: 0.75rem 0;
}

.domain-lookup-message {
    color: var(--vc-text-muted);
}

/* Responsive: stack pricing table on mobile */
@media (max-width: 767.98px) {
    .vc-tld-table__header,
    .vc-tld-row {
        grid-template-columns: 1fr 1fr;
    }
    .vc-tld-table__col--ext {
        grid-column: 1 / -1;
        border-bottom: 1px solid var(--vc-border-light);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .vc-tld-table__header > div:not(.vc-tld-table__col--ext) {
        font-size: 0.6875rem;
        padding: 0.5rem;
    }
    .vc-tld-table__col--price {
        padding: 0.5rem;
    }
    .vc-featured-tlds {
        grid-template-columns: 1fr 1fr;
    }
    .vc-advanced-options {
        flex-direction: column;
        align-items: stretch;
    }
    .vc-advanced-options .multiselect,
    .vc-advanced-options select {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .vc-featured-tlds {
        grid-template-columns: 1fr;
    }
}

/* Mobile: show order summary first, disable sticky */
@media (max-width: 767.98px) {
    .vc-summary-card {
        position: static !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    .vc-item {
        padding: 0.875rem 1rem;
    }
    .vc-summary-card__trust {
        flex-direction: column;
        gap: 0.5rem;
    }
}
