/* ================================================================
   Vidzers Design System — Shared Theme
   css/vidzers-theme.css

   Used by: index.html, login.html, register.html, howItWorks.html
            and all authenticated pages.
   Page-specific styles stay in each file's own <style> block.
   ================================================================ */

/* Google Fonts — loaded here so any page just needs vidzers-theme.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');


/* ── CSS Variables ── */
:root {
    --vz-red:    #F63854;
    --vz-orange: #FF6B35;
    --vz-dark:   #0F0B2E;
    --vz-navy:   #1a1145;
    --vz-purple: #2d1b69;
    --vz-grad-primary: linear-gradient(to right, #F63854, #FF6B35);
    --vz-grad-dark:    linear-gradient(to bottom right, #0F0B2E, #1a1145, #2d1b69);
}


/* ── Base ── */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}


/* ── Gradient text ── */
.vz-gradient-text {
    background: var(--vz-grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ================================================================
   NAVBAR
   ================================================================ */

.osahan-nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 64px;
    display: flex !important;
    align-items: center !important;
}

/* Solid state — white frosted glass (auth pages + scrolled) */
#navbar.vz-nav-solid {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08) !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.vz-nav-solid .navbar-ul .nav-link { color: #374151 !important; }
#navbar.vz-nav-solid .vz-logo-img { filter: none; }

/* Transparent state — dark frosted glass (index hero top) */
#navbar.vz-nav-transparent {
    background: rgba(15, 11, 46, 0.82) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.vz-nav-transparent .navbar-ul .nav-link,
#navbar.vz-nav-transparent .ham-icon {
    color: rgba(255, 255, 255, 0.88) !important;
}
#navbar.vz-nav-transparent .vz-logo-img { filter: brightness(0) invert(1); }
#navbar.vz-nav-transparent .vz-nav-btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9) !important;
}
#navbar.vz-nav-transparent .vz-nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
}
#navbar.vz-nav-transparent .user-dropdown-link img { border-color: rgba(255, 255, 255, 0.35); }
#navbar.vz-nav-transparent .vz-company-name { color: rgba(255, 255, 255, 0.9); }

/* Nav links */
.navbar-ul .nav-link {
    font-size: 14px !important;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    transition: color 0.2s ease;
}
.navbar-ul .nav-link:hover { color: #F63854 !important; }

#link-list { align-items: center !important; margin-top: 0 !important; }
.nav-active { color: #F63854 !important; font-weight: 600 !important; }

/* User avatar */
.user-dropdown-link { display: flex !important; align-items: center; gap: 7px; }
.user-dropdown-link img {
    width: 34px; height: 34px; border-radius: 50%;
    object-fit: cover; border: 2px solid #e5e7eb;
    vertical-align: middle; flex-shrink: 0;
}
.vz-company-name {
    font-size: 13px; font-weight: 600; color: #374151;
    max-width: 120px; overflow: hidden;
    text-overflow: ellipsis; white-space: nowrap;
}

/* Notification bell */
.navbar-ul .fa-bell { font-size: 16px; vertical-align: middle; }

/* Sidebar toggle */
#sidebarToggle { display: none; }
@media (min-width: 576px) {
    #sidebarToggle { display: flex !important; align-items: center; }
}

/* Navbar CTA buttons */
.vz-nav-btn-outline {
    padding: 6px 18px;
    border: 1.5px solid #F63854;
    color: #F63854 !important;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.vz-nav-btn-outline:hover { background: #F63854; color: #fff !important; }

.vz-nav-btn-primary {
    padding: 6px 18px;
    background: var(--vz-grad-primary);
    color: #fff !important;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.2s;
}
.vz-nav-btn-primary:hover {
    box-shadow: 0 4px 14px rgba(246, 56, 84, 0.35);
    transform: translateY(-1px);
    color: #fff !important;
}


/* ================================================================
   BUTTONS
   ================================================================ */

/* Large hero / CTA button */
.vz-btn-primary {
    padding: 12px 28px;
    background: var(--vz-grad-primary);
    color: #fff !important;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.vz-btn-primary:hover {
    box-shadow: 0 8px 20px rgba(246, 56, 84, 0.35);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

/* Ghost / outline on dark backgrounds */
.vz-btn-ghost {
    padding: 12px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
}
.vz-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
}

/* Full-width form submit */
.vz-btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--vz-grad-primary);
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    display: block;
    text-align: center;
    letter-spacing: 0.01em;
}
.vz-btn-submit:hover {
    box-shadow: 0 8px 20px rgba(246, 56, 84, 0.35);
    transform: translateY(-1px);
    color: #fff;
}


/* ================================================================
   SECTION BADGE
   ================================================================ */
.vz-section-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(246, 56, 84, 0.08);
    color: var(--vz-red);
    margin-bottom: 6px;
}


