/**
 * Travelin Vendor Portal — auth + dashboard (all vendor pages)
 */

:root {
    --vp-teal: #0d9488;
    --vp-teal-dark: #0f766e;
    --vp-teal-light: #d3f1df;
    --vp-teal-pale: #e6f7f5;
    --vp-sidebar: #2d3238;
    --vp-sidebar-hover: #3d4450;
    --vp-sidebar-active: #0d9488;
    --vp-gold: #f5b800;
    --vp-card-radius: 16px;
    --vp-shadow: 0 4px 24px rgba(13, 148, 136, 0.08);
}

.container{max-width:1500px;}


/* ========== AUTH ========== */
.vendor-auth-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f4f6f8;
}

.vendor-auth-topbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.vendor-auth-topbar .logo img {
    max-height: 48px;
    width: auto;
}

.vendor-auth-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.vendor-auth-split {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 180px);
    padding: 40px 0;
}

.vendor-auth-promo {
    flex: 1 1 38%;
    min-width: 280px;
    background: var(--vp-teal-light);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--vp-card-radius) 0 0 var(--vp-card-radius);
}

.vendor-auth-promo h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 10px;
}

.vendor-auth-promo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.vendor-auth-promo p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.vendor-auth-promo .btn-learn {
    background: var(--vp-teal-dark);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s;
}

.vendor-auth-promo .btn-learn:hover {
    background: #115e59;
    color: #fff;
}

.vendor-auth-form-wrap {
    flex: 1 1 62%;
    min-width: 320px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.vendor-auth-card-inner {
    width: 100%;
    max-width: 480px;
}

.vendor-auth-card-inner.wide {
    max-width: 640px;
}

.vendor-wallet-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    text-decoration: none;
    color: #1f2937;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.vendor-wallet-balance:hover {
    border-color: #0d9488;
    background: #f0fdfa;
    color: #0f766e;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.12);
}

.vendor-wallet-balance-static {
    cursor: default;
}

.vendor-wallet-balance-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.vendor-wallet-balance-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.vendor-wallet-balance-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    font-weight: 600;
}

.vendor-wallet-balance-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

.vendor-notification-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.vendor-notification-btn .badge-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #dc3545;
    border-radius: 50%;
    border: 2px solid #fff;
}

.vendor-notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #dc3545;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #fff;
}

/* Notifications dropdown panel */
.vendor-notifications-panel {
    min-width: 360px;
    max-width: 400px;
    border-radius: 16px !important;
    overflow: hidden;
}

.vendor-notifications-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, var(--vp-teal-dark) 0%, var(--vp-teal) 100%);
    color: #fff;
}

.vendor-notifications-panel__head-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vendor-notifications-panel__head-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.vendor-notifications-panel__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.vendor-notifications-panel__subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

.vendor-notifications-panel__mark-read {
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    white-space: nowrap;
    cursor: pointer;
}

.vendor-notifications-panel__mark-read:hover {
    background: rgba(255, 255, 255, 0.28);
}

.vendor-notifications-panel__body {
    max-height: 360px;
    overflow-y: auto;
    background: #f8fafc;
}

.vendor-notifications-panel__section-label {
    padding: 0.65rem 1rem 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
}

.vendor-notifications-panel__empty {
    text-align: center;
    padding: 2rem 1.25rem;
    color: #6b7280;
}

.vendor-notifications-panel__empty-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.vendor-notifications-panel__foot {
    padding: 0.85rem 1rem;
    background: #fff;
    border-top: 1px solid #eef2f7;
}

.vendor-notifications-panel__view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    background: var(--vp-teal-pale);
    color: var(--vp-teal-dark);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.vendor-notifications-panel__view-all:hover {
    background: var(--vp-teal);
    color: #fff;
}

/* Notification card (dropdown + page) */
.vendor-notification-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
    transition: background 0.15s;
}

.vendor-notification-card:hover {
    background: #f0fdfa;
    color: inherit;
}

.vendor-notification-card--unread {
    background: #f0fdfa;
    border-left: 3px solid var(--vp-teal);
}

.vendor-notification-card--compact {
    padding: 0.75rem 1rem;
}

.vendor-notification-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.vendor-notification-card__icon--hotel {
    background: #ccfbf1;
    color: #0f766e;
}

.vendor-notification-card__icon--tour {
    background: #ede9fe;
    color: #6d28d9;
}

.vendor-notification-card__icon--visa {
    background: #dbeafe;
    color: #1d4ed8;
}

.vendor-notification-card__icon--paid {
    background: #d1fae5;
    color: #047857;
}

.vendor-notification-card__content {
    flex: 1;
    min-width: 0;
}

.vendor-notification-card__top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.vendor-notification-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
}

.vendor-notification-card__new {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
    background: #fee2e2;
    color: #b91c1c;
}

.vendor-notification-card__message {
    display: block;
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.45;
    margin-bottom: 0.35rem;
}

.vendor-notification-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.vendor-notification-card__meta i {
    margin-right: 0.2rem;
}

.vendor-notification-card__arrow {
    color: #d1d5db;
    padding-top: 0.35rem;
    flex-shrink: 0;
}

.vendor-notification-card:hover .vendor-notification-card__arrow {
    color: var(--vp-teal);
}

.vendor-notifications-system {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vendor-notifications-system__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    text-decoration: none;
    color: #374151;
    font-size: 0.875rem;
}

.vendor-notifications-system__item:hover {
    background: #fffbeb;
    color: #111827;
}

/* Notifications page */
.vendor-notifications-page__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vendor-notifications-stat {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    height: 100%;
}

.vendor-notifications-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.vendor-notifications-stat__icon--all {
    background: #f3f4f6;
    color: #4b5563;
}

.vendor-notifications-stat__icon--unread {
    background: #fee2e2;
    color: #dc2626;
}

.vendor-notifications-stat__icon--read {
    background: #d1fae5;
    color: #059669;
}

.vendor-notifications-stat__label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vendor-notifications-stat__value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.vendor-notifications-list .vendor-notification-card:last-child {
    border-bottom: none;
}

.vendor-notifications-filters .btn.active {
    background: var(--vp-teal);
    border-color: var(--vp-teal);
    color: #fff;
}

