:root {
    --cb-white: #ffffff;
    --cb-black: #111111;
    --cb-gray-light: #f5f5f5;
    --cb-gray-mid: #888888;
    --cb-topbar-h: 38px;
    --cb-header-h: 72px;
    --cb-font-ui: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --cb-font-logo: 'Georgia', 'Times New Roman', Times, serif;
    --cb-transition: 0.25s ease;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--cb-font-ui);
}

/* ============================================
   TOP SHIPPING BAR
   ============================================ */
.av-header__topbar {
    position: relative;
    background: var(--cb-white);
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 14px 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
}

.av-header__topbar-left {
    flex: 0 0 160px;
    max-width: 35% !important;
    width: 35% !important;
}

.av-header__marquee-wrap {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    max-width: 30% !important;
    width: 30% !important;
}

/* CHANGE 1: Slider band aur Text Center */
.av-header__marquee-track {
    display: flex;
    white-space: nowrap;
    animation: none !important;
    /* Slider rok diya */
    justify-content: center !important;
    /* Text center kar diya */
    width: 100% !important;
}

.av-header__marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--cb-font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--cb-black);
    padding: 0 48px;
    cursor: pointer;
    user-select: none;
}

.av-header__marquee-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@keyframes av-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.av-header__topbar-right {
    flex: 0 0 160px;
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
    max-width: 35% !important;
    width: 35% !important;
}

.av-header__topbar-link {
    font-family: var(--cb-font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--cb-black);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--cb-transition);
}

.av-header__topbar-link:hover {
    opacity: 0.55;
}

/* ============================================
   MAIN HEADER  .av-header
   ============================================ */
.av-header {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 30px 25px !important;
    margin: 0px !IMPORTANT;
    position: absolute !important;
    background: transparent;
    transition: background var(--cb-transition);
}

.av-header:hover {
    background: #ffffff;
}

/* CHANGE 2: Header limit set ki taake menu bahar na nikle */
.av-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--cb-header-h);
    max-width: 1400px;
    /* Big screen limit */
    margin: 0 auto;
    /* Center */
    width: 100%;
}

.av-header__nav {
    flex: 1 1 0;
}

.av-header__nav--left {
    justify-content: flex-start;
}

.av-header__nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.av-header__nav-link {
    font-family: var(--cb-font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: var(--cb-white);
    text-decoration: none;
    position: relative;
    transition: opacity var(--cb-transition), color var(--cb-transition);
    white-space: nowrap;
}

.av-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cb-white);
    transition: width var(--cb-transition), background var(--cb-transition);
}

.av-header__nav-link:hover {
    opacity: 1;
}

.av-header__nav-link:hover::after {
    width: 100%;
}

.av-header:hover .av-header__nav-link {
    color: var(--cb-black);
}

.av-header:hover .av-header__nav-link::after {
    background: var(--cb-black);
}

.av-header__logo {
    flex: 0 0 auto;
    font-family: var(--cb-font-logo);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    color: var(--cb-white);
    text-transform: uppercase;
    transition: opacity var(--cb-transition), color var(--cb-transition);
    padding: 0 20px;
}

.av-header__logo:hover {
    opacity: 0.65;
}

.av-header:hover .av-header__logo {
    color: var(--cb-black);
}

.av-header__icons {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.av-header__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-white);
    transition: opacity var(--cb-transition), color var(--cb-transition);
    border-radius: 4px;
}

.av-header__icon-btn:hover {
    opacity: 0.5;
}

.av-header__icon-btn svg {
    width: 22px;
    height: 22px;
}

.av-header:hover .av-header__icon-btn {
    color: var(--cb-black);
}

.av-header__cart-btn {
    position: relative;
}

.av-header__cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 17px;
    height: 17px;
    background: var(--cb-white);
    color: var(--cb-black);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 3px;
    transition: background var(--cb-transition), color var(--cb-transition);
}

.av-header:hover .av-header__cart-badge {
    background: var(--cb-black);
    color: var(--cb-white);
}

.av-header__mobile-nav {
    max-height: 0;
    overflow: hidden;
    background: var(--cb-white);
    transition: max-height 0.35s ease, border-top 0.35s ease;
}

.av-header__mobile-nav--open {
    max-height: 400px;
    border-top: 1px solid #e8e8e8;
}

.av-header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 8px 0 16px;
}

.av-header__mobile-link {
    display: block;
    font-family: var(--cb-font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--cb-black);
    text-decoration: none;
    padding: 13px 28px;
    border-bottom: 1px solid #f0f0f0;
    transition: background var(--cb-transition);
}

