/* ═══════════════════════════════════════════════════════════════
   INDOOR FURNITURE
   ═══════════════════════════════════════════════════════════════ */

.vf-indoor__placeholder {
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;
}


/* ── Hero slideshow ───────────────────────────────────────────── */
.vf-hero {
    position: relative;
    width: 100%;
    height: 85svh;
    overflow: hidden;
    margin-top: 0;
}

.vf-hero__track {
    position: absolute;
    inset: 0;
}

.vf-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(.45,0,.15,1);
    will-change: transform;
}

.vf-hero__slide.is-active {
    transform: translateX(0);
    z-index: 2;
}

.vf-hero__slide.is-prev {
    transform: translateX(-100%);
    z-index: 1;
}

/* No transition while repositioning off-screen — prevents a visible snap back */
.vf-hero__slide.no-anim {
    transition: none;
}

.vf-hero__dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.vf-hero__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: 2px solid rgba(255,255,255,.8);
    cursor: pointer;
    transition: all .3s ease;
}

.vf-hero__dot:hover { background: rgba(255,255,255,.8); }

.vf-hero__dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
    .vf-hero__slide            { transition: opacity .3s ease; transform: none; opacity: 0; }
    .vf-hero__slide.is-active  { opacity: 1; }
    .vf-hero__slide.is-prev    { opacity: 0; }
}


/* ── Header: transparent overlay ──────────────────────────────── */
.vf-indoor-context header .elementor-5981 .elementor-motion-effects-layer,
.vf-indoor-context header .elementor-5981 .elementor-motion-effects-container,
.vf-indoor-context header .elementor-5981 .elementor-section,
.vf-indoor-context header .elementor-5981 .elementor-top-section,
.vf-indoor-context header .header-background {
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

.vf-indoor-context header .header-background::before {
    background: transparent !important;
    opacity: 0 !important;
}

.vf-indoor-context header .elementor-5981 .elementor-top-section {
    padding-top: 0 !important;
}

.vf-indoor-context .thegem-column-elements-inline.elementor-widget-wrap.elementor-element-populated {
    border: none !important;
}

/* Hide the duplicate menu widget row */
.vf-indoor-context .elementor-element-2660317b {
    display: none;
}

/* Header scrolls away with the page — no sticky behaviour on Indoor */
.vf-indoor-context #site-header-wrapper,
.vf-indoor-context #site-header,
.vf-indoor-context .header-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

/* Hide the sticky clone entirely */
.vf-indoor-context .header-sticky-template {
    display: none !important;
}

/* Remove space reserved above the content */
.vf-indoor-context #main,
.vf-indoor-context .site-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}


/* ── Logo: Kama Casa on Indoor pages ──────────────────────────── */
.vf-indoor-context .site-logo img,
.vf-indoor-context .elementor-5981 img[class*="logo"],
.vf-indoor-context .menu-item-type-split-logo img {
    content: url('https://vetrafurniture.com/wp-content/uploads/2026/08/logo-kamacasa.png');
    width: auto !important;
    max-height: 96px;
}


/* ── Menu: white text, split order ────────────────────────────── */
.vf-indoor-context header .thegem-te-menu a,
.vf-indoor-context header .menu-item > a,
.vf-indoor-context header .nav-menu a {
    color: #fff !important;
}

/* .vf-indoor-context header .menu-item > a:hover,
.vf-indoor-context header .menu-item.current-menu-item > a {
    color: rgba(255,255,255,.75) !important;
} */

/* Two items left, logo, two items right */
.vf-indoor-context .nav-menu .menu-item:nth-child(1)      { order: 1 !important; }
.vf-indoor-context .nav-menu .menu-item:nth-child(2)      { order: 2 !important; }
.vf-indoor-context .nav-menu .menu-item-type-split-logo   { order: 3 !important; }
.vf-indoor-context .nav-menu .menu-item:nth-child(3)      { order: 4 !important; }
.vf-indoor-context .nav-menu .menu-item:nth-child(4)      { order: 5 !important; }

/* "Kama Casa Collection" wraps to two lines */
.vf-indoor-context li.menu-item-40923 {
    max-width: 130px;
    text-align: center;
    line-height: 20px !important;
}