.vendor-sidebar-badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50px;
    background: #dc3545;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.vendor-menu-link-extra--danger {
    background: #fee2e2;
    color: #b91c1c !important;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.72rem !important;
}

.listing-existing-booking-alert {
    border-left: 4px solid #f59e0b !important;
}

.listing-existing-booking-alert__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef3c7;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vendor-auth-input-icon {
    position: relative;
}

.vendor-auth-input-icon > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.vendor-auth-input-icon .form-control {
    padding-left: 2.5rem;
}

.vendor-auth-body footer {
    margin-top: auto;
}

/* ========== PORTAL (dashboard) ========== */
.vendor-portal-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f0f2f5;
}

.vendor-portal-topbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.vendor-portal-topbar .logo img {
    max-height: 44px;
}

/* Profile dropdown (header) */
.vendor-profile-dropdown {
    position: relative;
}

.vendor-profile-trigger {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
}

.vendor-profile-avatar {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #0d9488, #0f766e);
}

.vendor-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-profile-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.vendor-profile-status {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.vendor-topbar-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.35rem 0;
    min-width: 260px;
    margin-top: 0.5rem !important;
}

.vendor-profile-menu {
    min-width: 280px;
}

.vendor-profile-menu-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem 0.65rem;
}

.vendor-profile-avatar-lg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.vendor-profile-menu-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111827;
}

.vendor-profile-menu-email {
    font-size: 0.8rem;
    color: #6b7280;
}

.vendor-profile-menu-company {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.15rem;
}

.vendor-profile-menu .vendor-menu-link {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    color: #374151;
    width: 100%;
}

.vendor-menu-link-icon {
    width: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vendor-menu-link-icon .fas {
    font-size: 0.95rem;
    color: #6b7280;
}

.vendor-menu-link-label {
    flex: 1;
    text-align: left;
}

.vendor-menu-link-extra {
    margin-left: auto;
    padding-left: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
}

.vendor-profile-menu .vendor-menu-link:hover {
    background: #f0fdfa;
    color: #0f766e;
}

.vendor-profile-menu .vendor-menu-link:hover .fas {
    color: #0d9488;
}

.vendor-profile-signout {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.vendor-profile-signout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.vendor-profile-signout:hover .fas {
    color: #dc2626;
}

@media (max-width: 576px) {
    .vendor-wallet-balance-label {
        display: none;
    }
    .vendor-wallet-balance {
        padding: 0.35rem 0.55rem;
    }
}

.vendor-portal-shell {
    display: flex;
    flex: 1;
    align-items: stretch;
    padding: 40px 0;
}

.vendor-portal-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: #273231;
    color: #aeb4c0;
    padding: 0;
    border-radius: 15px;
}

.vendor-sidebar-profile {
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vendor-sidebar-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--vp-sidebar-hover);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--vp-teal-light);
    margin-bottom: 0.75rem;
    border: 3px solid var(--vp-teal);
    overflow: hidden;
}

.vendor-sidebar-avatar.has-logo {
    background: #fff;
    padding: 0;
}

.vendor-sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vendor-sidebar-profile h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 20px;
}

.vendor-sidebar-company {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.vendor-sidebar-company .vendor-verified-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.vendor-sidebar-company .vendor-verified-icon {
    width: 0.9rem;
    height: 0.9rem;
}

.vendor-sidebar-profile .status-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: capitalize;
}

.vendor-sidebar-profile .status-badge.approved, .vendor-sidebar-profile .status-badge.active {
    background: #198754;
    color: #fff;
}

.vendor-sidebar-profile .status-badge.pending {
    background: var(--vp-gold);
    color: #1a1a2e;
}

.vendor-sidebar-profile .status-badge.rejected {
    background: #dc3545;
    color: #fff;
}

.vendor-sidebar-nav {
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
}

.vendor-sidebar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vendor-sidebar-nav a,
.vendor-sidebar-nav button.vendor-nav-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 1.25rem;
    color: #c8d0da;
    text-decoration: none;
    font-size: 16px;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.vendor-sidebar-nav a:hover,
.vendor-sidebar-nav button.vendor-nav-logout:hover {
    background: var(--vp-sidebar-hover);
    color: #fff;
}

.vendor-sidebar-nav a.active {
    background: var(--vp-sidebar-active);
    color: #fff;
    font-weight: 600;
}

.vendor-sidebar-nav a i {
    width: 20px;
    text-align: center;
    opacity: 0.9;
}

.vendor-sidebar-subnav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vendor-sidebar-subnav a {
    padding: 10px 1.25rem 10px 2.75rem;
    font-size: 0.85rem;
    color: #c8d0da;
}

.vendor-sidebar-subnav a:hover,
.vendor-sidebar-subnav a.active {
    color: #fff;
    background: var(--vp-sidebar-hover);
}

.vendor-sidebar-subnav a i {
    width: 18px;
    font-size: 0.8rem;
}

.vendor-nav-group-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 1.25rem;
    color: #c8d0da;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.15s, color 0.15s;
}

.vendor-nav-group-toggle:hover,
.vendor-nav-group-toggle.active {
    background: var(--vp-sidebar-hover);
    color: #fff;
}

.vendor-nav-chevron {
    font-size: 0.7rem;
    opacity: 0.75;
    transition: transform 0.2s;
}

.vendor-sidebar-nav li.is-open .vendor-nav-chevron {
    transform: rotate(180deg);
}

/* Dashboard charts */
.vendor-chart-card {
    background: #fff;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    border: 1px solid #e8ecf1;
    padding: 1.25rem 1.35rem 1.35rem;
}

.vendor-chart-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vendor-chart-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
}

.vendor-chart-card__subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.vendor-chart-card__period {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vendor-chart-card__period label {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
}

.vendor-chart-card__period .form-select {
    min-width: 140px;
}

.vendor-chart-card__canvas {
    position: relative;
    height: 280px;
}

.vendor-chart-card__foot {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f6;
}

/* Recent bookings section (dashboard) */
.vendor-recent-bookings-section {
    margin-bottom: 2rem;
}

.vendor-recent-bookings-section__head {
    margin-bottom: 1.25rem;
    padding-bottom: 0.25rem;
}

.vendor-recent-bookings-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}



.vendor-recent-bookings-card {
    flex: 1;
    width: 100%;
    background: #fff;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    border: 1px solid #e8ecf1;
    padding: 0;
    overflow: hidden;
}

