/* ══════════════════════════════════════════════════════════════
   MediHub — Homepage V1 (/home-v1)
   Pixel-perfect design matching official B2B platform template.
   ══════════════════════════════════════════════════════════════ */

:root {
    --v1-navy: #1b2738;
    --v1-navy-d: #091a27;
    --v1-navy-top: #1c2a3a;
    --v1-teal: #00a8a8;
    --v1-teal-d: #008888;
    --v1-cyan: #00d2d2;
    --v1-blue: #1c7ed6;
    --v1-ink: #0f2534;
    --v1-text: #35495a;
    --v1-muted: #6b8194;
    --v1-line: #e2eaf0;
    --v1-bg: #f4f8fb;
    --v1-wrap: 1240px;
    --v1-radius: 12px;
}

body.v1 {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--v1-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

body.v1 * { box-sizing: border-box; }
body.v1 img { max-width: 100%; display: block; }
body.v1 a { text-decoration: none; color: inherit; }
body.v1 h1, body.v1 h2, body.v1 h3, body.v1 h4 { margin: 0; color: var(--v1-ink); }
body.v1 p { margin: 0; }
body.v1 svg { width: 1em; height: 1em; stroke-linecap: round; stroke-linejoin: round; fill: none; }
body.v1 svg[fill="currentColor"] { fill: currentColor; stroke: none; }

.v1-wrap {
    max-width: var(--v1-wrap);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ─────────── Buttons ─────────── */
.v1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .16s;
    box-sizing: border-box;
    text-decoration: none !important;
}

.v1-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.v1-btn--dark {
    background: #172433;
    color: #ffffff !important;
    border: 1px solid #2d3f54;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}
.v1-btn--dark svg { stroke: #00d2d2; }
.v1-btn--dark:hover {
    background: #223347;
    color: #ffffff !important;
    border-color: #00a8a8;
    box-shadow: 0 4px 12px rgba(0, 168, 168, 0.2);
}

.v1-btn--outline {
    background: #fff;
    color: var(--v1-ink) !important;
    border: 1.5px solid var(--v1-line);
}
.v1-btn--outline:hover { border-color: var(--v1-teal); color: var(--v1-teal) !important; background: #f7fcfc; }

.v1-btn--teal {
    background: var(--v1-teal);
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 168, 168, 0.25);
}
.v1-btn--teal:hover { background: var(--v1-teal-d); color: #ffffff !important; }


/* ═══ 1. UTILITY TOP BAR ═══ */
.v1-utility {
    background: var(--v1-navy-top);
    color: rgba(255,255,255,.85);
    font-size: 12.5px;
}

.v1-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.v1-utility-left, .v1-utility-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.v1-utility a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.85);
    transition: color .15s;
}
.v1-utility a:hover { color: #fff; }
.v1-utility svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 1.9; }

.v1-sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.2);
}

.v1-socials { display: flex; gap: 6px; margin-left: 6px; }

.v1-socials a {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.v1-socials a:hover { background: var(--v1-teal); }
.v1-socials svg { width: 13px; height: 13px; stroke: none; }

/* ═══ 2. WHITE HEADER ═══ */
.v1-header {
    background: #fff;
    border-bottom: 1px solid var(--v1-line);
}

.v1-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 72px;
}

.v1-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.v1-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--v1-teal), #007799);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v1-logo-mark svg { width: 21px; height: 21px; stroke: currentColor; }

.v1-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.v1-logo-text b { font-size: 21px; font-weight: 800; color: var(--v1-ink); letter-spacing: -.02em; }
.v1-logo-text b em { font-style: normal; color: var(--v1-teal); }
.v1-logo-text i { font-style: normal; font-size: 10.5px; color: var(--v1-muted); font-weight: 500; }

.v1-search {
    flex: 1;
    max-width: 540px;
    display: flex;
    align-items: center;
    height: 42px;
    border: 1.5px solid var(--v1-line);
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s;
}
.v1-search:focus-within { border-color: var(--v1-teal); }

.v1-search-ico { width: 16px; height: 16px; margin: 0 8px 0 13px; color: var(--v1-muted); stroke: currentColor; flex-shrink: 0; }

