﻿/* ============================================
   VH HEADER
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');




/*.vh-header {
    --rg: #C4866E;
    --rg-lt: #E8B4A0;
    --rg-dk: #8A5240;
    --gd: #C9A84C;
    --gd-dk: #8B6914;
    --tx-l: #332216;
    --mt-l: #6b5a50;
    --bdr: rgba(196,134,110,.18);
    background: #fff;
    border-bottom: 1px solid var(--bdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: "Roboto", sans-serif;
}*/

.vh-header {
    --rg: #D6336C;
    --rg-lt: #EC6B9C;
    --rg-dk: #A02458;
    --gd: #6C4BA6;
    --gd-dk: #4A3278;
    --tx-l: #1E0E17;
    --mt-l: #7A5E70;
    --bdr: rgba(160,36,88,.18);
    background: #fff;
    border-bottom: 1px solid var(--bdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: "Roboto", sans-serif;
}

a{
    text-decoration:none !important;
}

    /* ---------- Kill default browser tap/focus box on buttons ----------
   (this is what was showing as an ugly "border" on click / active state)
   We keep accessibility with a clean focus-visible ring for keyboard users. */
    .vh-header button,
    .vh-drawer button {
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

        .vh-header button:focus-visible,
        .vh-drawer button:focus-visible,
        .vh-header a:focus-visible,
        .vh-drawer a:focus-visible {
            outline: 2px solid var(--rg, #C4866E);
            outline-offset: 2px;
            border-radius: 8px;
        }

        .vh-header button:active,
        .vh-header a:active {
            transform: scale(.97);
        }

.vh-bar {
    margin: 0 auto;
    padding: 10px 20px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vh-logo img {
    height: 45px;
    display: block;
}

/* ---------- Main visible nav ---------- */
.vh-main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

    .vh-main-nav a {
        position: relative;
        color: var(--tx-l);
        font-size: .86rem;
        font-weight: 500;
        text-decoration: none;
        padding: 6px 10px;
        border-radius: 50px;
        transition: background .25s cubic-bezier(.4,0,.2,1), color .25s cubic-bezier(.4,0,.2,1), transform .15s ease;
    }

        .vh-main-nav a:hover {
            background: #F6E9E3;
            color: var(--rg-dk);
        }

        .vh-main-nav a:active {
            transform: scale(.96);
        }

        /* Current page — soft filled pill instead of an outline/border */
        .vh-main-nav a.active {
            background: linear-gradient(135deg,var(--rg-dk),var(--rg));
            color: #fff;
            box-shadow: 0 6px 16px rgba(196,134,110,.35);
        }

/* ---------- App dropdown in main nav ---------- */
.vh-nav-drop {
    position: relative;
}

    .vh-nav-drop::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 14px;
    }

.vh-nav-drop-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--tx-l);
    font-size: .86rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: background .25s cubic-bezier(.4,0,.2,1), color .25s cubic-bezier(.4,0,.2,1);
}

    .vh-nav-drop-btn:hover {
        background: #F6E9E3;
        color: var(--rg-dk);
    }

.vh-nav-caret {
    font-size: .6rem;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}

.vh-nav-drop:hover .vh-nav-caret {
    transform: rotate(180deg);
}

.vh-nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    margin-top: 10px;
    width: 160px;
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(24,14,8,.12);
    padding: 6px;
    list-style: none;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.vh-nav-drop:hover .vh-nav-drop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.vh-nav-drop-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--tx-l);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

    .vh-nav-drop-menu li a:hover {
        background: #F6E9E3;
        color: var(--rg-dk);
    }

    .vh-nav-drop-menu li a i {
        font-size: .95rem;
        color: var(--rg-dk);
        width: 16px;
    }

/* ---------- Right side ---------- */
.vh-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ---------- Auth: logged out (Login / Register) ---------- */
.vh-auth-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vh-btn-outline,
.vh-btn-solid {
    font-size: .82rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 100px;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s cubic-bezier(.4,0,.2,1), color .25s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1), border-color .25s cubic-bezier(.4,0,.2,1);
}

    .vh-btn-outline:active,
    .vh-btn-solid:active {
        transform: scale(.96);
    }

.vh-btn-outline {
    color: var(--rg-dk);
    border: 1.5px solid var(--rg);
    background: transparent;
}

    .vh-btn-outline:hover {
        background: #F6E9E3;
        color: var(--rg-dk);
    }

.vh-btn-solid {
    color: #fff;
    background: linear-gradient(135deg,var(--rg-dk),var(--rg),var(--gd));
    border: 1.5px solid transparent;
}

    .vh-btn-solid:hover {
        transform: translateY(-1px);
        color: #fff;
        box-shadow: 0 10px 22px rgba(196,134,110,.38);
    }

/* ---------- Auth: logged in (Profile button) ---------- */
.vh-profile {
    position: relative;
}

    /* Invisible bridge so the cursor never "leaves" the profile element
   while moving from the button down into the dropdown — fixes the
   dropdown closing before you reach it. */
    .vh-profile::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 14px;
    }