.vendor-recent-bookings-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 1.15rem 1.35rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #eef2f6;
}

.vendor-recent-bookings-card__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vendor-recent-bookings-card__title i {
    color: var(--vp-teal, #0d9488);
    font-size: 1rem;
}

.vendor-recent-bookings-card__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vp-teal, #0d9488);
    text-decoration: none;
    white-space: nowrap;
}

.vendor-recent-bookings-card__link:hover {
    color: #0f766e;
    text-decoration: underline;
}

.vendor-recent-bookings-card__body {
    padding: 1rem 1.35rem 1.25rem;
}

.vendor-recent-bookings-table thead th {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
    padding: 0.55rem 0.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.vendor-recent-bookings-table tbody td {
    padding: 0.7rem 0.5rem;
    font-size: 0.8125rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.vendor-recent-bookings-table tbody tr:last-child td {
    border-bottom: none;
}

.vendor-recent-bookings-card .badge {
    font-weight: 500;
    font-size: 0.7rem;
}

.vendor-recent-bookings-empty {
    padding: 2.25rem 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

.vendor-recent-bookings-card__foot {
    margin: 0.85rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
    color: #94a3b8;
}

@media (max-width: 1199.98px) {
    .vendor-recent-bookings-grid > .col-xl-4:last-child {
        margin-top: 0;
    }
}

.vendor-sidebar-subnav.collapse:not(.show) {
    display: none;
}

.vendor-portal-main {
    flex: 1;
    padding: 0 1.75rem;
}

.vendor-profile-cover {
    height: 160px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
}

.vendor-profile-logo-preview {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.vendor-profile-cover-thumb {
    max-width: 100%;
    max-height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.vendor-page-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

/* Stat cards */
.vendor-stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border-radius: var(--vp-card-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--vp-shadow);
    height: 100%;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vendor-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.vendor-stat-card .stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--vp-teal-pale);
    color: var(--vp-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.vendor-stat-card .stat-content {
    min-width: 0;
    flex: 1;
}

.vendor-stat-card .stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #9ca3af;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.vendor-stat-card .stat-value {
    font-size: 1.20rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
}

.vendor-stat-card--bookings {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.vendor-stat-card--bookings .stat-icon {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.vendor-stat-card--bookings .stat-label {
    color: #3b82f6;
}

.vendor-stat-card--bookings .stat-value {
    color: #1d4ed8;
}

.vendor-stat-card--sales {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #a7f3d0;
}

.vendor-stat-card--sales .stat-icon {
    background: #fff;
    color: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.vendor-stat-card--sales .stat-label {
    color: #10b981;
}

.vendor-stat-card--sales .stat-value {
    color: #047857;
}

.vendor-stat-card--pending {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}

.vendor-stat-card--pending .stat-icon {
    background: #fff;
    color: #d97706;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}

.vendor-stat-card--pending .stat-label {
    color: #f59e0b;
}

.vendor-stat-card--pending .stat-value {
    color: #b45309;
}

.vendor-stat-card--debit {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.vendor-stat-card--debit .stat-icon {
    background: #fff;
    color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.vendor-stat-card--debit .stat-label {
    color: #ef4444;
}

.vendor-stat-card--debit .stat-value {
    color: #b91c1c;
}

.vendor-stat-card--link {
    text-decoration: none;
    color: inherit;
    position: relative;
}

.vendor-stat-card--link:hover {
    color: inherit;
}

.vendor-stat-card__arrow {
    flex-shrink: 0;
    color: #9ca3af;
    font-size: 0.85rem;
    transition: transform 0.15s ease, color 0.15s ease;
}

.vendor-stat-card--link:hover .vendor-stat-card__arrow {
    transform: translateX(3px);
    color: #6b7280;
}

/* Panel cards */
.vendor-panel {
    background: #fff;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    padding: 1.5rem;
    border: none;
}

.vendor-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

/* Vendor listing forms — jQuery.filer (public style.css conflicts with admin filer layout) */
.vendor-portal-main .jFiler-items-grid .jFiler-item .jFiler-item-thumb {
    position: relative;
    overflow: hidden;
}

.vendor-portal-main .jFiler-items-grid .jFiler-item .jFiler-item-thumb .jFiler-item-thumb-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.vendor-portal-main .jFiler-items-grid .jFiler-item .jFiler-item-thumb .jFiler-item-thumb-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
}

.vendor-portal-main .jFiler-items-grid .jFiler-item .jFiler-item-thumb .jFiler-item-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    padding: 6px 8px;
    overflow: hidden;
    text-align: left;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    color: #fff;
}

.vendor-portal-main .jFiler-items-grid .jFiler-item .jFiler-item-thumb .jFiler-item-info .jFiler-item-title,
.vendor-portal-main .jFiler-items-grid .jFiler-item .jFiler-item-thumb .jFiler-item-info .jFiler-item-others {
    color: #fff;
}

.vendor-portal-main .jFiler-input-dragDrop {
    margin-bottom: 1rem;
}

/* Wallet page */
.vendor-wallet-page .vendor-page-title {
    margin-bottom: 0.35rem;
}

.vendor-wallet-header {
    margin-bottom: 1.25rem;
}

.vendor-wallet-intro .vendor-page-title {
    margin-bottom: 0.35rem;
}

.vendor-wallet-top {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.vendor-wallet-balance-card {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--vp-card-radius);
    background: linear-gradient(135deg, var(--vp-teal) 0%, #14b8a6 55%, #2dd4bf 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.28);
}

.vendor-wallet-payout-btn {
    flex: 0 1 300px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--vp-card-radius);
    background: #fff;
    border: 2px solid var(--vp-teal);
    box-shadow: var(--vp-shadow);
    text-decoration: none;
    color: #111827;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, background 0.15s;
}

.vendor-wallet-payout-btn:hover {
    color: var(--vp-teal-dark);
    background: var(--vp-teal-pale);
    border-color: var(--vp-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.18);
}

.vendor-wallet-payout-btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--vp-teal), #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.vendor-wallet-payout-btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vendor-wallet-payout-btn-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.vendor-wallet-payout-btn:hover .vendor-wallet-payout-btn-title {
    color: var(--vp-teal-dark);
}

.vendor-wallet-payout-btn-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.vendor-wallet-payout-btn-action {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--vp-teal);
    margin-top: auto;
}

.vendor-wallet-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: #fff;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    border: 1px solid #eef2f7;
    height: 100%;
}

.vendor-wallet-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.vendor-wallet-stat--credit .vendor-wallet-stat-icon {
    background: #d1fae5;
    color: #059669;
}

.vendor-wallet-stat--debit .vendor-wallet-stat-icon {
    background: #fee2e2;
    color: #dc2626;
}

.vendor-wallet-stat--neutral .vendor-wallet-stat-icon {
    background: var(--vp-teal-pale);
    color: var(--vp-teal);
}

.vendor-wallet-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.15rem;
}

.vendor-wallet-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

@media (max-width: 767.98px) {
    .vendor-wallet-payout-btn {
        flex: 1 1 100%;
    }

    .vendor-wallet-balance-card {
        flex: 1 1 100%;
    }
}

/* Payouts page */
.vendor-payout-page .vendor-page-title {
    margin-bottom: 0.35rem;
}

.vendor-payout-header {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.vendor-payout-intro {
    flex: 1 1 220px;
    min-width: 0;
}

.vendor-payout-intro .vendor-page-title {
    margin-bottom: 0.35rem;
}

.vendor-payout-balance-hero {
    flex: 1 1 300px;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--vp-card-radius);
    background: linear-gradient(135deg, var(--vp-teal) 0%, #14b8a6 55%, #2dd4bf 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.28);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

a.vendor-payout-balance-hero:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(13, 148, 136, 0.35);
}

.vendor-payout-balance-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vendor-payout-balance-body {
    flex: 1;
    min-width: 0;
}

.vendor-payout-balance-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.vendor-payout-balance-amount {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.vendor-payout-balance-meta {
    display: block;
    font-size: 0.8rem;
    opacity: 0.88;
    margin-top: 0.35rem;
}

.vendor-payout-balance-link {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.95;
    white-space: nowrap;
}

.vendor-payout-withdraw-banner {
    width: 100%;
}

.vendor-payout-withdraw-banner-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
}

.vendor-payout-withdraw-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.5rem;
}

.vendor-payout-withdraw-form-field {
    flex: 0 1 220px;
    min-width: 180px;
}

.vendor-payout-withdraw-form-meta {
    flex: 1 1 240px;
    min-width: 200px;
}

.vendor-payout-withdraw-form-action {
    flex: 0 0 auto;
}

.vendor-payout-kyc-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    align-items: flex-start;
}

.vendor-payout-kyc-main {
    flex: 1 1 280px;
    min-width: 0;
}

.vendor-payout-kyc-lists {
    flex: 1 1 360px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem 1.5rem;
    min-width: 0;
}
.vendor-payout-kyc-lists ul{list-style: disc;}
.vendor-payout-grid {
    display: grid;
    grid-template-columns: minmax(240px, 272px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.vendor-payout-methods {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--vp-shadow);
}

.vendor-payout-methods-title {
    padding: 1rem 1.15rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    line-height: normal;
}

.vendor-payout-method-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    cursor: pointer;
}

.vendor-payout-method-item:last-child {
    border-bottom: none;
}

.vendor-payout-method-item:hover {
    background: #f8fafc;
}

.vendor-payout-method-item.is-active {
    background: var(--vp-teal-pale);
    border-left: 3px solid var(--vp-teal);
}

.vendor-payout-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    color: #fff;
}

.vendor-payout-method-body {
    flex: 1;
    min-width: 0;
}

.vendor-payout-method-body strong {
    display: block;
    font-size: 0.92rem;
    color: #111827;
}

.vendor-payout-method-body small {
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.4;
}

.vendor-payout-method-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 12px;
    position: relative;
}