.v1-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--v1-ink);
    background: none;
}
.v1-search input::placeholder { color: #9db0bf; }

.v1-search select {
    border: none;
    border-left: 1px solid var(--v1-line);
    outline: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--v1-text);
    background: #fff;
    padding: 0 10px;
    height: 100%;
    cursor: pointer;
    flex-shrink: 0;
}

.v1-search button {
    width: 48px;
    height: 100%;
    border: none;
    background: var(--v1-teal);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v1-search button:hover { background: var(--v1-teal-d); }
.v1-search button svg { width: 17px; height: 17px; stroke: currentColor; }

.v1-header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }

.v1-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.v1-burger span { width: 22px; height: 2px; background: var(--v1-ink); border-radius: 2px; }

/* ═══ 3. LIGHT NAV ═══ */
.v1-nav {
    background: #fbfdfe;
    border-bottom: 1px solid var(--v1-line);
}

.v1-nav-inner { display: flex; align-items: center; gap: 4px; }

.v1-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    height: 46px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--v1-text);
    border-bottom: 2.5px solid transparent;
    transition: color .15s, border-color .15s;
}
.v1-nav-link svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.2; opacity: .6; }
.v1-nav-link:hover { color: var(--v1-teal); }
.v1-nav-link.is-active { color: var(--v1-teal); border-bottom-color: var(--v1-teal); }

/* ═══ HERO BANNER ═══ */
.v1-hero {
    position: relative;
    background: linear-gradient(105deg, #072535 0%, #0a3547 50%, #0d465c 100%);
    overflow: hidden;
    color: #fff;
    min-height: 440px;
}

.v1-hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background: url('/images/hero-mri.jpg') center right / cover no-repeat;
}

.v1-hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #072535 0%, rgba(7,37,53,0.85) 30%, rgba(7,37,53,0.2) 75%, transparent 100%);
    z-index: 1;
}

.v1-hero-tagline {
    position: absolute;
    right: 7%;
    bottom: 26%;
    z-index: 2;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.6);
    letter-spacing: -.01em;
}

.v1-hero-inner {
    position: relative;
    z-index: 3;
    padding: 44px 20px 40px;
}

.v1-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00d2d2;
    margin-bottom: 14px;
}

.v1-hero-eyebrow span { position: relative; }
.v1-hero-eyebrow span + span::before {
    content: "•";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d2d2;
}

body.v1 .v1-hero h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 14px;
}
body.v1 .v1-hero h1 em {
    font-style: normal;
    color: #00d2d2;
    background: linear-gradient(135deg, #00e6e6, #00a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v1-hero-sub {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
    margin-bottom: 22px;
}

.v1-hero-search {
    display: flex;
    align-items: center;
    max-width: 620px;
    height: 48px;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.v1-hero-search-ico { width: 17px; height: 17px; margin: 0 9px 0 15px; color: var(--v1-muted); stroke: currentColor; flex-shrink: 0; }

.v1-hero-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    color: var(--v1-ink);
}
.v1-hero-search input::placeholder { color: #9db0bf; }

.v1-hero-search select {
    border: none;
    border-left: 1px solid var(--v1-line);
    outline: none;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--v1-text);
    background: #fff;
    padding: 0 12px;
    height: 100%;
    cursor: pointer;
    flex-shrink: 0;
}

.v1-hero-search button {
    border: none;
    background: var(--v1-teal);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 0 28px;
    height: 100%;
    cursor: pointer;
    flex-shrink: 0;
}
.v1-hero-search button:hover { background: var(--v1-teal-d); }

.v1-popular {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.v1-popular-label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.75); }

.v1-pill {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 100px;
    padding: 5px 13px;
    transition: all .15s;
}
.v1-pill:hover { background: var(--v1-teal); border-color: var(--v1-teal); }

.v1-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
}

.v1-stat { display: flex; align-items: center; gap: 11px; }

.v1-stat-ico {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    background: rgba(255,255,255,.05);
}
.v1-stat-ico svg { width: 19px; height: 19px; stroke: currentColor; }