.vh-profile-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 1px 14px 1px 1px;
    border: 1.5px solid var(--bdr);
    border-radius: 100px;
    background: #fff;
    cursor: pointer;
    transition: border-color .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1);
}

    .vh-profile-btn:hover {
        border-color: var(--rg);
        box-shadow: 0 4px 14px rgba(196,134,110,.2);
    }

.vh-avatar-wrap img,
.vh-avatar-wrap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

    .vh-avatar-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vh-username {
    font-size: .84rem;
    font-weight: 700;
    color: var(--tx-l);
    max-width: 5ch;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    text-transform: capitalize;
}

.vh-caret {
    font-size: .62rem;
    color: var(--mt-l);
    transition: transform .2s;
}

.vh-profile:hover .vh-caret {
    transform: rotate(180deg);
}

.vh-profile-menu {
    display: block; /* overrides Bootstrap's .dropdown-menu default display:none */
    position: absolute;
    top: 100%;
    right: 0;
    left:auto;
    width: 220px;
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(24,14,8,.12);
    padding: 6px;
    margin: 10px 0 0;
    list-style: none;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.vh-profile:hover .vh-profile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.vh-profile-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--tx-l);
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s ease;
}

    .vh-profile-menu li a:hover {
        background: #F6E9E3;
    }

    .vh-profile-menu li a i {
        width: 15px;
        text-align: center;
        color: var(--rg-dk);
        font-size: .82rem;
    }

.vh-profile-menu li.vh-logout {
    border-top: 1px solid var(--bdr);
    margin-top: 5px;
    padding-top: 5px;
}

    .vh-profile-menu li.vh-logout a,
    .vh-profile-menu li.vh-logout a i {
        color: #c0392b;
    }

/* ---------- Hamburger ---------- */
.vh-menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--bdr);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: border-color .25s cubic-bezier(.4,0,.2,1), background .25s cubic-bezier(.4,0,.2,1);
}

    .vh-menu-toggle:hover {
        border-color: var(--rg);
        background: #F6E9E3;
    }

    .vh-menu-toggle span {
        width: 17px;
        height: 2px;
        background: var(--tx-l);
        border-radius: 2px;
        transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease;
    }

    .vh-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .vh-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .vh-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

/* ============================================
   DRAWER — with proper NESTED accordion levels
============================================ */
.vh-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24,14,8,.4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.4,0,.2,1);
}

    .vh-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

.vh-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 330px;
    max-width: 88vw;
    background: #fff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.16,1,.3,1);
    box-shadow: -16px 0 40px rgba(24,14,8,.15);
}

    .vh-drawer.open {
        transform: translateX(0);
    }

.vh-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(196,134,110,.18);
    flex-shrink: 0;
}

.vh-drawer-title {
    font-family: 'Fraunces','Playfair Display',serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #180e08;
}

.vh-drawer-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(196,134,110,.2);
    background: #fff;
    color: var(--rg-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    transition: background .25s cubic-bezier(.4,0,.2,1), border-color .25s cubic-bezier(.4,0,.2,1), color .25s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.4,0,.2,1);
}

    .vh-drawer-close:hover {
        background: #C4866E;
        border-color: #C4866E;
        color: #fff;
        transform: rotate(90deg);
    }

.vh-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--rg-lt, #E8B4A0) transparent;
}

    .vh-drawer-nav::-webkit-scrollbar {
        width: 6px;
    }

    .vh-drawer-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .vh-drawer-nav::-webkit-scrollbar-thumb {
        background: var(--rg-lt, #E8B4A0);
        border-radius: 10px;
    }

        .vh-drawer-nav::-webkit-scrollbar-thumb:hover {
            background: var(--rg, #C4866E);
        }

    .vh-drawer-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .vh-drawer-nav > .vh-level-1 > li {
        margin-bottom: 2px;
    }

.vh-level-1 > li > a,
.vh-level-1 > li > .vh-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: none;
    border-left: 3px solid transparent;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #180e08;
    font-size: .87rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .25s cubic-bezier(.4,0,.2,1), color .25s cubic-bezier(.4,0,.2,1), border-color .25s cubic-bezier(.4,0,.2,1);
}

    .vh-level-1 > li > a:hover,
    .vh-level-1 > li > .vh-sub-toggle:hover {
        background: #F6E9E3;
    }

    .vh-level-1 > li > a i {
        color: var(--rg-dk) !important;
    }

.vh-sub-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vh-sub-toggle i:first-child {
    width: 16px;
    color: #8A5240;
    font-size: .9rem;
}

.vh-chev {
    font-size: .65rem;
    color: #6b5a50;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
}

/* Open state — a soft tint + a slim accent bar reads as "active"
   far more elegantly than a hard outline/border box. */
.vh-has-sub.open > .vh-sub-toggle {
    background: #F6E9E3;
    border-left-color: var(--rg, #C4866E);
    color: #8A5240;
}

    .vh-has-sub.open > .vh-sub-toggle i:first-child,
    .vh-has-sub.open > .vh-sub-toggle .vh-chev {
        color: #8A5240;
    }

    .vh-has-sub.open > .vh-sub-toggle .vh-chev {
        transform: rotate(180deg);
    }

.vh-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .25s ease .05s;
}

.vh-has-sub.open > .vh-sub-menu {
    max-height: 1000px;
    opacity: 1;
}

.vh-sub-menu > li > a,
.vh-sub-menu > li.vh-level-2 > .vh-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 9px 12px 9px 28px;
    border-radius: 8px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #4a4038;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s cubic-bezier(.4,0,.2,1), color .2s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1);
    margin-top: 5px;
}

    .vh-sub-menu > li > a:hover,
    .vh-sub-menu > li.vh-level-2 > .vh-sub-toggle:hover {
        color: #8A5240;
        background: #F6E9E3;
        transform: translateX(2px);
    }