.vf-indoor-context li.menu-item-40923 > a {
    line-height: 20px !important;
}


/* ── Collections dropdown: full-width panel, two columns ───────────
   position:fixed takes the panel out of the menu item's coordinate
   system, so left/right 0 means the viewport edge rather than the
   parent. TheGem's JS adds .invert and inline left/max-height when it
   thinks the panel overflows — both selectors below neutralise that.
   Adjust `top` to match the header height. */

body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu,
body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu.invert {
    position: fixed !important;
    top: 180px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
    background: rgba(107, 82, 62, .96) !important;
    padding: 40px 20vw !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 220px));
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    gap: 22px 60px;
    justify-content: start;
    align-items: start;
}

/* Items must be in normal flow for the grid to place them */
body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu > li {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    border: none !important;
}

/* Mobile "back" item would occupy a grid cell */
body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu > li.dl-back {
    display: none !important;
}

body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu a {
        color: #fff !important;
    padding: 0 !important;
    white-space: nowrap;
    display: block;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-align: left;
}


/* ── Misc ─────────────────────────────────────────────────────── */

/* No forms on this page */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* ── Kama Casa collections ────────────────────────────────────── */
.vf-collections {
    background: #efeae6;
    padding: 74px 0 90px;
}

.vf-collections__intro {
    max-width: 700px;
    margin: 0 auto 70px;
    padding: 0 24px;
    text-align: center;
}

.vf-collections__intro p {
    font-style: italic;
    font-size: clamp(14px, 1.15vw, 14px);
    line-height: 1.6;
    color: #4A2E2A;
    margin: 0 0 20px;
    font-weight: 500;
}
.vf-collections__list {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* Each row is a fixed-height band; the image overhangs it top and bottom */
.vf-coll {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 250px;
    background: #e3dbd6;
        border-radius: 6px;
}

.vf-coll__media {
    position: static;
}
.vf-coll__media::-webkit-scrollbar {
    display: none;
}
.vf-coll__media img {
    width: 100%;
    height: auto;
    display: block;
    /* Pushes the image down so its lower portion sits below the band edge.
       Increase for more overhang, decrease for less. */
}

.vf-coll img {
    position: absolute;
    z-index: 9;
    height: auto;
    max-width: none;   /* let width win over any inherited max-width */
}

/* Left-side images */
.vf-coll--img-left.vriksh-main img     { left: -80px; top: -10px;   width: 575px; }
.vf-coll--img-left.cane-sutra-main img { left: 24px;  top: -28px;   width: 300px; }
.vf-coll--img-left.avarana-main img    { left: 0;     bottom: 20px; width: 650px; }
.vf-coll--img-left.aurel-main img      { left: 0;     bottom: 40px; width: 465px; }

/* Right-side images — give these an explicit width to match */
.vf-coll--img-right.mridu-main img {
    right: -130px;
    top: 20px;
    width: 710px;
}
.vf-coll--img-right.aayatan-main img {
    right: 40px;
    top: 0;
    width: 180px;
}
.vf-coll__body {
    padding: 36px 24px;
}

/* Image left, text right (default DOM order) */
.vf-coll--img-left .vf-coll__media { grid-column: 1; }
.vf-coll--img-left .vf-coll__body  { grid-column: 2; }

/* Image right, text left — reorder without changing the markup */
.vf-coll--img-right .vf-coll__media { grid-column: 2; }
.vf-coll--img-right .vf-coll__body  { grid-column: 1; text-align: left; }


.vf-coll.vf-coll--img-left.vriksh-main,
.vf-coll.vf-coll--img-right.mridu-main
{
    overflow: hidden;
}
.vf-coll.vf-coll--img-left.cane-sutra-main{
        grid-template-columns: 360px 1fr;
}
.vf-coll.vf-coll--img-left.avarana-main{
    grid-template-columns: 650px 1fr;

}
.vf-coll.vf-coll--img-left.avarana-main .vf-coll__media{
    overflow: hidden;
}
.vf-coll__name {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 500;
    letter-spacing: .03em;
    color: #b39a72;
    line-height: 1.05;
}

.vf-coll__material {
    display: inline-block;
    margin: 6px 0 16px;
    font-size: 13px;
    letter-spacing: .08em;
    color: #b39a72;
}

.vf-coll__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #5c4a3d;
    font-weight: 500;
}