/* ================================================================
   AUTH PAGE LAYOUT  (login.html + register.html)
   ================================================================ */

.vz-auth-wrapper {
    min-height: calc(100vh - 64px);
    display: flex;
}

/* Dark brand panel — LEFT side, desktop only */
.vz-auth-brand {
    background: var(--vz-grad-dark);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 44px;
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
}
.vz-auth-brand::before {
    content: '';
    position: absolute; top: 12%; left: 8%;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(246, 56, 84, 0.13); filter: blur(55px);
}
.vz-auth-brand::after {
    content: '';
    position: absolute; bottom: 12%; right: 6%;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(109, 40, 217, 0.1); filter: blur(50px);
}
@media (min-width: 992px) { .vz-auth-brand { display: flex; } }

/* Benefit list inside brand panel */
.vz-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    text-align: left;
}
.vz-benefit-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0; margin-top: 1px;
}
.vz-benefit-text strong { display: block; color: #fff; font-size: 14px; font-weight: 600; }
.vz-benefit-text span { color: rgba(255, 255, 255, 0.6); font-size: 13px; line-height: 1.5; }

/* Form panel — RIGHT side */
.vz-auth-form-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: #f3f4f6;
    overflow-y: auto;
}

/* White card */
.vz-auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}
.vz-auth-card .form-control {
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    padding: 10px 14px;
    font-size: 14px;
    height: auto;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #111827;
}
.vz-auth-card .form-control:focus {
    border-color: #F63854;
    box-shadow: 0 0 0 3px rgba(246, 56, 84, 0.08);
    outline: none;
}
.vz-auth-card .form-group { margin-bottom: 14px; }
.vz-auth-card label {
    font-size: 13px; font-weight: 500;
    color: #374151; margin-bottom: 5px; display: block;
}