.vendor-payout-method-item.is-active .vendor-payout-method-radio {
    border-color: var(--vp-teal);
}

.vendor-payout-method-item.is-active .vendor-payout-method-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--vp-teal);
    border-radius: 50%;
}

.vendor-payout-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--vp-shadow);
    min-height: 280px;
}

.vendor-payout-withdraw-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.vendor-payout-kyc-alert .alert-heading {
    font-size: 0.95rem;
}

.vendor-payout-kyc-alert ul {
    margin-bottom: 0.5rem;
}

.vendor-bank-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    margin-bottom: 0.75rem;
    background: #f8fafc;
}

.vendor-bank-card.is-default {
    border-color: var(--vp-teal);
    background: var(--vp-teal-pale);
}

@media (max-width: 767.98px) {
    .vendor-payout-grid {
        grid-template-columns: 1fr;
    }

    .vendor-payout-withdraw-form {
        flex-direction: column;
        align-items: stretch;
    }

    .vendor-payout-withdraw-form-field {
        flex: 1 1 100%;
    }

    .vendor-payout-withdraw-form-action .btn {
        width: 100%;
    }

    .vendor-payout-balance-hero {
        flex: 1 1 100%;
    }

    .vendor-payout-balance-link {
        display: none;
    }
}

/* Donut chart (CSS) */
.vendor-donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.vendor-donut {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(
        var(--vp-teal) 0% 50%,
        #5eead4 50% 75%,
        #99f6e4 75% 90%,
        #ccfbf1 90% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vendor-donut::after {
    content: '';
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.vendor-donut-center {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

.vendor-donut-center strong {
    display: block;
    font-size: 1.25rem;
    color: var(--vp-teal-dark);
}

.vendor-donut-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
    max-width: 280px;
}

.vendor-donut-legend span::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.vendor-donut-legend .l1::before { background: var(--vp-teal); }
.vendor-donut-legend .l2::before { background: #5eead4; }
.vendor-donut-legend .l3::before { background: #99f6e4; }
.vendor-donut-legend .l4::before { background: #ccfbf1; }

/* Mini bar chart */
.vendor-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding-top: 1rem;
}

.vendor-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--vp-teal) 0%, #5eead4 100%);
    border-radius: 6px 6px 0 0;
    min-height: 8px;
}

.vendor-table-card {
    background: #fff;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.vendor-table-card--spaced .vendor-table-card-header {
    padding: 1.35rem 1.75rem;
}

.vendor-table-card--spaced .vendor-table-card-body {
    padding: 0.5rem 1rem 1rem;
}

.vendor-table-card--spaced .vendor-table-card-footer {
    padding: 1.15rem 1.75rem;
    border-top: 1px solid #eef2f7;
}

.vendor-table-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.vendor-table-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.vendor-table-card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.vendor-table-card .table {
    margin-bottom: 0;
}

.vendor-table-card--spaced .table thead th,
.vendor-table-card--spaced .table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.vendor-table-card .table thead th {
    background: #f9fafb;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.vendor-table-card--spaced .table tbody tr:last-child td {
    border-bottom: none;
}

.vendor-table-card--spaced .table tbody td {
    border-color: #f1f5f9;
}

.vendor-alert-pending {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--vp-card-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.vendor-portal-body footer {
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .vendor-portal-sidebar {
        width: 100%;
        min-height: auto;
    }

    .vendor-portal-shell {
        flex-direction: column;
    }

    .vendor-auth-promo {
        border-radius: 0;
        padding: 2rem 1.5rem;
    }

    .vendor-auth-split {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .vendor-portal-main {
        padding: 1rem;
    }
}

/* Trust badges */
.vendor-trust-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vendor-trust-unverified { background: #fee2e2; color: #991b1b; }
.vendor-trust-basic { background: #fef3c7; color: #92400e; }
.vendor-trust-partial { background: #dbeafe; color: #1e40af; }
.vendor-trust-verified { background: #d1fae5; color: #065f46; }

.vendor-sidebar-profile .vendor-trust-badge {
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.vendor-sidebar-kyc {
    margin-top: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    width: 100%;
}

.vendor-sidebar-kyc.vendor-trust-unverified {
    background: rgba(254, 226, 226, 0.12);
    border: 1px solid rgba(254, 226, 226, 0.35);
}

.vendor-sidebar-kyc.vendor-trust-partial {
    background: rgba(219, 234, 254, 0.12);
    border: 1px solid rgba(219, 234, 254, 0.35);
}

.vendor-sidebar-kyc.vendor-trust-verified {
    background: rgba(209, 250, 229, 0.12);
    border: 1px solid rgba(209, 250, 229, 0.35);
}

.vendor-sidebar-kyc__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
}

.vendor-trust-unverified .vendor-sidebar-kyc__badge { color: #fecaca; }
.vendor-trust-partial .vendor-sidebar-kyc__badge { color: #bfdbfe; }
.vendor-trust-verified .vendor-sidebar-kyc__badge { color: #a7f3d0; }

.vendor-sidebar-kyc__hint {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.vendor-sidebar-kyc__link {
    display: inline-block;
    margin-top: 0.45rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vendor-sidebar-kyc__link:hover {
    color: #fff;
    opacity: 0.9;
}

/* ========== TRANSACTIONS TABLE ========== */
.vendor-transactions-view-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vp-teal-dark);
    text-decoration: none;
}

.vendor-transactions-view-all:hover {
    color: var(--vp-teal);
}

.vendor-table-card-title .text-teal,
.vendor-table-card-title i.text-teal {
    color: var(--vp-teal);
}

.vendor-recent-bookings-section .vendor-hotel-bookings-table-card {
    margin-bottom: 0;
}

.vendor-recent-bookings-section .vendor-hotel-bookings-table {
    min-width: 560px;
    font-size: 14px;
}

.vendor-tx-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.vendor-tx-badge--credit {
    background: #d1fae5;
    color: #065f46;
}

.vendor-tx-badge--debit {
    background: #fee2e2;
    color: #991b1b;
}

.vendor-tx-amount--credit {
    color: #059669;
}

.vendor-tx-amount--debit {
    color: #dc2626;
}

.vendor-transactions-page__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vendor-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

.vendor-breadcrumb a {
    color: var(--vp-teal-dark);
    text-decoration: none;
    font-weight: 600;
}

.vendor-breadcrumb a:hover {
    color: var(--vp-teal);
}

.vendor-transactions-filters {
    padding: 1rem 1.25rem 1.25rem;
}

.vendor-transactions-filters__clear {
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.vendor-transactions-filters__clear a {
    color: var(--vp-teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.vendor-transactions-filters__clear a:hover {
    color: var(--vp-teal);
}

.vendor-wallet-stat--link {
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vendor-wallet-stat--link:hover {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08);
}

.vendor-wallet-stat-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #9ca3af;
    font-size: 0.75rem;
}

.vendor-wallet-stat--link:hover .vendor-wallet-stat-arrow {
    color: var(--vp-teal);
}

.vendor-transactions-table--detailed {
    min-width: 860px;
}

.vendor-tx-date {
    font-weight: 600;
    color: #374151;
}

.vendor-tx-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.vendor-tx-ref {
    font-size: 0.8125rem;
    color: #4b5563;
    background: #f3f4f6;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.vendor-tx-id {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vp-teal-dark);
    background: var(--vp-teal-pale);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    white-space: nowrap;
}

.vendor-tx-details {
    font-size: 0.875rem;
    color: #4b5563;
    max-width: 280px;
}

.vendor-tx-details a {
    color: var(--vp-teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.vendor-tx-details a:hover {
    color: var(--vp-teal);
    text-decoration: underline;
}

.vendor-phone-input-group.phone-input-group {
    gap: 0.75rem;
}

.vendor-phone-input-group .form-control:first-child,
.vendor-phone-input-group .form-select:first-child {
    flex: 0 0 min(220px, 42%);
}

@media (max-width: 767.98px) {
    .vendor-phone-input-group.phone-input-group {
        flex-direction: column;
    }

    .vendor-phone-input-group .form-control:first-child,
    .vendor-phone-input-group .form-select:first-child {
        flex: 1 1 auto;
        width: 100%;
    }
}

/* ========== HOTEL BOOKINGS ========== */
.vendor-hotel-bookings-page {
    max-width: 100%;
}

.vendor-hotel-bookings-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vendor-hotel-bookings-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--vp-teal-pale);
    color: var(--vp-teal-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.vendor-hotel-bookings-table-card {
    margin-bottom: 2rem;
}

.vendor-booking-details-cell {
    min-width: 180px;
    max-width: 320px;
}

.vendor-booking-details-cell__title {
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

.vendor-booking-details-cell__meta {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
    margin-top: 0.2rem;
}

.vendor-booking-details-cell__meta i {
    color: var(--vp-teal);
    width: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    text-align: center;
}

.vendor-hotel-bookings-guest {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.vendor-hotel-bookings-guest__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vp-teal) 0%, #5eead4 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vendor-hotel-bookings-date {
    display: block;
    font-weight: 600;
    color: #111827;
}

.vendor-hotel-bookings-date-sub {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.vendor-hotel-bookings-price {
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.vendor-booking-status {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}

.vendor-booking-status--paid {
    background: #d1fae5;
    color: #065f46;
}

.vendor-booking-status--pending {
    background: #fef3c7;
    color: #92400e;
}

.vendor-booking-status--danger {
    background: #fee2e2;
    color: #991b1b;
}

.vendor-booking-status--neutral {
    background: #f3f4f6;
    color: #374151;
}

.vendor-btn-view-details {
    background: var(--vp-teal);
    border-color: var(--vp-teal);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    white-space: nowrap;
}

.vendor-btn-view-details:hover {
    background: var(--vp-teal-dark);
    border-color: var(--vp-teal-dark);
    color: #fff;
}

.vendor-btn-primary {
    background: var(--vp-teal);
    border-color: var(--vp-teal);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
}

.vendor-btn-primary:hover {
    background: var(--vp-teal-dark);
    border-color: var(--vp-teal-dark);
    color: #fff;
}

/* Booking detail */
.vendor-booking-detail-page {
    max-width: 1100px;
}

.vendor-booking-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--vp-teal-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vendor-booking-back:hover {
    color: var(--vp-teal);
}

.vendor-booking-detail-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    background: linear-gradient(135deg, #fff 0%, var(--vp-teal-pale) 100%);
    border: 1px solid #d1fae5;
    border-radius: var(--vp-card-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--vp-shadow);
    margin-bottom: 1.25rem;
}

.vendor-booking-detail-hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vp-teal-dark);
    background: #fff;
    border: 1px solid #99f6e4;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.vendor-booking-detail-hero__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.35rem;
}

.vendor-booking-detail-hero__amount {
    text-align: right;
}

.vendor-booking-detail-hero__amount-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

.vendor-booking-detail-hero__amount-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.vendor-booking-detail-hero__amount .vendor-booking-status {
    margin-top: 0.5rem;
}

.vendor-booking-status-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--vp-card-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--vp-shadow);
}

.vendor-booking-status-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.vendor-booking-status-form__label {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1 1 220px;
}

.vendor-booking-status-form__label > i {
    font-size: 1.35rem;
    color: var(--vp-teal);
    margin-top: 0.15rem;
}

.vendor-booking-status-form__label strong {
    display: block;
    color: #111827;
}

.vendor-booking-status-form__label span {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}

.vendor-booking-status-form__controls {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    flex: 1 1 280px;
    justify-content: flex-end;
}
.form-select{    appearance: auto;}
.vendor-booking-status-form__controls .form-select {
    min-width: 200px;
    border-radius: 10px;
}

.vendor-profile-menu-company,
.vendor-portal-sidebar h6 .vendor-verified-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.vendor-portal-sidebar h6 .vendor-verified-icon,
.vendor-profile-menu-name .vendor-verified-icon,
.vendor-profile-menu-company .vendor-verified-icon {
    width: 1rem;
    height: 1rem;
}

.vendor-booking-status-form__controls .vendor-btn-primary{display: flex; align-items: center;}

.vendor-booking-info-card {
    background: #fff;
    border-radius: var(--vp-card-radius);
    border: 1px solid #eef2f7;
    box-shadow: var(--vp-shadow);
    height: 100%;
    overflow: hidden;
}

.vendor-booking-info-card__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f9fafb;
}

.vendor-booking-info-card__head i {
    color: var(--vp-teal);
    font-size: 1.1rem;
}

.vendor-booking-info-card__head h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.vendor-booking-dl {
    margin: 0;
    padding: 0.5rem 0;
}

.vendor-booking-dl__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f8fafc;
}

.vendor-booking-dl__row:last-child {
    border-bottom: none;
}

.vendor-booking-dl__row dt {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    flex-shrink: 0;
}

.vendor-booking-dl__row dd {
    margin: 0;
    text-align: right;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
}

.vendor-booking-info-card--payment .vendor-booking-info-card__head {
    background: linear-gradient(90deg, #f0fdfa 0%, #fff 100%);
}

.vendor-booking-stat-tile {
    background: #f9fafb;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    height: 100%;
}

.vendor-booking-stat-tile__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

.vendor-booking-stat-tile__value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.vendor-booking-info-card--payment {
    padding-bottom: 1.25rem;
}

.vendor-booking-info-card--payment .row {
    padding: 0 1rem;
}

.vendor-booking-price-breakdown {
    margin: 1rem 1rem 0.25rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f0fdfa 100%);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.vendor-booking-price-breakdown__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.vendor-booking-price-breakdown__title i {
    color: #0d9488;
}

.vendor-booking-price-breakdown__list .vendor-booking-dl__row {
    padding: 0.55rem 0;
}

.vendor-booking-price-breakdown__rate {
    color: #b45309;
    font-weight: 600;
}

.vendor-booking-price-breakdown__row--deduction dd {
    color: #b45309;
}

.vendor-booking-price-breakdown__row--total {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #cbd5e1;
}

.vendor-booking-price-breakdown__row--total dt,
.vendor-booking-price-breakdown__row--total dd {
    font-size: 1rem;
    color: #047857;
}

@media (max-width: 767px) {
    .vendor-booking-detail-hero__amount {
        text-align: left;
        width: 100%;
    }

    .vendor-booking-status-form__controls {
        justify-content: stretch;
        width: 100%;
    }

    .vendor-booking-status-form__controls .form-select,
    .vendor-booking-status-form__controls .btn {
        width: 100%;
    }

    .vendor-hotel-bookings-table {
        font-size: 0.85rem;
    }
}

/* ========== Vendor module listings (hotels / tours / visas) ========== */
.vendor-module-listings-page {
    max-width: 1280px;
}

.vendor-module-listings-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.vendor-module-listings-header__main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 280px;
    min-width: 0;
}

.vendor-module-listings-header__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--vp-teal-pale) 0%, #ccfbf1 100%);
    color: var(--vp-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.12);
}

.vendor-module-listings-header__aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.vendor-module-listings-count {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
}

.vendor-module-listings-count i {
    color: var(--vp-teal);
}

.vendor-module-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.vendor-module-listing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--vp-card-radius);
    border: 1px solid #eef2f7;
    box-shadow: var(--vp-shadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vendor-module-listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.12);
    border-color: #d1fae5;
}

.vendor-module-listing-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #f8fafc 0%, var(--vp-teal-pale) 100%);
    overflow: hidden;
}

.vendor-module-listing-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vendor-module-listing-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vp-teal);
    font-size: 2.5rem;
    opacity: 0.55;
}

.vendor-module-listing-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    justify-content: flex-end;
}

.vendor-module-listing-card__tag,
.vendor-module-listing-card__status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.vendor-module-listing-card__tag--platform {
    background: #dbeafe;
    color: #1d4ed8;
}

.vendor-module-listing-card__tag--own {
    background: #d1fae5;
    color: #047857;
}

.vendor-module-listing-card__status--active {
    background: #dcfce7;
    color: #166534;
}

.vendor-module-listing-card__status--inactive {
    background: #f3f4f6;
    color: #4b5563;
}

.vendor-module-listing-card__status--neutral {
    background: #fff;
    color: #374151;
}

.vendor-module-listing-card__body {
    flex: 1 1 auto;
    padding: 1rem 1.15rem 0.85rem;
    min-width: 0;
}

.vendor-module-listing-card__id {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.vendor-module-listing-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.35rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vendor-module-listing-card__slug {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    color: #9ca3af;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    word-break: break-all;
}

.vendor-module-listing-card__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0 0 0.5rem;
}

.vendor-module-listing-card__rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.vendor-module-listing-card__rating-stars i {
    font-size: 0.82rem;
}

.vendor-module-listing-card__rating-stars .is-filled {
    color: #f59e0b;
}

.vendor-module-listing-card__rating-stars .is-empty {
    color: #d1d5db;
}

.vendor-module-listing-card__rating-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
}

.vendor-module-listing-card__rating-count {
    font-size: 0.78rem;
    color: #6b7280;
}

.vendor-module-listing-card__rating-count--none {
    color: #9ca3af;
    font-style: italic;
}

.vendor-module-listing-card__meta {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.vendor-module-listing-card__meta i {
    color: var(--vp-teal);
}

.vendor-module-listing-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
}

.vendor-listing-action-form {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
}

.vendor-listing-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.vendor-listing-action-btn:hover {
    transform: translateY(-1px);
}

.vendor-listing-action-btn--view {
    background: #fff;
    border-color: #d1d5db;
    color: #374151;
}

.vendor-listing-action-btn--view:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.vendor-listing-action-btn--edit {
    background: var(--vp-teal);
    border-color: var(--vp-teal);
    color: #fff;
}

.vendor-listing-action-btn--edit:hover {
    background: var(--vp-teal-dark);
    border-color: var(--vp-teal-dark);
    color: #fff;
}

.vendor-listing-action-btn--delete {
    background: #fff;
    border-color: #fecaca;
    color: #b91c1c;
    width: 100%;
}

.vendor-listing-action-btn--delete:hover {
    background: #fef2f2;
    border-color: #f87171;
    color: #991b1b;
}

.vendor-listing-action-btn--unlink {
    background: #fff;
    border-color: #e5e7eb;
    color: #4b5563;
    width: 100%;
}

.vendor-listing-action-btn--unlink:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}

.vendor-module-listings-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: #fff;
    border-radius: var(--vp-card-radius);
    border: 1px dashed #d1d5db;
    box-shadow: var(--vp-shadow);
}