.vh-level-2.vh-has-sub.open > .vh-sub-toggle {
    color: #8A5240;
    background: #F6E9E3;
}

.vh-level-2 .vh-sub-toggle span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vh-level-2 .vh-sub-toggle i:first-child {
    width: 14px;
    font-size: .82rem;
    color: #8A5240;
}

.vh-sub-menu-3 > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 44px;
    color: #6b5a50;
    font-size: .79rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background .2s cubic-bezier(.4,0,.2,1), color .2s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1);
}

    .vh-sub-menu-3 > li > a:hover {
        color: #8A5240;
        background: #F6E9E3;
        transform: translateX(2px);
    }

    .vh-sub-menu-3 > li > a i {
        font-size: .85rem;
        width: 14px;
    }

/* ============================================
   SMALL DARK FOOTER
============================================ */
.vh-footer {
    background: #14100c;
    color: #cbbfb5;
    font-family: 'Manrope','DM Sans',sans-serif;
    padding: 32px 20px 0;
    width: 100% !important;
    min-width: 0;
    margin-left: auto;
    text-align:left !important;
}

.vh-footer-inner {
    
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.vh-footer-brand img {
    height: 55px;
    margin-bottom: 8px;
}

.vh-footer-brand p {
    font-size: .74rem;
    color: #cbbfb5;
    line-height: 1.5;
    margin: 0;
}

.vh-footer-col h6 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rg-lt);
    margin-bottom: 10px;
    font-weight: 700;
}

.vh-footer-col a {
    display: block;
    font-size: .78rem;
    color: #cbbfb5;
    text-decoration: none;
    margin-bottom: 7px;
}

    .vh-footer-col a:hover {
        color: #E8B4A0;
    }

    .vh-footer-col a i {
        width: 14px;
        margin-right: 5px;
        color: #C4866E;
    }

.vh-footer-social {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .vh-footer-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        color: #cbbfb5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .78rem;
        text-decoration: none;
    }

        .vh-footer-social a:hover {
            background: #C4866E;
            color: #fff;
        }

.vh-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 0;
    text-align: center;
}

    .vh-footer-bottom p {
        font-size: .72rem;
        color: #7a6e63;
        margin: 0;
    }

@media (max-width:900px) {
    .vh-footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .vh-footer-social {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 8px;
    }
}

/* ============================================
   RESPONSIVE HEADER
============================================ */
@media (max-width:1100px) {
    .vh-main-nav {
        display: none;
    }
}

@media (max-width:767px) {
    .vh-username {
        display: none;
    }

    .vh-bar {
        height: 54px;
        padding: 6px 14px;
    }

    .vh-logo img {
        height:48px;
    }

    .vh-btn-outline, .vh-btn-solid {
        padding: 7px 12px;
        font-size: .76rem;
    }
    .vh-profile-menu{
        left:-70px !important;
    }
}


@media (max-width:450px) {


    .vh-profile-menu {
        left: -110px !important;
    }
    .filter-rail {
        top: 52px !important;
    }
    .vh-footer-inner {
        grid-template-columns: 1fr;
    }
}



.vh-sub-toggle i:first-child {
    width: 16px;
    color: #8A5240;
    font-size: .9rem;
}


/*   breadcrumb-head*/
.breadcrumb-head{
    background-color: #fff !important;
}
.top-crumb {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #7a6e5e;
    padding: 8px !important;
    background-color: #fbf9f8;
    margin-bottom: 6px;
}

    .top-crumb a{
        color:#333;
        text-decoration:none;
    }
        .top-crumb a:hover {
            color: #007bff;
        }

    .top-crumb .current {
        color: #211c15;
        font-weight: 500;
    }


/*-----------Grid--------------*/
@media (min-width: 768px) {
    .container {
        max-width: 750px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px !important;
    }
}

/* NEW - large screens ke liye */
@media (min-width: 1400px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1320px !important;
    }

}

@media (min-width: 1600px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1450px !important;
    }
}

@media (min-width: 1800px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1600px !important;
    }
}

button:focus,
button:focus-visible,
a:focus,
a:focus-visible,
.btn:focus,
.btn:focus-visible {
    outline: none !important ;

}


.vh-avatar-wrap {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    padding: 1.6px;
    background: linear-gradient(135deg, #d4a017, #cd57ca);
}

    .vh-avatar-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        display: block;
        background: #fff;
    }
.vh-footer-col a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#launcher{
    display:none !important;
}
.about-trigger-wrap{
    display:none;
}