.av-header__mobile-link:hover {
    background: var(--cb-gray-light);
}

@media (max-width: 991px) {
    :root {
        --cb-topbar-h: 34px;
        --cb-header-h: 60px;
    }

    .av-header__inner {
        padding: 0 18px;
    }

    .av-header__nav-list {
        gap: 16px;
    }

    .av-header__nav-link {
        font-size: 11px;
    }

    .av-header__logo {
        font-size: 15px;
        padding: 0 12px;
    }

    .av-header__topbar-left,
    .av-header__topbar-right {
        flex: 0 0 100px;
    }

    .av-header__topbar-right {
        padding-right: 18px;
    }
}

@media (max-width: 767px) {
    :root {
        --cb-topbar-h: 32px;
        --cb-header-h: 56px;
    }

    .av-header__topbar-left {
        flex: 0 0 0;
    }

    .av-header__topbar-right {
        flex: 0 0 auto;
        padding-right: 14px;
    }

    .av-header__topbar-link {
        font-size: 10px;
    }

    .av-header__marquee-item {
        font-size: 10px;
        padding: 0 24px;
    }

    .av-header__nav {
        display: none;
    }

    .av-header__inner {
        padding: 0 14px;
    }

    .av-header__logo {
        font-size: 14px;
        padding: 0 8px;
    }

    .av-header__icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .av-header__icons {
        gap: 0;
    }
}

@media (max-width: 360px) {
    .av-header__logo {
        font-size: 12px;
    }
}


/* ============================================
   HERO SECTION STYLES (INFINITE LOOP TRACK)
   ============================================ */
:root {
    --cb-cta-bg: #231b15;
    --cb-cta-hover: #3d2b20;
    --cb-headline-col: #ffffff;
    --cb-font-display: 'Georgia', 'Times New Roman', Times, serif;
}

.av-herosection {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
    background: #111;
    cursor: default;
}

/* Slides Flex container track */
.av-herosection__slides {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.av-herosection__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.av-herosection__bg {
    position: absolute;
    inset: 0;
}

.av-herosection__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 80%);
}

.av-herosection__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* ---------- Text Content Caption Layout ---------- */
.av-herosection__caption {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 90vw;
    text-align: center;
    pointer-events: none;
}

.av-herosection__caption a {
    pointer-events: auto;
}

/* Headline */
.av-herosection__headline {
    font-family: var(--cb-font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--cb-headline-col);
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;

    /* Slide Up Setup */
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0s 0.5s, transform 0s 0.5s;
}

/* Premium Elegant CTA button style */
.av-herosection__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cb-cta-bg);
    color: var(--cb-white);
    font-family: var(--cb-font-ui);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    padding: 13px 32px;
    transition: background 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;

    /* Slide Up Setup */
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0s 0.5s, transform 0s 0.5s;
}

.av-herosection__cta:hover {
    background: var(--cb-cta-hover);
    color: var(--cb-white);
}