.v1-stat-body { display: flex; flex-direction: column; line-height: 1.25; }
.v1-stat-body b { font-size: 20px; font-weight: 800; color: #fff; }
.v1-stat-body i { font-style: normal; font-size: 12px; color: rgba(255,255,255,.75); }

.v1-hero-card {
    position: absolute;
    right: 20px;
    bottom: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 14px 36px rgba(0,0,0,.3);
    max-width: 340px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.v1-hero-card-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e6f7f7;
    color: var(--v1-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v1-hero-card-ico svg { width: 22px; height: 22px; stroke: currentColor; }

.v1-hero-card-copy { display: flex; flex-direction: column; line-height: 1.3; }
.v1-hero-card-copy b { font-size: 15px; font-weight: 700; color: var(--v1-ink); }
.v1-hero-card-copy i { font-style: normal; font-size: 12.5px; color: var(--v1-muted); }

.v1-hero-card-go {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v1-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: background .15s;
}
.v1-hero-card-go:hover { background: var(--v1-teal); }
.v1-hero-card-go svg { width: 16px; height: 16px; stroke: currentColor; }

/* ═══ SECTION SHELL ═══ */
.v1-section { padding: 44px 0; }

.v1-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.v1-sec-head h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.v1-sec-head p { font-size: 13.5px; color: var(--v1-muted); margin-top: 5px; line-height: 1.55; }

.v1-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--v1-teal);
    transition: gap .15s;
}
.v1-link-arrow svg { width: 15px; height: 15px; stroke: currentColor; }
.v1-link-arrow:hover { gap: 10px; }

/* ═══ WHAT ARE YOU LOOKING FOR ═══ */
.v1-look-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.v1-look-card {
    position: relative;
    border: 1px solid var(--v1-line);
    border-radius: var(--v1-radius);
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    overflow: hidden;
    transition: all .2s ease;
}

.v1-look-card[data-tone="blue"] { background: linear-gradient(135deg, #ffffff 40%, #eef7ff 100%); }
.v1-look-card[data-tone="teal"] { background: linear-gradient(135deg, #ffffff 40%, #e6f9f7 100%); }
.v1-look-card[data-tone="orange"] { background: linear-gradient(135deg, #ffffff 40%, #fff4ee 100%); }
.v1-look-card[data-tone="purple"] { background: linear-gradient(135deg, #ffffff 40%, #f5f0ff 100%); }

.v1-look-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15,37,52,.08);
    border-color: rgba(0,168,168,.3);
}

.v1-look-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.v1-look-card-img {
    width: 86px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

.v1-look-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.v1-look-ico svg { width: 22px; height: 22px; stroke: currentColor; }

.v1-look-card[data-tone="blue"] .v1-look-ico { background: #1c7ed6; }
.v1-look-card[data-tone="teal"] .v1-look-ico { background: #00a8a8; }
.v1-look-card[data-tone="orange"] .v1-look-ico { background: #f2792b; }
.v1-look-card[data-tone="purple"] .v1-look-ico { background: #7a5af0; }

.v1-look-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.v1-look-card p { font-size: 12.5px; color: var(--v1-muted); line-height: 1.5; margin-bottom: 14px; }

.v1-look-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.v1-count {
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 100px;
    padding: 5px 12px;
}

.v1-look-card[data-tone="blue"] .v1-count { background: #e0edfb; color: #1a6fc0; }
.v1-look-card[data-tone="teal"] .v1-count { background: #d9f0ef; color: #0f8888; }
.v1-look-card[data-tone="orange"] .v1-count { background: #fbe6d6; color: #cf6318; }
.v1-look-card[data-tone="purple"] .v1-count { background: #e8e2fb; color: #5f42cf; }

.v1-go {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--v1-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v1-text);
    transition: all .15s;
}
.v1-go svg { width: 14px; height: 14px; stroke: currentColor; }
.v1-look-card:hover .v1-go { background: var(--v1-teal); border-color: var(--v1-teal); color: #fff; }

/* ═══ FEATURE STRIP ═══ */
.v1-strip {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 18px;
    margin-top: 20px;
}

.v1-strip-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--v1-line);
    border-radius: var(--v1-radius);
    padding: 18px 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,.02);
}

.v1-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-right: 1px solid var(--v1-line);
}
.v1-strip-item:last-child { border-right: none; }

.v1-strip-ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v1-strip-ico svg { width: 19px; height: 19px; stroke: currentColor; }
.v1-strip-ico.tone-teal { background: #e0f5f5; color: var(--v1-teal); }
.v1-strip-ico.tone-blue { background: #e3effb; color: var(--v1-blue); }

.v1-strip-item span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.v1-strip-item b { font-size: 13.5px; font-weight: 700; color: var(--v1-ink); }
.v1-strip-item i { font-style: normal; font-size: 11.5px; color: var(--v1-muted); }

.v1-strip-cta {
    display: flex;
    gap: 14px;
    background: linear-gradient(135deg, #e6f9f7 0%, #d5f2f0 100%);
    border: 1px solid #bceae7;
    border-radius: var(--v1-radius);
    padding: 18px;
}

.v1-strip-cta-ico {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--v1-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}
.v1-strip-cta-ico svg { width: 20px; height: 20px; stroke: currentColor; }

.v1-strip-cta b { display: block; font-size: 14px; font-weight: 700; color: var(--v1-ink); }
.v1-strip-cta i { display: block; font-style: normal; font-size: 12px; color: var(--v1-muted); margin: 3px 0 12px; line-height: 1.45; }
.v1-strip-cta .v1-btn { padding: 9px 16px; font-size: 12.5px; width: 100%; justify-content: center; }

/* ═══ NEWS SECTION ═══ */
.v1-news {
    background: #f4f9fc;
    padding: 44px 0;
    position: relative;
}

.v1-news-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--v1-teal);
    background: #d6f5f5;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.v1-news-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.v1-news-tabs button {
    border: 1px solid var(--v1-line);
    background: #fff;
    border-radius: 7px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--v1-text);
    padding: 8px 15px;
    cursor: pointer;
    transition: all .15s;
}
.v1-news-tabs button:hover { border-color: var(--v1-teal); color: var(--v1-teal); }
.v1-news-tabs button.is-active { background: var(--v1-navy); border-color: var(--v1-navy); color: #fff; }

.v1-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.v1-news-feature {
    background: #fff;
    border: 1px solid var(--v1-line);
    border-radius: var(--v1-radius);
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
    transition: transform .2s, box-shadow .2s;
}
.v1-news-feature:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }

.v1-news-feature-img {
    position: relative;
    width: 100%;
    height: 240px;
    background: #072535;
    overflow: hidden;
}
.v1-news-feature-img img { width: 100%; height: 100%; object-fit: cover; }

.v1-badge-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #00a8a8;
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

.v1-news-feature-body { padding: 22px; }
.v1-news-feature-body h3 { font-size: 18px; font-weight: 800; line-height: 1.35; margin-bottom: 10px; color: var(--v1-ink); }
.v1-news-feature-body p { font-size: 13.5px; color: var(--v1-muted); line-height: 1.6; margin-bottom: 16px; }

.v1-news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12.5px;
    color: var(--v1-muted);
}
.v1-news-meta span { display: inline-flex; align-items: center; gap: 5px; }
.v1-news-meta svg { width: 14px; height: 14px; stroke: currentColor; }

.v1-read-more { margin-left: auto; font-weight: 700; color: var(--v1-teal); }

.v1-news-list { display: flex; flex-direction: column; gap: 10px; }

.v1-news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--v1-line);
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color .15s, box-shadow .15s;
}
.v1-news-item:hover { border-color: var(--v1-teal); box-shadow: 0 6px 16px rgba(0,0,0,.04); }

.v1-news-item-img {
    width: 72px;
    height: 56px;
    border-radius: 7px;
    overflow: hidden;
    background: #e2eaf0;
    flex-shrink: 0;
}
.v1-news-item-img img { width: 100%; height: 100%; object-fit: cover; }

.v1-news-item-body { display: flex; flex-direction: column; gap: 4px; }
.v1-news-item-body b { font-size: 13.5px; font-weight: 700; color: var(--v1-ink); line-height: 1.35; }
.v1-news-item-body i { font-style: normal; font-size: 12px; color: var(--v1-muted); }
.v1-dot { margin: 0 4px; opacity: .5; }

/* ═══ FEATURED SUPPLIERS ═══ */
.v1-suppliers {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid var(--v1-line);
    border-bottom: 1px solid var(--v1-line);
}

.v1-sec-sub {
    font-size: 13.5px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

/* Slider Section Controls */
.v1-sec-ctrls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v1-slider-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v1-slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.16s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.v1-slider-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.v1-slider-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Horizontal Crawling Carousel Track */
.v1-supplier-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 4px 20px 4px;
    margin-top: 20px;
}

.v1-supplier-carousel::-webkit-scrollbar {
    display: none;
}

.v1-supplier-carousel .v1-sc-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: calc((100% - 60px) / 4);
    scroll-snap-align: start;
    box-sizing: border-box;
}

.v1-sc-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    display: flex;
    flex-direction: column;
}

.v1-sc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}


/* Cover Image Container */
.v1-sc-cover {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e2e8f0;
}

.v1-sc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.v1-sc-card:hover .v1-sc-cover img {
    transform: scale(1.05);
}

.v1-sc-logo-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.v1-sc-logo-badge img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transform: none !important;
}

/* Round Action Buttons on Top of Image */
.v1-sc-icon-btn {
    position: absolute;
    top: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, background 0.15s ease;
    z-index: 5;
}

.v1-sc-icon-btn:hover {
    transform: scale(1.1);
}

.v1-sc-fav {
    left: 14px;
    color: #ef4444;
}
.v1-sc-fav.is-active svg {
    fill: #ef4444;
}

.v1-sc-add {
    right: 14px;
    color: #2563eb;
}

/* Card Body */
.v1-sc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.v1-sc-name {
    font-size: 18.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.v1-sc-meta {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
    margin: 0 0 16px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Pill Boxes */
.v1-sc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.v1-sc-stat {
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid #f1f5f9;
}

.v1-sc-stat-lbl {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.v1-sc-stat-val {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

/* Status Indicator */
.v1-sc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 18px;
}

.v1-sc-dot {
    font-size: 10px;
    line-height: 1;
}

/* Action Buttons (View Profile & Visit Website) */
.v1-sc-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.v1-sc-btn {
    flex: 1;
    height: 42px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.16s ease;
    box-sizing: border-box;
}

.v1-sc-btn-dark {
    background: #0b1a28;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.v1-sc-btn-dark:hover {
    background: #172a3e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.v1-sc-btn-blue {
    background: #2563eb;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.v1-sc-btn-blue:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}


/* ═══ NEWSLETTER BAR ═══ */
.v1-newsletter { padding: 20px 0 44px; }

.v1-newsletter-inner {
    background: linear-gradient(135deg, #008888 0%, #006666 100%);
    border-radius: var(--v1-radius);
    padding: 26px 36px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(0,136,136,.25);
}

.v1-newsletter-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.v1-newsletter-ico svg { width: 24px; height: 24px; stroke: currentColor; }

.v1-newsletter-copy { flex: 1; }
.v1-newsletter-copy h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.v1-newsletter-copy p { font-size: 13.5px; color: rgba(255,255,255,.85); }

.v1-newsletter-form { display: flex; gap: 10px; max-width: 440px; flex: 1; }
.v1-newsletter-form input {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    height: 44px;
    font-size: 13.5px;
    outline: none;
}
.v1-newsletter-form .v1-btn { height: 44px; background: #00d2d2; color: #072535; font-weight: 700; }
.v1-newsletter-form .v1-btn:hover { background: #fff; }

/* ═══ FOOTER ═══ */
.v1-footer {
    background: #0f1c2b;
    color: #8fa6ba;
    padding: 50px 0 30px;
    font-size: 13px;
    border-top: 1px solid #1a2a3c;
}

.v1-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
}

.v1-footer-brand .v1-logo-text b { color: #fff; }
.v1-footer-brand p { margin-top: 14px; font-size: 13px; color: #7890a4; line-height: 1.5; }

.v1-footer-col { display: flex; flex-direction: column; gap: 10px; }
.v1-footer-col h4 { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: .02em; margin-bottom: 6px; }
.v1-footer-col a { color: #8fa6ba; transition: color .15s; }
.v1-footer-col a:hover { color: #00d2d2; }

.v1-footer-socials { display: flex; gap: 8px; margin-bottom: 14px; }
.v1-footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #1b2d42;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.v1-footer-socials a:hover { background: var(--v1-teal); }
.v1-footer-socials svg { width: 15px; height: 15px; fill: currentColor; }

.v1-copy { font-size: 11.5px; color: #5a738a; line-height: 1.4; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .v1-look-grid { grid-template-columns: repeat(2, 1fr); }
    .v1-strip { grid-template-columns: 1fr; }
    .v1-strip-items { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .v1-strip-item { border-right: none; }
    .v1-news-grid { grid-template-columns: 1fr; }
    .v1-supplier-grid { grid-template-columns: repeat(3, 1fr); }
    .v1-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .v1-header-actions, .v1-search { display: none; }
    .v1-burger { display: flex; }
    .v1-hero-photo { display: none; }
    .v1-hero-card { display: none; }
    .v1-newsletter-inner { flex-direction: column; text-align: center; }
    .v1-newsletter-form { width: 100%; max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   WALLPAPER SIDEBAR ADS FOR V1 DESIGN
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 1500px) {
    body.v1.has-wallpaper-ads {
        padding-left: calc((100vw - 1240px) / 2);
        padding-right: calc((100vw - 1240px) / 2);
        box-sizing: border-box;
    }
}

@media (max-width: 1499px) {
    .v1 .wa-sidebar {
        display: none !important;
    }
}

/* Sidebar Containers */
.v1 .wa-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 1260px) / 2);
    max-width: 260px;
    height: 100vh;
    z-index: 90;
    background: #edf5fa;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

.v1 .wa-sidebar--left {
    left: 0;
    border-right: 1px solid #d4e3ee;
}

.v1 .wa-sidebar--right {
    right: 0;
    border-left: 1px solid #d4e3ee;
}

.v1 .wa-sidebar a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Fallback House Ad Design */
.v1 .wa-house {
    background: linear-gradient(180deg, #e8f4fc 0%, #d8ecf8 40%, #c5e4f5 100%);
}

.v1 .wa-house-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px 12px 14px;
    box-sizing: border-box;
    position: relative;
    overflow-y: auto;
    scrollbar-width: none;
}

.v1 .wa-house-link::-webkit-scrollbar {
    display: none;
}

.v1 .wa-house-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 37, 52, 0.45);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 5;
}

/* Ad Header Section */
.v1 .wa-house-header {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 10px;
}

.v1 .wa-house-title {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 900;
    color: #0b3754;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.v1 .wa-house-on {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #5587a8;
    margin: 3px 0;
    letter-spacing: 0.1em;
}

.v1 .wa-house-brand {
    display: block;
    color: #0284c7;
    font-size: 14.5px;
    font-weight: 900;
    line-height: 1.15;
}

.v1 .wa-house-pill {
    display: inline-block;
    background: #0f2534;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 6px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.v1 .wa-house-tagline {
    font-size: 11.5px;
    font-weight: 700;
    font-style: italic;
    color: #0284c7;
    margin-top: 2px;
}

/* Image Graphic */
.v1 .wa-house-hero-img {
    width: 100%;
    margin: 8px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
    background: #fff;
    border: 2px solid #ffffff;
}

.v1 .wa-house-hero-img img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

/* Benefits Bullets */
.v1 .wa-house-benefits {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.v1 .wa-house-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9.5px;
    font-weight: 800;
    color: #0b3754;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.v1 .wa-house-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0284c7;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(2, 132, 199, 0.25);
}

.v1 .wa-house-ico svg {
    stroke: #ffffff;
}

/* Bottom CTA Card */
.v1 .wa-house-cta-box {
    margin-top: auto;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.v1 .wa-house-link:hover .wa-house-cta-box {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
}

.v1 .wa-house-cta-sub {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-bottom: 2px;
}

.v1 .wa-house-cta-main {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 8px;
}

.v1 .wa-house-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #0284c7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background 0.15s, color 0.15s;
}

.v1 .wa-house-link:hover .wa-house-cta-btn {
    background: #0f2534;
    color: #ffffff;
}

/* Responsive Carousel Calculations */
@media (max-width: 1200px) {
    .v1-supplier-carousel .v1-sc-card {
        flex: 0 0 calc((100% - 40px) / 3);
        min-width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 850px) {
    .v1-supplier-carousel .v1-sc-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 580px) {
    .v1-supplier-carousel .v1-sc-card {
        flex: 0 0 85%;
        min-width: 85%;
    }
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR DESIGN MATCHING REFERENCE (media__1789216343627.png)
   ══════════════════════════════════════════════════════════════════ */

.nav-top {
    background: #172433 !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 12.5px !important;
    height: 38px !important;
    line-height: 38px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    position: relative !important;
    z-index: 100000 !important;
    overflow: visible !important;
}

.nav-top-inner, .nav-top-right, #nav-user, .nav-user-pill {
    position: relative !important;
    z-index: 100000 !important;
    overflow: visible !important;
}

.nav-user-dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    z-index: 9999999 !important;
    overflow: visible !important;
}

.nav-top-inner {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 38px !important;
}

.nav-top-left, .nav-top-right {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.nav-top-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color 0.15s !important;
}

.nav-top-link:hover {
    color: #ffffff !important;
}

.nav-top-divider {
    color: rgba(255,255,255,0.2) !important;
}

.nav-top-socials {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.nav-top-social {
    width: 24px !important;
    height: 24px !important;
    border-radius: 5px !important;
    background: rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.85) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s, color 0.15s !important;
}

.nav-top-social:hover {
    background: #00d2d2 !important;
    color: #ffffff !important;
}

.nav-mid {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 12px 0 !important;
}

.nav-mid-inner {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

.nav-logo-img {
    height: 44px !important;
    width: auto !important;
    display: block !important;
}

.nav-search-box {
    flex: 1 !important;
    max-width: 580px !important;
    height: 44px !important;
    border: 2px solid #00a8a8 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

.nav-search-box .nsb-ico {
    margin: 0 10px 0 14px !important;
    font-size: 15px !important;
    color: #64748b !important;
}

.nav-search-box .nsb-input {
    flex: 1 !important;
    border: none !important;
    outline: none !important;
    font-size: 14px !important;
    color: #1e293b !important;
    padding: 0 !important;
    background: transparent !important;
}

.nav-search-box .nsb-input::placeholder {
    color: #94a3b8 !important;
}

.nav-search-box .nsb-select {
    border: none !important;
    border-left: 1px solid #e2e8f0 !important;
    outline: none !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    padding: 0 12px !important;
    height: 100% !important;
    background: #ffffff !important;
    cursor: pointer !important;
}

.nav-search-box .nsb-search-btn {
    width: 48px !important;
    height: 100% !important;
    background: #1c2d42 !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s !important;
}

.nav-search-box .nsb-search-btn:hover {
    background: #0f172a !important;
}

.nav-ad-banner {
    background: #172433 !important;
    color: #ffffff !important;
    padding: 0 20px !important;
    height: 44px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: background 0.15s !important;
    white-space: nowrap !important;
}

.nav-ad-banner:hover {
    background: #223347 !important;
    color: #ffffff !important;
}

.nav-ad-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.site-nav {
    background: #0f1b2d !important;
    height: 50px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 500 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}

.nav-bar-inner {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 50px !important;
}

.nav-bar-links {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    height: 50px !important;
}

.nbl {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 14px !important;
    height: 50px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    box-sizing: border-box !important;
    transition: color 0.15s, border-color 0.15s !important;
    cursor: pointer !important;
}

.nbl:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.04) !important;
}

.nbl-active, .nbl.nbl-active {
    color: #00d2d2 !important;
    border-bottom-color: #00d2d2 !important;
    background: transparent !important;
}

.nav-bar-auth {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.auth-btn-ghost {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px !important;
    padding: 0 18px !important;
    height: 36px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: border-color 0.15s, background 0.15s !important;
}

.auth-btn-ghost:hover {
    border-color: #ffffff !important;
    background: rgba(255,255,255,0.08) !important;
}

.auth-btn-solid {
    background: #00d2d2 !important;
    color: #071727 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0 18px !important;
    height: 36px !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: background 0.15s !important;
}

.auth-btn-solid:hover {
    background: #00e6e6 !important;
}