/* Auth inline links */
.vz-auth-link { color: #F63854; font-weight: 500; text-decoration: none; }
.vz-auth-link:hover { text-decoration: underline; color: #FF6B35; }


/* ================================================================
   DARK FOOTER
   ================================================================ */

.vz-footer { background-color: #111827; color: #9ca3af; padding: 56px 0 32px; }
.vz-footer a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.vz-footer a:hover { color: #fff; }
.vz-footer h5 { color: #fff; font-weight: 600; margin-bottom: 16px; font-size: 15px; }
.vz-footer-divider { border-color: #1f2937; margin: 32px 0 24px; }
.vz-footer-copy { font-size: 13px; color: #6b7280; text-align: center; }
.vz-footer-copy a.brand-link { color: var(--vz-red); }
.vz-footer-copy a.brand-link:hover { color: #fff; }


/* ================================================================
   UTILITIES / FUNCTIONAL
   ================================================================ */

[v-cloak] { display: none; }
.ham-icon { font-size: 1rem; cursor: pointer; }
footer.sticky-footer { margin-left: 0; }
ul, ol { margin: 0; }


/* ── Responsive ── */
@media (min-width: 300px) and (max-width: 750px) {
    .osahan-nav { padding-left: 20px; position: fixed; width: 100%; }
    .navbar-ul { padding-left: 0; }
    .mobile-mt { margin-top: 50px; }
    .vz-auth-card { padding: 28px 20px 20px; }
}
@media (min-width: 550px) { .navbar-light, .navbar-ul { display: flex; } }


/* ================================================================
   SIDEBAR  — Vidzers dark navy theme
   Overrides osahan.css green sidebar with brand-consistent dark look
   ================================================================ */

/* Background */
.sidebar {
    background: linear-gradient(to bottom, #0F0B2E, #1a1145 55%, #2d1b69) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.28) !important;
}

/* Brand logo strip at the very top of the sidebar */
.vz-sidebar-brand {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 18px 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
}
.vz-sidebar-brand img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Thin rule between sections */
.vz-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 6px 16px 8px;
}

/* Nav links */
.sidebar .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.68) !important;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    display: flex !important;
    align-items: center;
    border-left: 3px solid transparent;
    border-radius: 0 !important;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.sidebar .nav-item .nav-link:hover,
.sidebar .nav-item .nav-link:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    color: #fff !important;
    border-left-color: rgba(246, 56, 84, 0.55);
}

/* Active item */
.sidebar .nav-item.active .nav-link {
    background: rgba(246, 56, 84, 0.14) !important;
    color: #fff !important;
    border-left-color: #F63854 !important;
    font-weight: 600 !important;
}

/* Icons */
.sidebar .nav-item .nav-link .fas,
.sidebar .nav-item .nav-link .far,
.sidebar .nav-item .nav-link .fab {
    color: rgba(255, 255, 255, 0.55) !important;
    width: 18px;
    font-size: 14px;
    text-align: center;
    flex-shrink: 0;
}
.sidebar .nav-item.active .nav-link .fas,
.sidebar .nav-item.active .nav-link .far,
.sidebar .nav-item .nav-link:hover .fas,
.sidebar .nav-item .nav-link:hover .far {
    color: #F63854 !important;
}

/* Label text next to icon */
.sidebar .nav-item .nav-link span {
    margin-left: 10px !important;
    font-size: 13.5px !important;
}

/* Collapsed / icon-only state */
.sidebar.toggled .nav-item .nav-link {
    border-left: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
    text-align: center;
}
.sidebar.toggled .nav-item .nav-link .fas,
.sidebar.toggled .nav-item .nav-link .far,
.sidebar.toggled .nav-item .nav-link .fab {
    width: auto !important;
    font-size: 1.15rem !important;
    margin-bottom: 4px;
}
.sidebar.toggled .nav-item .nav-link span {
    display: block !important;
    margin-left: 0 !important;
    font-size: 0.62rem !important;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
}
.sidebar.toggled .vz-sidebar-brand { padding: 14px 6px; }
.sidebar.toggled .vz-sidebar-divider { margin: 4px 8px 6px; }

/* Footer (Privacy / Copyright) inside sidebar */
.vz-sidebar-footer {
    padding: 20px 14px 16px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 16px;
}
.vz-sidebar-footer a {
    color: rgba(255, 255, 255, 0.42) !important;
    text-decoration: none;
    transition: color 0.2s;
}


/* ================================================================
   MODALS — Vidzers Theme
   ================================================================ */

/* Dark gradient modal header (replaces green headers) */
.vz-modal-header {
    background: linear-gradient(135deg, #0F0B2E 0%, #1a1145 55%, #2d1b69 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px 20px;
}
.vz-modal-header .modal-title,
.vz-modal-header h5,
.vz-modal-header h6 {
    color: #fff !important;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
}
.vz-modal-header .close,
.vz-modal-header .close span {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: none;
    opacity: 1;
}
.vz-modal-header .close:hover span {
    color: #fff !important;
}

/* Influencer avatar in modal header */
.vz-modal-avatar {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid rgba(246, 56, 84, 0.5);
    object-fit: cover;
}

/* Industry tag chips */
.vz-modal-header .searchIcond {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin: 2px 2px;
}

/* Platform rows (YouTube / Instagram sections) */
.vz-modal-platform {
    background: #f8f9ff;
    border: 1px solid #e8e8f0;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.vz-modal-platform h6 {
    font-weight: 600;
    color: #0F0B2E;
    margin-bottom: 2px;
}
.vz-modal-platform p {
    color: #555;
    font-size: 13px;
}

/* ── Campaign Fees section title ── */
.vz-fees-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.vz-fees-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F0B2E;
}
.vz-fees-title .fas {
    background: var(--vz-grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 15px;
}

/* ── Outer wrapper for all fee cards ── */
.vz-price-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

/* ── Individual platform fee card ── */
.vz-fee-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ebebf4;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Platform header bar */
.vz-fee-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid transparent;
}
.vz-fee-card-header img {
    border-radius: 3px;
}

/* Platform accent colours — light pastel headers */
.vz-fee-card--insta {
    border-left: 3px solid #E1306C;
}
.vz-fee-card--insta .vz-fee-card-header {
    background: #fff0f6;
    color: #c2185b;
    border-bottom-color: #fce4ec;
}

.vz-fee-card--fb {
    border-left: 3px solid #1877F2;
}
.vz-fee-card--fb .vz-fee-card-header {
    background: #eff4ff;
    color: #1565C0;
    border-bottom-color: #dce8fd;
}

.vz-fee-card--yt {
    border-left: 3px solid #e53935;
}
.vz-fee-card--yt .vz-fee-card-header {
    background: #fff5f5;
    color: #c62828;
    border-bottom-color: #fde8e8;
}

/* Column header row */
.vz-fee-table-head {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #f7f7fb;
    border-bottom: 1px solid #ececf4;
    margin: 0;
    padding: 5px 14px;
}

/* Data rows */
.vz-fee-row {
    font-size: 13px;
    color: #333;
    margin: 0;
    padding: 7px 14px;
    border-bottom: 1px solid #f2f2f8;
    background: #fff;
}
.vz-fee-row:last-child { border-bottom: none; }
.vz-fee-row:nth-child(even) { background: #fafafe; }

/* "Not available" placeholder */
.vz-price-empty {
    border: 1.5px dashed #dde0ef;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    color: #aaa;
    font-size: 13px;
    background: #fafafa;
    margin-top: 4px;
}
.vz-sidebar-footer a:hover { color: rgba(255, 255, 255, 0.85) !important; }


/* ================================================================
   BOOTSTRAP BUTTON OVERRIDES — Vidzers Theme
   Remaps all btn-* colours to the Vidzers design system.
   No HTML changes needed — applied globally via vidzers-theme.css.
   ================================================================ */

/* ── btn-primary → red-orange gradient ── */
.btn-primary {
    background: linear-gradient(135deg, #F63854, #FF6B35) !important;
    border-color: #F63854 !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(246, 56, 84, 0.22) !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background: linear-gradient(135deg, #e0243e, #e85c28) !important;
    border-color: #e0243e !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(246, 56, 84, 0.35) !important;
}

/* ── btn-secondary → soft lavender-gray ── */
.btn-secondary {
    background: #f0f0f8 !important;
    border-color: #c8c8de !important;
    color: #3b3665 !important;
    box-shadow: none !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background: #e2e2f2 !important;
    border-color: #a8a8c8 !important;
    color: #0F0B2E !important;
}

/* ── btn-success → Vidzers gradient ── */
.btn-success {
    background: linear-gradient(135deg, #F63854, #FF6B35) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(246, 56, 84, 0.28) !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
    background: linear-gradient(135deg, #e0243e, #e85c28) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(246, 56, 84, 0.38) !important;
}

/* ── btn-danger → theme red ── */
.btn-danger {
    background: #F63854 !important;
    border-color: #F63854 !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(246, 56, 84, 0.2) !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
    background: #d92040 !important;
    border-color: #d92040 !important;
}

/* ── btn-info → indigo/purple ── */
.btn-info {
    background: #5c6bc0 !important;
    border-color: #5c6bc0 !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(92, 107, 192, 0.22) !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
    background: #4a57a8 !important;
    border-color: #4a57a8 !important;
}

/* ── btn-dark → deep navy ── */
.btn-dark {
    background: #0F0B2E !important;
    border-color: #0F0B2E !important;
    color: #fff !important;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background: #1a1145 !important;
    border-color: #1a1145 !important;
}

/* ── btn-light → near-white with dark text ── */
.btn-light {
    background: #f5f5fc !important;
    border-color: #ddddf0 !important;
    color: #0F0B2E !important;
}
.btn-light:hover,
.btn-light:focus {
    background: #ebebf8 !important;
    border-color: #c5c5dc !important;
}

/* ── Outline variants ── */
.btn-outline-primary {
    border-color: #F63854 !important;
    color: #F63854 !important;
    background: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background: linear-gradient(135deg, #F63854, #FF6B35) !important;
    border-color: #F63854 !important;
    color: #fff !important;
}

.btn-outline-secondary {
    border-color: #c8c8de !important;
    color: #3b3665 !important;
    background: transparent !important;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background: #f0f0f8 !important;
    border-color: #a8a8c8 !important;
    color: #0F0B2E !important;
}

.btn-outline-info {
    border-color: #5c6bc0 !important;
    color: #5c6bc0 !important;
    background: transparent !important;
}
.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active {
    background: #5c6bc0 !important;
    border-color: #5c6bc0 !important;
    color: #fff !important;
}

.btn-outline-success {
    border-color: #10b981 !important;
    color: #10b981 !important;
    background: transparent !important;
}
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: #fff !important;
}

.btn-outline-danger {
    border-color: #F63854 !important;
    color: #F63854 !important;
    background: transparent !important;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active {
    background: #F63854 !important;
    border-color: #F63854 !important;
    color: #fff !important;
}

.btn-outline-dark {
    border-color: #0F0B2E !important;
    color: #0F0B2E !important;
    background: transparent !important;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background: #0F0B2E !important;
    border-color: #0F0B2E !important;
    color: #fff !important;
}

/* ── Disabled state ── */
.btn:disabled,
.btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}


/* ================================================================
   MOBILE NAVIGATION MENU (hamburger dropdown)
   Note: selectors use #navbar #link-list (two IDs = specificity 2,x,0)
   to beat #navbar.vz-nav-solid .navbar-ul .nav-link (1,3,0).
   ================================================================ */
@media (max-width: 575.98px) {

    /* Panel — becomes visible when d-none is removed by toggleHam() */
    #navbar #link-list:not(.d-none) {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100% !important;
        background: linear-gradient(160deg, #0F0B2E 0%, #1a1145 55%, #2d1b69 100%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
        z-index: 1040;
        padding: 6px 0 16px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        border-top: 2px solid rgba(246, 56, 84, 0.35);
        margin: 0 !important;
    }

    /* Full-width nav items */
    #navbar #link-list .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    #navbar #link-list .nav-item .nav-link {
        color: rgba(255, 255, 255, 0.88) !important;
        padding: 13px 22px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-left: 3px solid transparent !important;
        border-radius: 0 !important;
        background: transparent !important;
        width: 100%;
    }

    #navbar #link-list .nav-item .nav-link i {
        margin-right: 14px !important;
        width: 18px;
        text-align: center;
        color: rgba(255, 255, 255, 0.5) !important;
        font-size: 14px !important;
        flex-shrink: 0;
    }

    #navbar #link-list .nav-item .nav-link:hover,
    #navbar #link-list .nav-item .nav-link:active {
        background: rgba(255, 255, 255, 0.07) !important;
        color: #fff !important;
        border-left-color: rgba(246, 56, 84, 0.5) !important;
    }

    #navbar #link-list .nav-item .nav-link:hover i {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    /* Active page highlight */
    #navbar #link-list .nav-item.nav-active .nav-link,
    #navbar #link-list .nav-item.active .nav-link {
        color: #F63854 !important;
        background: rgba(246, 56, 84, 0.1) !important;
        border-left-color: #F63854 !important;
        font-weight: 600 !important;
    }

    #navbar #link-list .nav-item.nav-active .nav-link i,
    #navbar #link-list .nav-item.active .nav-link i {
        color: #F63854 !important;
    }

    /* Prevent global span{display:block} from breaking icon+text row */
    #navbar #link-list .nav-item .nav-link span {
        display: inline !important;
        color: inherit !important;
    }

    /* Greeting section (Hello Company) */
    #navbar #link-list > div:first-child {
        padding: 14px 22px 8px;
        color: rgba(255, 255, 255, 0.45) !important;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
    }

    /* Copyright / footer links at bottom of mobile menu */
    #navbar #link-list > div:last-child {
        padding: 14px 22px;
        color: rgba(255, 255, 255, 0.38) !important;
        font-size: 11px;
        line-height: 1.9;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 8px;
    }

    #navbar #link-list > div:last-child a {
        color: rgba(255, 255, 255, 0.55) !important;
        text-decoration: none;
    }

    /* Sign In / Sign Up CTA buttons */
    #navbar #link-list .vz-nav-btn-primary,
    #navbar #link-list .vz-nav-btn-outline {
        width: calc(100% - 44px) !important;
        margin: 6px 22px !important;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }
}