.vendor-module-listings-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--vp-teal-pale);
    color: var(--vp-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.vendor-module-listings-empty h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vendor-module-listings-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .vendor-module-listings-header__aside {
        width: 100%;
        justify-content: space-between;
    }

    .vendor-module-listings-grid {
        grid-template-columns: 1fr;
    }

    .vendor-module-listing-card__actions {
        flex-direction: column;
    }

    .vendor-listing-action-btn,
    .vendor-listing-action-form {
        width: 100%;
        flex: none;
    }
}

/* ========== Vendor KYC documents ========== */


.vendor-documents-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vendor-documents-alert {
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.vendor-documents-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vendor-documents-summary__item {
    flex: 1 1 140px;
    min-width: 120px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    box-shadow: var(--vp-shadow);
}

.vendor-documents-summary__value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.vendor-documents-summary__value--success { color: #047857; }
.vendor-documents-summary__value--warning { color: #b45309; }
.vendor-documents-summary__value--danger { color: #b91c1c; }

.vendor-documents-summary__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 600;
}

.vendor-documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vendor-doc-row {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: var(--vp-card-radius);
    box-shadow: var(--vp-shadow);
    padding: 1.15rem 1.25rem;
    margin-bottom: 1rem;
}

.vendor-doc-row--group {
    border-color: #d1fae5;
    background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%);
}

.vendor-doc-row__main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vendor-doc-row__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--vp-teal-pale);
    color: var(--vp-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.vendor-doc-row__info {
    flex: 1 1 auto;
    min-width: 0;
}

.vendor-doc-row__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.25rem;
}

.vendor-doc-row__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: normal;
}