.av-herosection__cta-arrow {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* ---------- ANIMATION TRIGGER ---------- */
.av-herosection__slide--active .av-herosection__headline {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s,
        transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.av-herosection__slide--active .av-herosection__cta {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
        transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .av-herosection {
        height: 85vh;
    }

    .av-herosection__caption {
        bottom: 8%;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .av-herosection {
        height: 80vh;
    }

    .av-herosection__caption {
        bottom: 10%;
        gap: 6px;
    }
}












.av-homefirst {
    background-color: #ffffff;
    padding: 80px 0px 0px 0px !important;
}



.av-homefirst .body-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22.4px;
    color: #000000;
    max-width: 780px;
    margin: 0px auto 0px auto;
}

.av-homefirst .btn-shop {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding: 12px 35px;
    border-radius: 2px;
    border: 1px solid #000000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.av-homefirst .btn-shop:hover {
    background-color: #ffffff;
    border-color: #000;
    color: #000000;
}

.av-homefirst .left-img-container {
    height: 100%;
    min-height: 500px;
}

.av-homefirst .left-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {

    .av-homefirst .left-img-container {
        min-height: 350px;
    }
}








.av-heading{
    font-family: 'Arapey', serif;
    font-size: 36px;
    line-height: 40px !important;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
}





    /* Scoped wrapper for the membership section */
    .cl-membership {
        background-color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        padding: 60px 0;
    }

    .cl-membership__title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #111111;
        letter-spacing: -0.5px;
    }

    .cl-membership__subtitle {
        color: #666666;
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Cards matching image_2ce81f.jpg style */
    .cl-membership__card {
        background-color: #e5e5e5; /* Light gray box background like image_2ce81f.jpg */
        border: 2px solid #d4af37;  /* Elegant gold/brass border frame */
        border-radius: 24px;       /* Smooth rounded corners */
        padding: 45px 30px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cl-membership__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

    .cl-membership__card-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #111111;
        margin-bottom: 35px;
    }

    /* List items layout */
    .cl-membership__list {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .cl-membership__list-item {
        font-size: 1rem;
        color: #333333;
        margin-bottom: 14px;
        font-weight: 500;
    }

    /* Pill outline buttons matching image_2ce81f.jpg */
    .cl-membership__btn {
        background-color: transparent;
        color: #111111;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 12px 35px;
        border: 2px solid #d4af37; /* Matching gold border button */
        border-radius: 50px;       /* Pill shape */
        text-decoration: none;
        display: inline-block;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .cl-membership__btn:hover {
        background-color: #d4af37;
        color: #ffffff;
    }






.av-pslider {
    position: relative;
    background-color: #ffffff;
    padding: 80px 0 !important;
    font-family: 'Roboto Condensed', sans-serif;
    overflow: hidden;
}



.av-pslider .view-all-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: block;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.av-pslider .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.av-pslider .product-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
    width: 100%;
}

.av-pslider .product-container::-webkit-scrollbar {
    display: none;
}

/* 4 Items Grid (DESKTOP) */
.av-pslider .product-card {
    width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    flex: 0 0 auto;
    position: relative;
    background: #fff;
}

@media (max-width: 1199.98px) {
    .av-pslider .product-card {
        width: calc((100% - 48px) / 3);
        min-width: calc((100% - 48px) / 3);
    }
}

.av-pslider .img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
}

.av-pslider .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Hover Panel & Background Slide Animation --- */
.av-pslider .hover-bottom-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    z-index: 5;
}

.av-pslider .quick-add-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    color: #000;
    text-align: center;
    padding: 12px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    order: 2;
}

.av-pslider .size-badge {
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: #444;
    background: #ffffff4d !important;
    font-weight: 400;
    padding: 8px 5px 6px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    letter-spacing: 0.5px;
    order: 1;
    background: transparent;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.15s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.av-pslider .product-card:hover .hover-bottom-panel {
    opacity: 1;
    transform: translateY(0);
}

.av-pslider .product-card:hover .size-badge {
    opacity: 1;
    transform: translateY(0);
}

.av-pslider .hover-eye-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    z-index: 6;
    font-size: 14px;
}

.av-pslider .product-card:hover .hover-eye-icon {
    opacity: 1;
    transform: scale(1);
}

.av-pslider .product-details {
    padding-top: 15px;
    text-align: left;
}

.av-pslider .product-title {
    font-size: 12px;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 4px;
    letter-spacing: 0.8px;
}

.av-pslider .product-price {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
}

/* --- Navigation Arrows --- */
.av-pslider .slider-arrow {
    position: absolute;
    top: calc(50% - 38px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.av-pslider .arrow-left {
    left: 0px;
    transform: translateX(45px);
}

.av-pslider .arrow-right {
    right: 0px;
    transform: translateX(-45px);
}

.av-pslider:hover .slider-arrow {
    opacity: 1;
}

.av-pslider:hover .arrow-left {
    transform: translateX(15px);
}

.av-pslider:hover .arrow-right {
    transform: translateX(-15px);
}

.av-pslider .slider-arrow.disabled-style {
    opacity: 0.35 !important;
    background: rgba(255, 255, 255, 0.5) !important;
    color: rgba(0, 0, 0, 0.4) !important;
    box-shadow: none;
    pointer-events: none;
}

/* --- Custom Mobile Pagination dots matching image_855448.png --- */
.av-pslider .mobile-pagination {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.av-pslider .dot-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.av-pslider .dot {
    width: 7px;
    height: 7px;
    background-color: #cccccc;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.av-pslider .dot-wrapper.active {
    border-color: #000000;
}

.av-pslider .dot-wrapper.active .dot {
    background-color: #000000;
}

/* --- ONLY RESPONSIVE MOBILE CHANGES --- */
@media (max-width: 767.98px) {
    .av-pslider .slider-arrow {
        display: none !important;
        /* Mobile par arrows mukammal band */
    }

    .av-pslider .mobile-pagination {
        display: flex;
        /* Mobile par pagination chalu */
    }

    .av-pslider .product-container {
        gap: 0px !important;
        /* Smooth block layout transitions */
        scroll-snap-type: x mandatory;
    }

    .av-pslider .product-card {
        width: 100% !important;
        min-width: 100% !important;
        /* At a time mobile screen par 1 hi show hoga */
        scroll-snap-align: start;
    }
}
































.av-prepg.residence-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('../images/banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
    margin: 80px 0;
}

.av-prepg.residence-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.65);
    z-index: 1;
}

.av-prepg .residence-content-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
}