/* ── KC about ─────────────────────────────────────────────────── */
.vf-about { background: #ded4cf; padding: 70px 0; }

.vf-about__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 50px;
}

.vf-about__mark img { width: 100%; height: auto; display: block; }

.vf-about__copy h2 {
    margin: 0 0 16px;
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #3f3128;
    text-align: center;
    line-height: 22px;
}
.vf-about__copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #5c4a3d;
    text-align: center;
    font-weight: 500;
}

/* ── Collection page ──────────────────────────────────────────── */
.vf-collection-page { background: #faf6ef; padding-bottom: 90px; }

.vf-collection__head { text-align: center; padding: 60px 24px 40px; }

.vf-collection__head h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: .02em;
    color: #b39a72;
}

.vf-collection__head h1 span {
    font-size: .32em;
    letter-spacing: .1em;
    vertical-align: middle;
    margin-left: 10px;
}
.vf-grid {
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1200px;
}

.vf-card {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #e9e3da;
    aspect-ratio: 16 / 10;
    transition: transform .45s cubic-bezier(.22,.61,.36,1),
                box-shadow .45s ease;
}

.vf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

.vf-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30,20,12,0);
    transition: background .45s ease;
}

.vf-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(60,40,25,.18); }
.vf-card:hover img { transform: scale(1.06); }
.vf-card:hover::after { background: rgba(30,20,12,.28); }

.vf-card__id {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .12em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

.vf-card:hover .vf-card__id { opacity: 1; transform: translateY(0); }

/* ── Lightbox ─────────────────────────────────────────────────── */
body.vf-lb-open { overflow: hidden; }

.vf-lb {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(28,24,21,.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-lb[hidden] { display: none; }

.vf-lb__bar {
    position: absolute;
    top: 18px;
    right: 22px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.vf-lb__btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    transition: background .25s ease;
}

.vf-lb__btn:hover { background: rgba(255,255,255,.14); }

.vf-lb__share-wrap { position: relative; }

.vf-lb__share {
    position: absolute;
    top: 48px;
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 12px 34px rgba(0,0,0,.3);
}

.vf-lb__share[hidden] { display: none; }

.vf-lb__share a {
    display: block;
    padding: 11px 18px;
    font-size: 14px;
    color: #2a2320;
    text-decoration: none;
}

.vf-lb__share a:hover { background: #f3efe9; }

.vf-lb__stage {
    margin: 0;
    max-width: 78vw;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.vf-lb__stage img {
    max-width: 78vw;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 4px;
    transition: transform .4s ease;
    cursor: zoom-in;
}

.vf-lb__stage img.is-zoomed { transform: scale(1.6); cursor: zoom-out; }

.vf-lb__stage figcaption {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    letter-spacing: .14em;
}

.vf-lb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    transition: background .25s ease;
    z-index: 3;
}

.vf-lb__nav:hover { background: rgba(255,255,255,.24); }
.vf-lb__nav--prev { left: 26px; }
.vf-lb__nav--next { right: 64px; }
.vf-coll {
    text-decoration: none;
    color: inherit;
    transition: box-shadow .4s ease;
}

.vf-coll:hover {
    box-shadow: 0 14px 32px rgba(90,66,45,.16);
}
/* Collection pages have no hero, so the content needs to clear the header */
.vf-collection-context .vf-collection__head {
    padding-top: 164px;
}

.vf-collection-context header .menu-item > a, .vf-collection-context header .nav-menu a,
.vf-projects-page  header .menu-item > a{
    color: #6b4f3f !important;
    line-height: 22px !important;
}
/* Collection pages have a light background, so the white KC logo is
   invisible. Swap to the dark variant on those pages only. */
.vf-collection-context .site-logo img,
.vf-collection-context .elementor-5981 img[class*="logo"],
.vf-collection-context .menu-item-type-split-logo img {
    content: url('https://vetrafurniture.com/wp-content/uploads/2026/08/kc-logo-d.png') !important;
}
body.vf-lb-open header,
body.vf-lb-open #site-header-wrapper {
    visibility: hidden !important;
}




/* ── Indoor projects ──────────────────────────────────────────── */
.vf-projects-page { background: #faf6ef; padding-bottom: 90px; }

.vf-projects__head { text-align: center; padding: 60px 24px 40px; }

.vf-projects-context .vf-projects__head { padding-top: 164px; }

.vf-projects__head h1 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b4f3f;
}

.vf-pgrid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.vf-pcard {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #e9e3da;
    aspect-ratio: 4 / 3;
    transition: transform .45s cubic-bezier(.22,.61,.36,1),
                box-shadow .45s ease;
}

.vf-pcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22,.61,.36,1),
                filter .45s ease;
}

.vf-pcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250,246,239,0);
    transition: background .45s ease;
}

.vf-pcard:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(60,40,25,.16); }
.vf-pcard:hover img { transform: scale(1.05); filter: blur(2px); }
.vf-pcard:hover::after { background: rgba(250,246,239,.78); }

.vf-pcard__meta {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

.vf-pcard:hover .vf-pcard__meta { opacity: 1; transform: translateY(0); }

.vf-pcard__title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #4a3728;
}

.vf-pcard__loc {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7d6752;
}

/* ── Project lightbox ─────────────────────────────────────────── */
.vf-plb {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
        background: rgba(28, 24, 21, .94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-plb[hidden] { display: none; }

.vf-plb__count {
    position: absolute;
    top: 26px;
    left: 32px;
    z-index: 3;
    font-size: 15px;
    letter-spacing: .1em;
    color: #4a3728;
}

.vf-plb__close {
    position: absolute;
    top: 20px;
    right: 26px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #4a3728;
    cursor: pointer;
    transition: background .25s ease;
}

.vf-plb__close:hover { background: rgba(74,55,40,.1); }

.vf-plb__stage {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.vf-plb__stage img {
    max-width: 62vw;
    max-height: 66vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(60,40,25,.22);
}

.vf-plb__stage figcaption {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.vf-plb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(74,55,40,.08);
    color: #4a3728;
    cursor: pointer;
    transition: background .25s ease;
    z-index: 3;
}

.vf-plb__nav:hover { background: rgba(74,55,40,.18); }
.vf-plb__nav--prev { left: 30px; }
.vf-plb__nav--next { right: 30px; }



































@media (max-width: 1599px) {

    body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu,
    body.vf-indoor-context .thegem-te-menu__default.desktop-view ul.nav-menu > li.menu-item-40923 ul.sub-menu.invert {
        padding: 40px 10vw !important;
    
    }
    .vf-coll__material {
        display: inline-block;
        margin: 4px 0 10px;
    }

    .vf-coll__name {
        font-size: clamp(26px, 3vw, 42px);
    }
    


}




@media (max-width: 1212px) {

        
    .vf-collection-context header .menu-item > a, .vf-collection-context header .nav-menu a {
        color: #fff !important;
        line-height: 20px !important;
    }
    #site-header.header-light .thegem-te-menu .menu-toggle .menu-line-1, #site-header.header-light .thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-1, #site-header.header-light .thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-1, #site-header.header-light .thegem-te-menu .menu-toggle .menu-line-2, #site-header.header-light .thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-2, #site-header.header-light .thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-2, #site-header.header-light .thegem-te-menu .menu-toggle .menu-line-3, #site-header.header-light .thegem-te-menu__hamburger.desktop-view .menu-toggle .menu-line-3, #site-header.header-light .thegem-te-menu__overlay.desktop-view .menu-toggle .menu-line-3 {
        background: #795548;
    }
    .thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subview, 
    .thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subview .dl-submenu, 
    .thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen, 
    .thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu, 
    .thegem-te-menu-mobile__default.mobile-view .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li ,
    .thegem-te-menu-mobile__default.mobile-view li.dl-back > a,
    .vf-indoor-context li.menu-item-40923{
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left;
    }
    .vf-collection-context .vf-collection__head {
        padding-top: 100px;
    }

    .vf-indoor-context .site-logo img, .vf-indoor-context .elementor-5981 img[class*="logo"], .vf-indoor-context .menu-item-type-split-logo img {
        max-height: 78px;
    }
    .vf-indoor-context .site-logo img,
    .vf-indoor-context .elementor-5981 img[class*="logo"],
    .vf-indoor-context .menu-item-type-split-logo img {
        content: url('https://vetrafurniture.com/wp-content/uploads/2026/08/kc-logo-d.png');
        width: auto !important;
        max-height: 78px;
    }

    .vf-hero {
        height: 70svh;
    }
    .vf-coll--img-left.vriksh-main img {
        left: -80px;
        width: 475px;
    }
    .vf-coll.vf-coll--img-left.vriksh-main {
        grid-template-columns: 420px 1fr;
    }
    .vf-coll__body {
        padding: 28px 16px;
    }
    .vf-coll__text {
        font-size: 11px;
        line-height: 1.65;
    }
    .vf-coll--img-right.mridu-main img {
        width: 610px;
    }
    .vf-coll--img-left.cane-sutra-main img {
        left: 30px;
        top: -15px;
        width: 270px;
    }
    .vf-coll.vf-coll--img-left.avarana-main {
        grid-template-columns: 550px 1fr;
    }
    .vf-coll--img-left.avarana-main img {
        width: 550px;
        bottom: 40px;
    }
    .vf-coll--img-right.aayatan-main img {
        right: 50px;
        top: 0;
        width: 170px;
    }
    .vf-coll--img-left.aurel-main img {
        bottom: 46px;
        width: 430px;
    }
    .vf-about__inner {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 40px;
    }
    .vf-about__copy p {
        font-size: 12px;
        line-height: 1.6;
    }
    .vf-about {
        padding: 48px 0;
    }
    .elementor-24871 .elementor-element.elementor-element-c2ad6ca {
        --width: 22%;
    }
    .elementor-element.elementor-element-86df911 {
        left: 1%;
    }
    .elementor .elementor-hidden-mobile, .elementor .elementor-hidden-phone {
        display: none;
    }
    .vf-collections {
        padding: 48px 0 70px;
    }


    .vf-pgrid { grid-template-columns: repeat(3, 1fr); }

}
@media (max-width: 991px) {
    .vf-grid { grid-template-columns: repeat(2, 1fr); }
    .vf-about__inner { grid-template-columns: 1fr; gap: 30px; }
    .vf-hero {
        height: 60svh;
    }
    h6, .title-h6, body .gem-style-text.title-h6, body .woocommerce .shop_table thead tr th, table.shop_table_responsive td[data-title]:before, .project_info-item-style-1 .project_info-item .title, .gem_accordion_header a, #wp-calendar caption, .wpb_toggle, .gem-table-responsive .tabletolist.rh > li > .titles, .vc_toggle_title h4, .diagram-wrapper.style-3 .digram-line-box .skill-title, .row .vc_progress_bar .vc_label {
        font-size: 14px;
    }
    .vf-collections__intro {
        margin: 0 auto 48px;
        padding: 0 16px;
    }
    .vf-coll--img-left.vriksh-main img {
        left: -90px;
        width: 420px;
    }
    .vf-coll.vf-coll--img-left.vriksh-main {
        grid-template-columns: 340px 1fr;
    }
    .vf-coll--img-right.mridu-main img {
        width: 480px;
        top: 40px;
    }
    .vf-coll__body {
        padding: 20px 16px;
    }
    .vf-coll--img-left.cane-sutra-main img {
        left: 24px;
        top: -12px;
        width: 242px;
    }
    .vf-coll.vf-coll--img-left.cane-sutra-main {
        grid-template-columns: 320px 1fr;
        min-height: 220px;
    }
    .vf-coll.vf-coll--img-left.avarana-main {
        grid-template-columns: 350px 1fr;
        bottom: auto;
        top: 10px;
    }
    .vf-coll.vf-coll--img-left.avarana-main img {
        bottom: auto;
        top: 10px;
    }
    .vf-coll.vf-coll--img-left.avarana-main .vf-coll__body {
        padding: 110px 16px 20px;
    }
    .vf-coll--img-right.aayatan-main img {
        right: 50px;
        top: 10px;
        width: 154px;
    }
    .vf-coll.vf-coll--img-right.aayatan-main,
    .vf-coll.vf-coll--img-left.aurel-main{
        min-height: 220px;
    }
    .vf-coll--img-left.aurel-main img {
        bottom: 46px;
        width: 360px;
    }
    .vf-about__mark {
        width: 65%;
        margin: 0 auto;
    }
    .vf-about__copy {
        width: 90%;
        margin: 0 auto;
    }
    .vf-about__copy h2 {
        margin: 0 0 10px;
        line-height: 20px;
    }
    .e-con.thegem-e-con-layout-thegem {
        padding: 0 12px;
    }
    .elementor-widget-heading h6.elementor-heading-title{
        font-size: 14px;
        line-height:20px;
    }
    .elementor-widget.elementor-list-item-link-full_width a {
        font-size: 14px;
    }
    .elementor-element.elementor-element-9e92b0f ul.elementor-icon-list-items {
        flex-direction: column;
    }
}

/* ── Mobile: stack, no overhang ───────────────────────────────── */
@media (max-width: 767px) {
    .elementor-element.elementor-element-9e92b0f ul.elementor-icon-list-items {
        flex-direction: row;
    }
     .vf-grid { grid-template-columns: 1fr; padding: 0 18px; }
    .vf-lb__nav--prev { left: 8px; }
    .vf-lb__nav--next { right: 8px; }
    .vf-lb__stage img { max-width: 92vw; }
     .vf-hero {
        height: 45svh;
    }
    .vf-coll {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .vf-coll__media,
    .vf-coll--img-right .vf-coll__media {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }

    .vf-coll__body,
    .vf-coll--img-right .vf-coll__body {
        grid-column: 1;
        grid-row: 2;
        padding: 24px 22px 30px;
    }

    .vf-collections { padding: 42px 0 60px; }
    .vf-collections__intro { margin-bottom: 42px; }

    .vf-collection-context .vf-collection__head {
        padding-top: 110px;
        padding-bottom: 12px;
    }
    .vf-collection__head h1 span {
        margin-left: 0px;
    }
    .vf-indoor-context .site-logo img, .vf-indoor-context .elementor-5981 img[class*="logo"], .vf-indoor-context .menu-item-type-split-logo img {
        max-height: 64px;
        margin: 8px 0;
    }
    .thegem-te-menu {
        margin-top: 25px;
    }
    .vf-collections__intro p {
        font-size: clamp(12px, 1.05vw, 13px);
        line-height: 1.7;
        margin: 0 0 12px;
    }
    .vf-coll{
        grid-template-columns: 1fr !important;
    }
    .vf-coll__media img {
        position: static;
        width: 300px !important;
        height: auto;
        margin: 20px auto 0;
    }
    .vf-coll--img-left .vf-coll__body {
        grid-column: 1;
    }
    .vf-coll.vf-coll--img-left.avarana-main .vf-coll__body {
        padding: 30px 16px 20px;
    }
    .vf-coll--img-right.aayatan-main img {
        height: 200px;
        width: 164px !important;
    }
    .elementor-24871 .elementor-element.elementor-element-c2ad6ca {
        --width: 80%;
        margin-bottom: 16px;
    }
    .vf-about__inner {
        padding: 0 16px;
    }
    .vf-about__mark {
        width: 90%;
    }   
    .vf-about__copy {
        width: 98%;
    }
    .vf-pgrid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 16px; }
    .vf-projects-context .vf-projects__head { padding-top: 110px; }
    .vf-plb__stage img { max-width: 90vw; max-height: 56vh; }
    .vf-plb__nav--prev { left: 8px; }
    .vf-plb__nav--next { right: 8px; }
    .vf-plb__count { top: 18px; left: 18px; font-size: 13px; }


}