.vendor-doc-row__category {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
}

.vendor-doc-row__desc {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.vendor-doc-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.vendor-doc-status--missing {
    background: #f3f4f6;
    color: #6b7280;
}

.vendor-doc-status--pending {
    background: #fef3c7;
    color: #92400e;
}

.vendor-doc-status--approved {
    background: #d1fae5;
    color: #047857;
}

.vendor-doc-status--rejected {
    background: #fee2e2;
    color: #b91c1c;
}

.vendor-doc-row__uploads {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.vendor-doc-row__uploads--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.vendor-doc-upload-field {
    background: #fafbfc;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 0.85rem;
}

.vendor-doc-upload-field--compact {
    height: 100%;
}

.vendor-doc-upload-field__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.vendor-doc-upload-field__label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #374151;
}

.vendor-doc-upload-field__file {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
    color: #4b5563;
}

.vendor-doc-upload-field__file i {
    color: var(--vp-teal);
}

.vendor-doc-upload-field__view {
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--vp-teal-dark);
    text-decoration: none;
}

.vendor-doc-upload-field__view:hover {
    color: var(--vp-teal);
    text-decoration: underline;
}

.vendor-doc-upload-field__note {
    margin: 0 0 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.8rem;
}

.vendor-doc-upload-form__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.vendor-doc-upload-form__input {
    flex: 1 1 180px;
    min-width: 0;
    border-radius: 8px;
}

.vendor-doc-upload-form__btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.vendor-doc-upload-form__hint {
    margin: 0.45rem 0 0;
    font-size: 0.75rem;
    color: #9ca3af;
}

.vendor-documents-footer {
    margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
    .vendor-doc-row__uploads--split {
        grid-template-columns: 1fr;
    }

    .vendor-doc-upload-form__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .vendor-doc-upload-form__btn {
        width: 100%;
    }
}

/* Two-factor authentication */
.vendor-2fa-auth-icon {
    width: 52px;
    height: 52px;
    color: var(--vp-teal, #0d9488);
}

.vendor-2fa-code-input {
    letter-spacing: 0.35em;
    font-weight: 700;
}

.vendor-2fa-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.vendor-2fa-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.vendor-2fa-status-badge.is-on {
    background: #d1fae5;
    color: #047857;
}

.vendor-2fa-status-badge.is-off {
    background: #f3f4f6;
    color: #6b7280;
}

.vendor-2fa-card__hero {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin-bottom: 1.25rem;
}

.vendor-2fa-card__hero--on {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border: 1px solid #99f6e4;
}

.vendor-2fa-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.15);
}

.vendor-2fa-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.vendor-2fa-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: #374151;
    font-size: 0.92rem;
}

.vendor-2fa-benefits i {
    color: #0d9488;
}

.vendor-2fa-action-form {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}

.vendor-2fa-info-card {
    height: 100%;
}

.vendor-2fa-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.vendor-2fa-steps li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: #4b5563;
}

.vendor-2fa-steps__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d9488;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-teal {
    color: #0d9488 !important;
}

@media (max-width: 767px) {
    .vendor-2fa-card__hero {
        flex-direction: column;
    }
}

.vendor-kyc-forms-list {
    display: grid;
    gap: 1rem;
}

.vendor-kyc-form-card__fields,
.vendor-kyc-form-card__readonly {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid #eef2f7;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
}

.vendor-kyc-readonly-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.vendor-kyc-readonly-value {
    font-weight: 600;
    color: #111827;
}
.vendor-portal-page__title{font-size: 30px; font-weight: 700;}

/* Vendor reviews page */
.vendor-reviews-page__head {
    margin-bottom: 1.5rem;
}

.vendor-reviews-page__subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    max-width: 42rem;
}

.vendor-reviews-module-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.vendor-reviews-module-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: #f3f4f6;
    color: #4b5563;
}

.vendor-reviews-module-pill--hotel { background: #eff6ff; color: #1d4ed8; }
.vendor-reviews-module-pill--tour { background: #ecfdf5; color: #047857; }
.vendor-reviews-module-pill--visa { background: #fef3c7; color: #b45309; }

.vendor-reviews-stat-suffix {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    margin-left: 0.15rem;
}

.vendor-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vendor-review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--vp-shadow, 0 1px 3px rgba(15, 23, 42, 0.06));
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.vendor-review-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.vendor-review-card--pending {
    border-left: 4px solid #f59e0b;
}

.vendor-review-card--replied {
    border-left: 4px solid #10b981;
}

.vendor-review-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.vendor-review-card__customer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vendor-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vp-teal, #0d9488) 0%, #14b8a6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vendor-review-card__name {
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.vendor-review-card__date {
    font-size: 0.82rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

.vendor-review-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.vendor-reviews-module-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.vendor-reviews-module-badge--hotel {
    background: #dbeafe;
    color: #1e40af;
}

.vendor-reviews-module-badge--tour {
    background: #d1fae5;
    color: #065f46;
}

.vendor-reviews-module-badge--visa {
    background: #fef3c7;
    color: #92400e;
}

.vendor-review-card__status {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.vendor-review-card__status--pending {
    background: #fffbeb;
    color: #b45309;
}

.vendor-review-card__status--done {
    background: #ecfdf5;
    color: #047857;
}

.vendor-review-card__listing {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.75rem;
    padding: 0.55rem 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

.vendor-review-card__listing i {
    color: #9ca3af;
    font-size: 0.8rem;
}

.vendor-review-card__listing a {
    color: var(--vp-teal, #0d9488);
    font-weight: 600;
    text-decoration: none;
}

.vendor-review-card__listing a:hover {
    text-decoration: underline;
}

.vendor-review-card__rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.vendor-review-card__stars {
    display: inline-flex;
    gap: 0.12rem;
}

.vendor-review-card__stars .fa-star.is-filled {
    color: #f59e0b;
}

.vendor-review-card__stars .fa-star.is-empty {
    color: #e5e7eb;
}

.vendor-review-card__reason {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}

.vendor-review-card__quote {
    margin: 0 0 1rem;
    padding: 0;
    border: none;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.vendor-review-card__reply {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.vendor-review-card__reply-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #047857;
    margin-bottom: 0.35rem;
}

.vendor-review-card__reply-label i {
    margin-right: 0.25rem;
}

.vendor-review-card__reply p {
    margin: 0;
    color: #1f2937;
    line-height: 1.55;
}

.vendor-review-card__reply-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
}

.vendor-review-card__reply-form textarea {
    border-radius: 10px;
    border-color: #e5e7eb;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 88px;
}

.vendor-review-card__reply-form textarea:focus {
    border-color: var(--vp-teal, #0d9488);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.vendor-review-card__reply-actions {
    margin-top: 0.65rem;
}

.vendor-reviews-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
}

.vendor-reviews-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.vendor-reviews-empty h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vendor-reviews-empty p {
    color: #6b7280;
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.55;
}

.vendor-reviews-pagination {
    margin-top: 1.25rem;
}

@media (max-width: 575.98px) {
    .vendor-review-card {
        padding: 1rem;
    }

    .vendor-review-card__meta {
        width: 100%;
    }
}