.av-prepg .residence-desc {
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 25.6px !important;
    color: #FFFBED !important;
    max-width: 820px;
    margin: 0 auto 40px auto;
    letter-spacing: 0.6px;
    word-spacing: 0.5px;
}

.av-prepg .residence-btn {
    background-color: #FFFDF9 !important;
    color: #1a1a1a !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 16px 48px;
    border: none;
    border-radius: 0px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.av-prepg .residence-btn:hover {
    background-color: #000000 !important;
    /* BG Black */
    color: #ffffff !important;
    /* Text Pure White */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.av-prepg .residence-btn-arrow {
    display: inline-block;
    font-size: 12px;
    transition: transform 0.2s ease, color 0.3s ease;
    color: #1a1a1a;
}

/* Hover par arrow ka color bhi override ho */
.av-prepg .residence-btn:hover .residence-btn-arrow {
    transform: translateX(5px);
    color: #ffffff !important;
}

@media (max-width: 767.98px) {
    .av-prepg.residence-hero-section {
        min-height: 85vh;
        padding: 40px 15px;
    }



    .av-prepg .residence-desc {
        font-size: 14px !important;
        line-height: 22px !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .av-prepg .residence-btn {
        padding: 14px 38px;
        font-size: 12px !important;
        width: 100%;
        max-width: 260px;
    }
}















.av-prepg.curated-edits-wrapper {
    background-color: #ffffff;
    /* Clean editorial white canvas background */
    padding: 80px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

/* --- HEADER STYLING --- */
.av-prepg .curated-header-box {
    text-align: center;
    margin-bottom: 55px;
}



.av-prepg .curated-main-desc {
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: #555555;
    max-width: 860px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* --- EDITORIAL 3-COLUMN GRID & CARDS --- */
.av-prepg .curated-card {
    position: relative;
    width: 100%;
    height: 560px;
    /* Fixed proportional height to match editorial columns */
    overflow: hidden;
    background-color: #000000;
    /* Fades beautiful into black atmosphere */
    cursor: pointer;
}

/* Image Inner Box Container Setup */
.av-prepg .curated-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- ULTRA SLOW INTERACTIVE IMAGE FADE EFFECT --- */
.av-prepg .curated-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    /* 1.2 Seconds Ultra-Slow Smooth Fade Transition */
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Interaction State Trigger */
.av-prepg .curated-card:hover img {
    opacity: 0.65;
    /* Ultra slow fade dimming */
    transform: scale(1.02);
    /* Slight high-end breathing scale */
}

/* Bottom Dark Gradient Shadow Mask for Text Readability */
.av-prepg .curated-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- OVERLAY TEXT NODES CONTENT --- */
.av-prepg .curated-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    z-index: 2;
}

/* Tagline above category title */
.av-prepg .card-tagline {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Main Category Name */
.av-prepg .card-category-title {
    font-family: 'Arapey', serif !important;
    font-size: 28px;
    font-weight: 400;
    color: #F1EBDB;
    /* Elegant off-white cream color tone matching image */
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
}

/* Premium Translucent Action Button Box */
.av-prepg .card-action-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(22, 11, 11, 0.75);
    /* Dark solid matching block from image */
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.av-prepg .curated-card:hover .card-action-badge {
    background-color: #000000;
}

.av-prepg .card-action-badge span {
    margin-left: 6px;
    font-size: 10px;
}

/* --- RESPONSIVE SMART VIEWPORTS --- */
@media (max-width: 991.98px) {
    .av-prepg .curated-card {
        height: 480px;
        /* Slight scale down on mid range devices */
    }


}

@media (max-width: 767.98px) {
    .av-prepg.curated-edits-wrapper {
        padding: 50px 0;
    }

    .av-prepg .curated-header-box {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .av-prepg .curated-card {
        height: 500px;
        /* Comfortable viewing height for vertical stacks */
    }
}





/* --- CSS Inherited Wrapper Layer Block (.av-prepg) --- */
.av-prepg.multi-slide-section {
    background-color: #ffffff;
    padding: 80px 0px 0px 0px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Viewport Window Area */
.av-prepg .slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.av-prepg .slider-viewport:active {
    cursor: grabbing;
}

/* --- THE FLEX TRACK MATRIX --- */
.av-prepg .slider-track {
    display: flex;
    gap: 0px;
    /* Seamless flush look matching image_792e0.jpg vibe */
    width: max-content;
    will-change: transform;
}

/* --- 6 SLIDES AT A TIME FRAMEWORK --- */
.av-prepg .slider-item {
    width: calc(100vw / 6);
    /* Perfect 6 columns desktop layout */
    height: 300px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    user-select: none;
    /* Prevents text/image selection during continuous dragging */
}

.av-prepg .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top !important;
    display: block;
    pointer-events: none;
    /* Crucial for smooth native mouse dragging mechanics */
    transition: transform 0.8s ease;
}

.av-prepg .slider-item:hover img {
    transform: scale(1.04);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1199.98px) {
    .av-prepg .slider-item {
        width: calc(100vw / 4);
        /* 4 slides on tablets */
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .av-prepg .slider-item {
        width: calc(100vw / 2);
        /* 2 slides on mobile screens */
        height: 320px;
    }
}

















.av-footer {
    background-color: #f1ede2;
    /* Warm cream background */
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2b2b2a;
    margin-top: 15px;
}

/* Decorative Striped Pattern Header */
.av-footer .footer-pattern {
    height: 60px;
    background-color: #f7f4ed;
    /* Recreates the cream-and-white vertical stripe block pattern */
    background-image: linear-gradient(90deg, #f1ede2 50%, transparent 50%);
    background-size: 30px 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Typography & Headings */
.av-footer .footer-heading {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bcaba0;
    /* Subtle line under headings */
}

/* List links & plain text styling */
.av-footer .footer-links li {
    margin-bottom: 12px;
}

.av-footer .footer-links a,
.av-footer .footer-text,
.av-footer .footer-text a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    /* Clean sans-serif for content */
    font-size: 0.85rem;
    color: #55524e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.av-footer .footer-links a:hover,
.av-footer .footer-text a:hover {
    color: #000000;
}

/* Direction Button Link */
.av-footer .btn-directions {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.av-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #8e8a84;
    border-radius: 50%;
    color: #55524e;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.av-footer .social-icons a:hover {
    background-color: #2b2b2a;
    border-color: #2b2b2a;
    color: #ffffff;
}

.av-footer .newsletter-form {
    border: 1px solid #b5a69a;
    padding: 4px 4px 4px 12px;
    background-color: transparent;
}

.av-footer .newsletter-form .form-control {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: #2b2b2a;
    box-shadow: none;
}

.av-footer .newsletter-form .form-control::placeholder {
    color: #8e8a84;
}

.av-footer .btn-subscribe {
    background-color: #1a1513;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 0;
    transition: background-color 0.2s ease;
}

.av-footer .btn-subscribe:hover {
    background-color: #000000;
    color: #ffffff;
}

.av-footer .copyright-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    color: #8e8a84;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .av-footer .footer-heading {
        margin-top: 1.5rem;
    }
}





.pg-hero {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600') center center / cover no-repeat;
    max-width: 100% !important;
    padding: 250px 40px 40px 40px;
}

.pg-hero__title {
    font-family: 'Arapey', serif;
    font-weight: 400;
    font-size: 40px;
    color: #F1EBDB !important;
    text-align: left !important;
    text-transform: uppercase;
    border-left: 4px solid #F1EBDB;
    padding-left: 16px;
}






.av-productpage {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    letter-spacing: 0.4px;
    color: #111111;
    background-color: #ffffff;
    padding-bottom: 80px;
}

.av-productpage .toolbar-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    background-color: #fff;
}

.av-productpage .filter-btn {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 8px 18px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.av-productpage .sort-dropdown select {
    border: 1px solid #dcdcdc;
    background: #fff;
    font-size: 0.75rem;
    text-transform: capitalize;
    color: #777;
    padding: 8px 30px 8px 12px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23777' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C0s/");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.av-productpage .product-grid-item {
    margin-bottom: 45px;
}

.av-productpage .product-image-wrapper {
    position: relative;
    background-color: #f6f6f6;
    margin-bottom: 16px;
}

.av-productpage .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.av-productpage .badge-tag {
    position: absolute;
    top: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 10px;
    z-index: 2;
}

.av-productpage .badge-preorder {
    right: 12px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.av-productpage .badge-soldout {
    left: 12px;
    background-color: #ebebeb;
    color: #111111;
}

/* Typography */
.av-productpage .product-title {
    font-size: 0.78rem;
    font-weight: 500;
    margin: 0 0 4px 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #333;
}

.av-productpage .product-price {
    font-size: 0.75rem;
    color: #777777;
    margin-bottom: 15px;
}

.av-productpage .size-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.av-productpage .size-box {
    font-size: 0.65rem;
    color: #222222;
    border: 1px solid #e0e0e0;
    padding: 4px 8px;
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
}

    .av-partnerss {
        background-color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        min-height: 100vh;
    }

    .av-partnerss .av-partnerss__main-title {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: #111111 !important;
    }

    .av-partnerss .av-partnerss__card {
        background-color: #e5e5e5; 
        border: 2px solid #d4af37;  
        border-radius: 20px;     
        padding: 35px 25px;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .av-partnerss .av-partnerss__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    }

    .av-partnerss .av-partnerss__card-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #111111 !important;
        margin-bottom: 15px;
    }

    .av-partnerss .av-partnerss__card-text {
        color: #333333;
        font-size: 0.95rem;
        line-height: 1.6;
        font-weight: 500;
    }

    .av-partnerss .av-partnerss__big-box {
        background-color: #e5e5e5; 
        border: 2px solid #d4af37;  
        border-radius: 24px;
        padding: 45px;
        width: 100%;
    }

    .av-partnerss .av-partnerss__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 40px;
        align-items: center;
        justify-items: center;
        padding: 10px 0;
    }

    .av-partnerss .av-partnerss__logo-item {
        width: 100%;
        max-width: 120px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s ease;
    }

    .av-partnerss .av-partnerss__logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .pg-hero__title {
        font-weight: 700;
        letter-spacing: -1px;
    }

    @media (max-width: 768px) {
        .av-heading {
            font-size: 28px !important;
        }
        .av-partnerss .av-partnerss__big-box {
            padding: 25px;
        }
        .av-partnerss .av-partnerss__logo-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }





        .av-legal-page {
        background-color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        padding-top: 70px;
        padding-bottom: 40px;
    }




    .av-legal-page .av-legal-page__text {
        font-size: 0.95rem;
        color: #777777;
        line-height: 1.75;
        font-weight: 400;
        text-align: justify; 
        letter-spacing: 0.2px;
    }

    @media (max-width: 768px) {
        .av-legal-page {
            padding-top: 50px;
            padding-bottom: 50px;
        }

    }




































        .av-contactpage {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            letter-spacing: 0.4px;
            color: #111111;
            background-color: #ffffff;
            padding: 60px 0 0 0;
        }

        /* --- LEFT SIDE: CONTACT INFO --- */
        .av-contactpage .info-heading {
            font-size: 1.25rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .av-contactpage .info-item {
            margin-bottom: 30px;
        }

        .av-contactpage .info-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            color: #777777;
            margin-bottom: 5px;
        }

        .av-contactpage .info-text {
            font-size: 0.85rem;
            line-height: 1.6;
            color: #222222;
        }

        .av-contactpage .info-text a {
            color: #222222;
            text-decoration: none;
            border-bottom: 1px solid #111111;
        }

        /* --- RIGHT SIDE: FORM --- */
        .av-contactpage .form-heading {
            font-size: 1.25rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .av-contactpage .form-control-custom {
            width: 100%;
            padding: 12px 0;
            font-size: 0.85rem;
            border: none;
            border-bottom: 1px solid #dcdcdc;
            background-color: transparent;
            border-radius: 0;
            outline: none;
            color: #111111;
            transition: border-color 0.3s ease;
            margin-bottom: 25px;
        }

        .av-contactpage .form-control-custom:focus {
            border-bottom-color: #111111;
        }

        .av-contactpage .form-control-custom::placeholder {
            color: #aaaaaa;
        }

        .av-contactpage .submit-btn {
            background-color: #111111;
            color: #ffffff;
            border: 1px solid #111111;
            padding: 12px 35px;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .av-contactpage .submit-btn:hover {
            background-color: #ffffff;
            color: #111111;
        }

        /* --- BOTTOM FULL-WIDTH MAP --- */
        .av-contactpage .map-container {
            width: 100%;
            height: 450px;
            margin-top: 80px;
            background-color: #f6f6f6;
            border-top: 1px solid #e8e8e8;
        }

        .av-contactpage .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }