html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ── Fade-up scroll animation ──────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER */
.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    padding: 16px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    width: 100px;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 5px;

}

.menu a {
    text-decoration: none;
    color: #8D8D8D;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

.menu a.active {
    color: #C5902C;
}

.menu a.active::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background: #C5902C;
    left: 0;
    bottom: -8px;
}

.menu a:hover {
    color: #C5902C;
}

/* RIGHT SECTION */
.right-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* SEARCH BAR */
.search-box {
    width: 447px;
    height: 48px;
    border: 0.5px solid #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #fff;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #000;
}

.search-box input::placeholder {
    color: #000;
    opacity: 0.6;
}

.search-icon {
    color: #C5902C;
    font-size: 18px;
    cursor: pointer;
}

/* ICONS */
.icons {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #C5902C;
    font-size: 22px;
}

.icons img {
    width: 20px;
}

.cart {
    position: relative;
}

.cart span {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #C5902C;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE HEADER LAYOUT (Figma Specification) */
/* Desktop & Tablet (1024 and above) */
@media (min-width: 1025px) {
    .mobile-header {
        display: none !important;
    }

    .navbar {
        display: flex !important;
    }
}

/* Tablet 1024px */
@media (max-width:1024px) and (min-width:991px) {

    .mobile-header {
        display: none !important;
    }

    .navbar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 20px !important;
        gap: 15px !important;
    }

    .logo {
        position: static !important;
        flex-shrink: 0;
    }

    .menu {
        display: flex !important;
        gap: 18px !important;
        flex-wrap: nowrap !important;
    }

    .menu a {
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .right-section {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .search-container {
        display: block !important;
        width: 220px !important;
    }

    .search-box {
        width: 220px !important;
        height: 40px !important;
    }

    .icons {
        position: static !important;
        display: flex !important;
        gap: 12px !important;
    }

    .icons img {
        width: 22px !important;
        height: 22px !important;
    }
}

/* Mobile only */
@media (max-width:767px) {

    .mobile-header {
        display: block !important;
    }

    .navbar {
        display: none !important;
    }
}


@media (max-width:991px) and (min-width:768px) {
    .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .pfy-section-title.mala {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    font-family: 'Playfair Display', serif;
        color: #C5902C;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
        text-transform: uppercase;
    }

    .mala {
        display: block !important;
    }
}

.mala {
    display: none;
}

/* Category scroller sits inside `.container-main` so it only needs full width */
.category-scroll-wrapper {
    width: 100%;
    margin: 40px 0 30px;
    padding: 0;
    overflow: visible;
    position: relative;
}

.category-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: clamp(15px, 2.5vw, 35px);
    width: 100%;
    justify-content: flex-start;
    align-items: start;
    padding: 10px 0 15px;
    /* Extra bottom padding for scrollbar */
}

/* Beautiful custom thin scrollbar for premium desktop styling */
.category-scroll::-webkit-scrollbar {
    display: none;
    /* hide scrollbar on WebKit browsers */
}

@media (min-width: 1200px) {
    .category-scroll {
        justify-content: center;
    }
}

.category-item {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    flex: 0 0 100px;
    /* Prevent items from shrinking on desktop scroll */
}

.category-img {
    width: 100px;
    height: 100px;
    border-radius: 50px 50px 10px 10px;
    background: #fff5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-img svg {
    display: block;
    width: 52px;
    height: 52px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-item:hover .category-img {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(185, 144, 60, 0.12);
}

.category-item:hover .category-img svg {
    transform: scale(1.08);
}

.category-name {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: #b9903c;
}

/* Category navigation arrows (desktop only) */
.category-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 0;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 15;
}

.category-arrow svg {
    width: 18px;
    height: 18px;
}

.category-arrow--left {
    left: -28px;
}

.category-arrow--right {
    right: -28px;
}

.category-arrow:active {
    transform: translateY(-50%) scale(0.98);
}



/* Responsive adjustments for Category Grid (Figma 1:1 Mobile & Tablet Spec) */
@media (max-width: 992px) {
    /* .category-scroll-wrapper {
        padding: 0 14px !important;
        margin: 20px auto !important;
        overflow-x: visible !important;
        scrollbar-width: none !important;
    }

    .category-scroll-wrapper::-webkit-scrollbar {
        display: none !important;
    }

    .category-scroll {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 16px 8px !important;
       
        width: 100% !important;
        max-width: 100% !important;
        justify-items: center !important;
        align-items: start !important;
        padding: 0 !important;
    } */

    .category-item {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-decoration: none !important;
    }

    .category-img {
        position: relative !important;
        width: 100% !important;
        max-width: 60px !important;
        /* Perfect scaling: fits 320px screens perfectly without clipping */
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        border-radius: 16px !important;
        background: #fff5ea !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        transition: transform 0.3s ease !important;
    }

    .category-img img {
        width: 90% !important;
        /* Nicely padded within the card */
        height: 90% !important;
        object-fit: contain !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .category-name {
        font-family: 'Inter', sans-serif !important;
        margin-top: 8px !important;
        font-size: 11px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
        color: #333333 !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        /* Renders "All Cate..", "Bottom W..", "Baby..", "Hoodi.." perfectly */
        width: 100% !important;
        padding: 0 2px !important;
    }

    .order-page-product-details h4 {
        font-size: 12px !important;
    }

    .order-page-product-price {
        font-size: 20px !important;
    }
}

.features-strip {
    margin-bottom: 40px;
}

.features-inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 65px;
    width: 100%;
    background: linear-gradient(90deg, rgba(237, 228, 201, 0.2) 5.77%, rgba(249, 248, 245, 0.2) 52.4%, rgba(237, 228, 201, 0.2) 100%);
    border-radius: 5px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    flex: 1;
}

.feature img {
    height: 25px;
    object-fit: contain;
}

.features-inner .feature+.feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 33px;
    background-color: #A6A6A6;
}

/* ── Features Strip: Mobile (≤ 575px) ───────────────── */
@media (max-width: 575px) {

    /* Section spacing */
    .features-strip {
        margin: 0 0 20px 0 !important;
        padding: 0 14px !important;
    }

    /* Container: single horizontal pill row */
    .features-inner--responsive {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 70px !important;
        width: 100% !important;
        background: linear-gradient(90deg, rgba(237, 228, 201, 0.3) 5.77%, rgba(249, 248, 245, 0.3) 52.4%, rgba(237, 228, 201, 0.3) 100%) !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 8px !important;
        gap: 0 !important;
    }

    /* Each feature item: icon on top, text below */
    .feature--responsive {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        gap: 5px !important;
        position: relative !important;
        padding: 0 4px !important;
        height: 100% !important;
    }

    /* Vertical divider between items */
    .features-inner--responsive .feature--responsive+.feature--responsive::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 1px !important;
        height: 30px !important;
        background-color: #A6A6A6 !important;
    }

    /* Feature icon image */
    .feature__img {
        width: 22px !important;
        height: 22px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }

    /* Feature label text */
    .feature__text {
        font-family: 'Inter', sans-serif !important;
        font-size: 9px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        color: #333333 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.2px !important;
        white-space: nowrap !important;
    }

    /* Disable old generic feature rules on mobile */
}

/* ── Features Strip: Tablet (576px – 992px) ──────────── */
@media (min-width: 576px) and (max-width: 992px) {


    /* Section spacing */
    .features-strip {
        margin: 0 0 24px 0 !important;
        padding: 0 14px !important;
    }

    /* Container: single horizontal pill row – slightly taller for tablet */
    .features-inner--responsive {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 80px !important;
        width: 100% !important;
        background: linear-gradient(90deg, rgba(237, 228, 201, 0.3) 5.77%, rgba(249, 248, 245, 0.3) 52.4%, rgba(237, 228, 201, 0.3) 100%) !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 16px !important;
        gap: 0 !important;
    }

    /* Each feature item */
    .feature--responsive {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        gap: 7px !important;
        position: relative !important;
        padding: 0 8px !important;
        height: 100% !important;
    }

    /* Vertical divider */
    .features-inner--responsive .feature--responsive+.feature--responsive::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 1px !important;
        height: 36px !important;
        background-color: #A6A6A6 !important;
    }

    /* Feature icon image */
    .feature__img {
        width: 26px !important;
        height: 26px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }

    /* Feature label text */
    .feature__text {
        font-family: 'Inter', sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        color: #333333 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        white-space: nowrap !important;
    }
}



/* HERO BANNER */

.hero-banner {
    width: 100%;
    min-height: 100vh;
    background-image: url('../img/c11c94439bf3845e95e55acb4e790bf0c2932217.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 80px;
}

/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* CONTAINER */

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* CONTENT */

.hero-content {
    max-width: 420px;
    position: absolute;
    left: 19%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1024px) and (min-width: 993px) {
    .hero-content {
        left: 6%;
    }
}

/* TAGLINE */

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #FFA700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* TITLE */

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 64px;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin-top: 10px;
}

/* SEPARATOR */

.hero-separator {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 25px 0;
}

.hero-separator .line {
    height: 0px;
    border-top: 0.3px solid #C5902C;
}

.hero-separator .line:first-child {
    width: 93px;
}

.hero-separator .line:last-child {
    width: 166px;
}

.hero-separator .diamond {
    color: #C5902C;
    font-size: 18px;
}

/* DESCRIPTION */

.hero-description {
    width: 244px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* BUTTON */

.hero-btn {
    width: 218px;
    height: 44px;
    background: #C5902C;
    border: 0.5px solid #C5902C;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-decoration: none;

    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #b27d1f;
}

/* RESPONSIVE HERO BANNER (Figma 1:1 Mobile & Tablet Card Layout) */
@media (max-width: 992px) {
    .hero-banner {
        width: calc(100% - 28px) !important;
        min-height: 320px !important;
        height: clamp(320px, 45vw, 450px) !important;
        margin: 16px auto 30px auto !important;
        border-radius: 20px !important;
        background-position: 72% center !important;
        padding: 24px !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        overflow: hidden !important;
    }

    /* Left-to-right dark gradient overlay for optimal readability of text */
    .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.1) 100%) !important;
    }

    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-content {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        max-width: 290px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-tagline {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }

    .hero-title {
        font-size: clamp(20px, 5.2vw, 36px) !important;
        line-height: 1.2 !important;
        margin-top: 6px !important;
    }

    .hero-separator {
        margin: 12px 0 !important;
        gap: 10px !important;
    }

    .hero-separator .line:first-child {
        width: 40px !important;
    }

    .hero-separator .line:last-child {
        width: 70px !important;
    }

    .hero-separator .diamond {
        font-size: 12px !important;
    }

    .hero-description {
        width: 100% !important;
        font-size: clamp(12px, 2.5vw, 14px) !important;
        line-height: 1.35 !important;
        margin-bottom: 18px !important;
    }

    .hero-btn {
        width: auto !important;
        padding: 0 20px !important;
        height: 38px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
    }
}

.trends-section {
    margin-bottom: 40px;
}

.trend-setter {
    background: #FBDEA8;
    border-radius: 10px;
    padding: 30px;
}

.trends-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Angkor', sans-serif;
}

.trends-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

/* Card */

.trend-card {
    flex: 1 1 0;
    max-width: 395px;
    height: 215px;
    border-radius: 10px;
    display: flex;
    background: #000000;
    position: relative;
}

/* Left Content */

.trend-left {
    width: calc(100% - 94px);
    position: relative;
    background: #000000;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neon Hash */

.hash-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hash-bg img {
    width: 370px;
    height: 370px;
    object-fit: contain;
    opacity: 0.9;
}

/* Model */

.trend-model {
    position: relative;
    z-index: 2;
    height: 150px;
    object-fit: contain;
}

/* Button */

.trend-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 34px;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFB984 100%);
    border-radius: 5px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Products */

.trend-right {
    width: 94px;
    background: #535353;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.trend-right img {
    max-width: 65px;
    max-height: 55px;
    object-fit: contain;
}

/* Responsive */

@media (max-width: 991px) {
    .features-inner .feature+.feature::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 33px;
        background-color: #A6A6A6;
    }

    .trend-setter {
        padding: 20px 20px 10px 20px !important;
    }

    .pfy-section-title {
        font-size: 14px;
    }

    .mob-v {
        display: block !important;
    }

    .trends-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        margin: 0 -20px !important;
        padding: 0 20px 12px 20px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .trends-wrapper::-webkit-scrollbar {
        display: none !important;
    }

    .trend-card {
        flex: 0 0 340px !important;
        height: 190px !important;
        scroll-snap-align: start !important;
        display: flex !important;
        margin: 0 !important;
    }

    .trend-left {
        width: calc(100% - 90px) !important;
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
    }

    .trend-right {
        width: 90px !important;
        border-top-right-radius: 10px !important;
        border-bottom-right-radius: 10px !important;
        padding: 8px 0 !important;
    }

    .hash-bg img {
        width: 280px !important;
        height: 280px !important;
    }

    .trend-model {
        height: 135px !important;
    }

    .trend-right img {
        max-width: 55px !important;
        max-height: 48px !important;
    }

    .trend-btn {
        bottom: 15px !important;
        width: 110px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 575px) {
    .trend-card {
        flex: 0 0 280px !important;
        height: 170px !important;
    }

    .trend-left {
        width: calc(100% - 80px) !important;
    }

    .trend-right {
        width: 80px !important;
        padding: 6px 0 !important;
    }

    .hash-bg img {
        width: 220px !important;
        height: 220px !important;
    }

    .trend-model {
        height: 120px !important;
    }

    .trend-right img {
        max-width: 50px !important;
        max-height: 42px !important;
    }

    .trend-btn {
        bottom: 12px !important;
        width: 95px !important;
        height: 24px !important;
        font-size: 10px !important;
    }
}

.arrival-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 0;
}

/* Lines */

.arrival-line {
    flex: 1;
    height: 1.5px;
    background: #C5902C;
    max-width: 260px;
}

.arrival-line--fade-left {
    background: linear-gradient(to right, transparent 0%, #C5902C 100%);
}

.arrival-line--fade-right {
    background: linear-gradient(to left, transparent 0%, #C5902C 100%);
}

.arrival-line--short {
    max-width: 215px;
}

/* Tag image */

.arrival-tag-img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.arrival-tag-img--flip {
    transform: scaleX(-1);
}

/* Title */

.arrival-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    padding: 0 20px;
    flex-shrink: 0;
    text-align: center;
}

/* Responsive */

@media (max-width: 991px) {
    .arrival-heading>.arrival-line:nth-of-type(1) {
        background: linear-gradient(to right, transparent 0%, #C5902C 100%) !important;
        max-width: 100px !important;
        display: block !important;
    }

    .arrival-heading>.arrival-line:nth-of-type(2) {
        background: linear-gradient(to left, transparent 0%, #C5902C 100%) !important;
        max-width: 100px !important;
        display: block !important;
    }

    .arrival-title {
        font-size: 16px !important;
        padding: 0 12px !important;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 575px) {

    .arrival-heading>.arrival-line:nth-of-type(1),
    .arrival-heading>.arrival-line:nth-of-type(2) {
        max-width: 55px !important;
    }

    .arrival-title {
        font-size: 13px !important;
        padding: 0 8px !important;
    }
}


.category-img img {
    width: 100px;
    height: 100px;
}

.trend-setter {
    width: 100%;
    background: #f6deb0;
    padding: 25px 30px 40px;
    border-radius: 15px;
}

/* ─── Product Slider Wrapper ──────────────────────── */

.product-slider-wrapper {
    position: relative;
    padding: 20px 48px 30px;
    margin: 20px 0;
}

@media (min-width: 992px) {
    .product-slider-wrapper {
        padding: 20px 0 30px 0 !important;
    }
}

/* ─── Scrollable Track ───────────────────────────── */

.product-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 4px 16px;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
    .product-slider {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        overflow: visible !important;
        cursor: default !important;
        padding: 10px 0 !important;
    }

    .product-slider .product-card {
        width: 100% !important;
        flex: none !important;
    }

}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider.ps-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* ─── Product Card ───────────────────────────────── */

.product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.10);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .product-card {
        flex: 0 0 calc(100% - 4px);
    }
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 14px 32px rgba(0, 0, 0, 0.14);
}

/* ─── Image Block ────────────────────────────────── */

.product-image {
    position: relative;
    width: 100%;
    height: 212px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.product-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* ─── "New" Badge ────────────────────────────────── */

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFDC99;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 21px;
    padding: 3px 14px;
    border-radius: 11px;
    z-index: 2;
    pointer-events: none;
}

/* ─── Wishlist Heart Button ──────────────────────── */

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.wishlist-btn svg {
    width: 16px;
    height: 16px;
    transition: fill 0.2s ease;
}

.wishlist-btn:hover {
    background: #ffffff;
    transform: scale(1.15);
}

.wishlist-btn.active svg path,
.wishlist-btn:hover svg path {
    fill: #C5902C;
    stroke: #C5902C;
}

/* Legacy .wishlist (div) — hidden in new layout */
.wishlist {
    display: none;
}

/* ─── Product Info Block ─────────────────────────── */

.product-content {
    padding: 12px 16px 14px;
    border-width: 0 0.4px 0.4px 0.4px;
    border-style: solid;
    border-color: #c0c0c0;
    border-radius: 0 0 10px 10px;
    background: #ffffff;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #474747;
    line-height: 17px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── Price Row ──────────────────────────────────── */

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Discounted / sale price — orange */
.price-current {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFA700;
}

.price-current strong {
    font-weight: 600;
    font-size: 14px;
}

/* Original / crossed-out price */
.price-original {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #171717;
    text-decoration: line-through;
}

/* Flat price (no discount) — dark */
.price-flat {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #171717;
}

/* Legacy .price — hidden in new layout */
.price {
    display: none;
}


/* ─── View More Button (Desktop Hidden) ───────────── */

.slider-view-more-container {
    display: none;
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 991px) {
    .product-slider-wrapper {
        padding: 16px 14px 24px !important;
    }

    .ps-arrow {
        display: none !important;
    }

    .product-slider {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        overflow-x: visible !important;
        padding: 10px 0 !important;
        cursor: default !important;
        touch-action: pan-y !important;
        user-select: auto !important;
    }

    .product-card {
        min-width: 0 !important;
        flex: none !important;
        width: 100% !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08) !important;
    }

    .product-image {
        height: clamp(130px, 42vw, 200px) !important;
    }

    /* Hide cards from the 5th onwards by default inside the grid */
    #newArrivalsSlider:not(.show-all-cards) .product-card:nth-child(n+5) {
        display: none !important;
    }

    .slider-view-more-container {
        display: flex !important;
        justify-content: center !important;
        margin-top: 24px !important;
        width: 100% !important;
    }

    .slider-view-more-btn {
        background: #C5902C !important;
        color: #FFFFFF !important;
        border: none !important;
        border-radius: 8px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        padding: 10px 28px !important;
        cursor: pointer !important;
        box-shadow: 0 4px 12px rgba(197, 144, 44, 0.2) !important;
        transition: background-color 0.2s ease, transform 0.1s ease !important;
    }

    .slider-view-more-btn:hover {
        background: #b27d1f !important;
    }

    .slider-view-more-btn:active {
        transform: scale(0.96) !important;
    }
}

/* ─── PRODUCTS FOR YOU SECTION ──────────────────────── */

.pfy-section {
    margin: 50px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.pfy-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pfy-line {
    flex: 1;
    height: 1px;
    background: #C5902C;
    max-width: 400px;
}

.pfy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
}

.pfy-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pfy-filter-btn {
    width: 172px;
    height: 47px;
    background: #FFFFFF;
    border: 0.5px solid #7E7E7E;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.pfy-filter-btn:hover {
    background: #f8f8f8;
    border-color: #000;
}

.pfy-filter-btn i {
    font-size: 14px;
}

.pfy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Ensure grid cards stretch fully */
.pfy-grid .product-card {
    min-width: unset;
    width: 100%;
    flex: unset;
}

.pfy-view-more {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.view-more-btn {
    width: 140px;
    height: 44px;
    background: #C5902C;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #b07e24;
}

@media (max-width: 1024px) and (min-width: 992px) {
    .pfy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .pfy-section {
        padding: 0 14px !important;
        margin: 30px auto !important;
    }

    .pfy-heading {
        margin-bottom: 20px !important;
    }

    .pfy-title {
        font-size: 16px !important;
        letter-spacing: 1.5px !important;
    }

    .pfy-line {
        max-width: 80px !important;
    }

    /* Symmetrical filter bar spanning full width in 1 row */
    .pfy-filters {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0 !important;
        width: 100% !important;
        border: 0.5px solid rgba(0, 0, 0, 0.12) !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        background: #FFFFFF !important;
        margin-bottom: 16px !important;
        padding: 0 !important;
    }

    .pfy-filter-btn {
        width: 100% !important;
        height: 42px !important;
        border: none !important;
        border-right: 0.5px solid rgba(0, 0, 0, 0.12) !important;
        border-radius: 0 !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        color: #333333 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .pfy-filter-btn:last-child {
        border-right: none !important;
    }

    .pfy-filter-btn img {
        width: 14px !important;
        height: 14px !important;
        object-fit: contain !important;
    }

    /* Bordered Product Grid layout with no gap and flat cards */
    .pfy-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
        border: 0.5px solid rgba(0, 0, 0, 0.12) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        background: #FFFFFF !important;
        margin-bottom: 30px !important;
    }

    .pfy-grid .product-card {
        background: #FFFFFF !important;
        border-radius: 0 !important;
        border: none !important;
        border-right: 0.5px solid rgba(0, 0, 0, 0.12) !important;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.12) !important;
        box-shadow: none !important;
        margin: 0 !important;
        width: 100% !important;
        flex: none !important;
        transform: none !important;
        transition: none !important;
    }

    /* Hover effect override for mobile (remove translations and shadows) */
    .pfy-grid .product-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .pfy-grid .product-card:hover .product-image img {
        transform: none !important;
    }

    /* Remove right border on the right-column cards (even children) */
    .pfy-grid .product-card:nth-child(2n) {
        border-right: none !important;
    }

    /* Remove bottom border on the last row of cards (last two cards) */
    .pfy-grid .product-card:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .pfy-grid .product-image {
        height: clamp(140px, 46vw, 210px) !important;
        border-radius: 0 !important;
    }

    .pfy-grid .product-image img {
        border-radius: 0 !important;
    }

    .pfy-grid .product-content {
        padding: 10px 12px 12px !important;
        border: none !important;
        border-radius: 0 !important;
        background: #FFFFFF !important;
    }

    .pfy-grid .product-title {
        font-size: 12px !important;
        line-height: 15px !important;
        margin-bottom: 6px !important;
    }

    .pfy-grid .price-row {
        gap: 6px !important;
    }

    .pfy-grid .price-current,
    .pfy-grid .price-flat {
        font-size: 13px !important;
    }

    .pfy-grid .price-original {
        font-size: 11px !important;
    }

    .pfy-view-more {
        margin-bottom: 40px !important;
    }

    .view-more-btn {
        width: 130px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
}

/* ─── VIDEO FINDS SECTION ──────────────────────── */

.video-finds-section {
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
}

.vf-bg-img {
    position: absolute;
    left: -220px;
    top: -90px;
    width: 380px;
    height: 380px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.vf-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vf-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.vf-line {
    flex: 1;
    height: 1px;
    background: #C5902C;
    max-width: 400px;
}

.vf-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
}

.vf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 325 / 548;
    background: #FFFFFF;
    box-shadow: 0px 4px 17.4px rgba(0, 0, 0, 0.25);
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
}

.vf-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-card:hover .vf-image {
    transform: scale(1.05);
}

.vf-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 91px;
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vf-play-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 167, 0, 0.24);
    border: 1px solid #FEF6F6;
    border-radius: 50%;
    box-sizing: border-box;
}

.vf-play-inner {
    position: absolute;
    width: 62%;
    height: 63%;
    background: #FEF6F6;
    border: 1px solid #FEF6F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.video-card:hover .vf-play-inner {
    background: #ffffff;
}

.vf-play-inner svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    /* visually center the play icon */
}

.vf-view-more {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) and (min-width: 992px) {
    .vf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-card {
        aspect-ratio: 325 / 548;
        height: auto;
    }
}

@media (max-width: 991px) {
    .video-finds-section {
        padding: 0 14px !important;
        margin: 30px auto !important;
    }

    .vf-heading {
        margin-bottom: 20px !important;
    }

    .vf-title {
        font-size: 16px !important;
        letter-spacing: 1.5px !important;
    }

    .vf-line {
        max-width: 80px !important;
    }

    .vf-bg-img {
        display: none !important;
    }

    .vf-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        margin-bottom: 30px !important;
    }

    .video-card {
        aspect-ratio: 325 / 548 !important;
        height: auto !important;
        border-radius: 24px !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15) !important;
    }

    .vf-play-btn {
        width: 62px !important;
        height: 60px !important;
    }

    /* Custom colored outer ring transparent overlays matching mockup */
    .video-card:nth-child(1) .vf-play-outer {
        background: rgba(218, 142, 85, 0.35) !important;
        border-color: rgba(254, 246, 246, 0.5) !important;
    }

    .video-card:nth-child(2) .vf-play-outer {
        background: rgba(102, 174, 114, 0.35) !important;
        border-color: rgba(254, 246, 246, 0.5) !important;
    }

    .video-card:nth-child(3) .vf-play-outer {
        background: rgba(94, 126, 190, 0.35) !important;
        border-color: rgba(254, 246, 246, 0.5) !important;
    }

    .video-card:nth-child(4) .vf-play-outer {
        background: rgba(186, 145, 78, 0.35) !important;
        border-color: rgba(254, 246, 246, 0.5) !important;
    }

    .vf-play-inner svg {
        width: 16px !important;
        height: 16px !important;
        margin-left: 2px !important;
    }
}

@media (max-width: 575px) {
    .vf-grid {
        gap: 12px !important;
    }

    .video-card {
        border-radius: 18px !important;
    }

    .vf-play-btn {
        width: 48px !important;
        height: 46px !important;
    }

    .vf-play-inner svg {
        width: 12px !important;
        height: 12px !important;
        margin-left: 2px !important;
    }
}

/* ─── DAILY DEALS SECTION ──────────────────────── */

/* Inknut Antiqua loaded via HTML <link> */

.daily-deals-section {
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1400px;
}

.dd-heading-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    justify-content: center;
}

.dd-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    margin: 0 20px;
    white-space: nowrap;
}

.dd-ticktock {
    position: absolute;
    right: 0;
    top: -10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tt-text {
    font-family: 'Inknut Antiqua', serif;
    font-size: 16px;
    font-weight: 600;
    color: #EE1111;
    display: flex;
    align-items: center;
    line-height: 1;
}

.tt-clock {
    font-size: 14px;
    margin: 0 2px;
}

.tt-deals {
    font-family: 'Inknut Antiqua', serif;
    font-size: 16px;
    font-weight: 800;
    color: #EE1111;
    line-height: 1;
    margin-top: 4px;
}

.dd-slider-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 50px;
    cursor: grab;
}

.dd-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.dd-slider-wrapper.active {
    cursor: grabbing;
}

.dd-slider {
    display: flex;
    gap: 20px;
    width: max-content;
}

.deal-card {
    width: 261px;
    flex-shrink: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #F3F3F3;
    aspect-ratio: 261 / 322;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
}

.deal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(34, 34, 34, 0.84);
    border-top: 1px solid #535353;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.deal-cat {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-left: 15px;
    align-self: center;
    text-transform: uppercase;
}

.deal-price {
    background: #FFFFFF;
    height: 85%;
    width: 85px;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.dp-under {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5A5757;
    line-height: 1;
    margin-bottom: 2px;
}

.dp-amt {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1;
}

@media (max-width: 991px) {

    /* ── Section spacing */
    .daily-deals-section {
        padding: 0 14px !important;
        margin: 30px auto !important;
    }

    /* ── Heading row: line | DAILY DEALS ! | line | TICK TOCK badge */
    .dd-heading-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        margin-bottom: 16px !important;
        position: relative !important;
    }

    /* Shrink title */
    .dd-title {
        font-size: 16px !important;
        letter-spacing: 1px !important;
        margin: 0 10px !important;
        white-space: nowrap !important;
    }

    /* Lines beside heading */
    .dd-heading-wrapper>.vf-line {
        flex: 1 !important;
        max-width: 55px !important;
        height: 1px !important;
        background: #C5902C !important;
    }

    /* TICK TOCK badge: keep visible, absolute top-right corner */
    .dd-ticktock {
        position: absolute !important;
        right: 0 !important;
        top: -14px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
    }

    .tt-text {
        font-size: 11px !important;
        line-height: 1 !important;
    }

    .tt-deals {
        font-size: 11px !important;
        margin-top: 2px !important;
    }

    .tt-clock {
        font-size: 10px !important;
    }

    /* ── Convert slider to static 2-column grid */
    .dd-slider-wrapper {
        overflow-x: visible !important;
        overflow-y: visible !important;
        cursor: default !important;
        margin-bottom: 24px !important;
    }

    .dd-slider {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
    }

    /* ── Deal card: fluid width, preserved aspect ratio */
    .deal-card {
        width: 100% !important;
        flex-shrink: unset !important;
        aspect-ratio: 261 / 322 !important;
        border-radius: 12px !important;
        transition: none !important;
    }

    .deal-card:hover {
        transform: none !important;
    }

    /* ── Banner row adjustments */
    .deal-banner {
        height: 60px !important;
    }

    .deal-cat {
        font-size: 13px !important;
        margin-left: 10px !important;
    }

    .deal-price {
        width: 72px !important;
        border-radius: 0 0 10px 10px !important;
        margin-right: 4px !important;
    }

    .dp-under {
        font-size: 10px !important;
    }

    .dp-amt {
        font-size: 13px !important;
    }
}

@media (max-width: 575px) {
    .dd-slider {
        gap: 10px !important;
    }

    .deal-banner {
        height: 52px !important;
    }

    .deal-cat {
        font-size: 11px !important;
        margin-left: 8px !important;
    }

    .deal-price {
        width: 62px !important;
    }

    .dp-under {
        font-size: 9px !important;
    }

    .dp-amt {
        font-size: 11px !important;
    }
}

/* ─── SITE FOOTER ────────────────────────────── */

.site-footer {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    margin-top: 80px;
}

.footer-bg-left {
    position: absolute;
    width: 167.79px;
    height: 274px;
    left: 14.5px;
    top: 252px;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-left img {
    width: 167.79px;
    height: 274px;
    object-fit: contain;
}

.footer-bg-right {
    position: absolute;
    width: 167.79px;
    height: 274px;
    right: -14px;
    top: 0px;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-right img {
    width: 167.79px;
    height: 274px;
    object-fit: contain;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 189px;
    height: 117px;
    object-fit: contain;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #FFF5EB;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.5;
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

.footer-col a:hover {
    color: #C5902C;
    opacity: 1;
}

.footer-address {
    background: rgba(32, 60, 134, 0.05);
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.footer-address h4 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFF5EB;
    margin-bottom: 15px;
}

.footer-address p {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 33px;
    height: 33px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #C5902C;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (min-width: 992px) {

    /* Custom desktop alignment to match figma specs and spacing gaps */
    .site-footer .row {
        max-width: 1139px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: nowrap;
        /* Prevent columns from wrapping on desktop! */
    }

    .site-footer .col-lg-3:first-child {
        width: 189px;
        flex: 0 0 189px;
        padding: 0;
    }

    .site-footer .col-lg-2 {
        width: auto;
        flex: 0 0 auto;
        padding: 0;
    }

    /* Apply flexible Figma gaps between the navigation columns */
    .site-footer .col-lg-2+.col-lg-2 {
        margin-left: clamp(30px, 5vw, 140px);
        /* Responsive gap: scales up to 140px on large viewports */
    }

    .site-footer .col-lg-3:last-child {
        width: 248px;
        flex: 0 0 248px;
        padding: 0;
    }

    .footer-col {
        margin-top: 75px;
        /* Push headings vertically below the 117px logo box */
    }

    .footer-address {
        margin-top: 51px;
        /* Align Address header vertically with column headers (75px push - 24px card padding) */
    }
}

@media (max-width: 991px) {
    .site-footer {
        padding: 40px 0 20px 0 !important;
        margin-top: 40px !important;
    }

    .footer-bg-left {
        display: block !important;
        position: absolute !important;
        width: 120px !important;
        height: auto !important;
        left: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }

    .footer-bg-left img {
        width: 100% !important;
        height: auto !important;
    }

    .footer-bg-right {
        display: block !important;
        position: absolute !important;
        width: 140px !important;
        height: auto !important;
        top: 0 !important;
        right: 0 !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }

    .footer-bg-right img {
        width: 100% !important;
        height: auto !important;
    }

    .site-footer .row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        column-gap: 20px !important;
        row-gap: 30px !important;
        margin: 0 !important;
        padding: 0 15px !important;
    }

    .site-footer .row>div {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .site-footer .row>div:nth-child(1) {
        grid-column: span 3 !important;
        text-align: left !important;
    }

    .footer-logo {
        text-align: left !important;
        margin-bottom: 10px !important;
    }

    .footer-logo img {
        margin: 0 !important;
        width: 140px !important;
        height: auto !important;
    }

    .fallback-logo {
        text-align: left !important;
    }

    .site-footer .row>div:nth-child(2),
    .site-footer .row>div:nth-child(3),
    .site-footer .row>div:nth-child(4) {
        grid-column: span 1 !important;
    }

    .footer-col {
        text-align: left !important;
    }

    .footer-col h4 {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 12px !important;
    }

    .footer-col a {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .site-footer .row>div:nth-child(5) {
        grid-column: span 3 !important;
    }

    .footer-address {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        text-align: left !important;
        margin-top: 10px !important;
    }

    .footer-address h4 {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 12px !important;
        font-weight: 700 !important;
        color: #FFF5EB !important;
    }

    .footer-address p {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 16px !important;
    }

    .footer-social {
        justify-content: flex-start !important;
        gap: 12px !important;
    }

    .social-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }
}

/* ── Footer Copyright Bar ──────────────────────────── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.35;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-bottom span {
    color: #C5902C;
    opacity: 1;
    font-weight: 600;
}

/* ── Smooth menu link transition ───────────────────── */
.menu a {
    transition: color 0.25s ease;
}

/* ── Category image sizing fix ─────────────────────── */
.category-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Section vertical rhythm ───────────────────────── */
.trends-section {
    margin-bottom: 50px;
}

.arrival-heading {
    margin: 30px 0 10px;
}

.product-slider-wrapper {
    margin-bottom: 10px;
}

.pfy-section {
    margin-top: 40px;
}

.video-finds-section {
    margin-top: 30px;
}

.daily-deals-section {
    margin-top: 20px;
}

/* ── View-more button polish ───────────────────────── */
.view-more-btn {
    letter-spacing: 0.5px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(197, 144, 44, 0.3);
}

.view-more-btn:hover {
    box-shadow: 0 6px 20px rgba(197, 144, 44, 0.45);
    transform: translateY(-2px);
    transition: all 0.25s ease;
}

.pfy-filter-btn img {
    width: 20px;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR (Figma Specification)
   ========================================================================== */

/* Hide by default on desktop viewports */
.mob-nav {
    display: none;
}

@media (max-width: 991px) {

    /* Prevent content overlap with the bottom navigation */
    body {
        padding-bottom: 110px !important;
    }

    .desk-v {
        display: none !important;
    }

    .mob-nav {
        display: flex;
        position: fixed;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 90px;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
        align-items: center;
        justify-content: space-around;
        z-index: 9999;
        padding: 0 10px;
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mob-nav__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #8D8D8D;
        flex: 1;
        height: 100%;
        position: relative;
        transition: all 0.25s ease;
    }

    .mob-4 {
        margin-bottom: 25px;
    }

    .mob-nav__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        margin-bottom: 4px;
    }

    .mob-nav__icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        opacity: 0.65;
        transition: all 0.25s ease;
    }

    .mob-nav__label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 500;
        line-height: 1;
        color: #8D8D8D;
        transition: all 0.25s ease;
        letter-spacing: 0.2px;
    }

    /* Collections center button bubble design */
    .mob-nav__item--center {
        justify-content: flex-end;
        padding-bottom: 10px;
    }

    .mob-nav__bubble {
        position: absolute;
        top: -24px;
        left: 50%;
        transform: translateX(-50%);
        width: 58px;
        height: 58px;
        background: linear-gradient(135deg, #D1A967 0%, #C5902C 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 22px rgba(197, 144, 44, 0.45);

        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }

    .mob-nav__bubble img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        filter: brightness(0) invert(1);
        transition: transform 0.3s ease;
    }

    .mob-nav__item--center .mob-nav__label {
        margin-top: 0;
    }

    /* Interactive Hover & Active states */
    .mob-nav__item:active {
        transform: scale(0.95);
    }

    .mob-nav__item--active .mob-nav__label {
        color: #C5902C;
        font-weight: 600;
    }

    .mob-nav__item--active .mob-nav__icon img {}

    .mob-nav__item--center:hover .mob-nav__bubble,
    .mob-nav__item--center.mob-nav__item--active .mob-nav__bubble {
        transform: translateX(-50%) translateY(-4px) scale(1.06);
        box-shadow: 0 10px 26px rgba(197, 144, 44, 0.6);
    }

    .mob-nav__item--center:hover .mob-nav__bubble img {
        transform: rotate(15deg);
    }
}

.tt-clock img {
    width: 30px;
}

.mt-6 {
    margin-top: 60px;
}

.desk-v {
    display: block;
}

.first-half h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

/* Main Header Container */
.rz-header-wrap {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Section */
.rz-user-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rz-user-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.rz-user-text {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

/* Right Section */
.rz-lang-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rz-flag {
    width: 40px;
    height: 25px;
    object-fit: cover;
}

.rz-lang {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.acctzone-wrapper {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.acctzone-item-row {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 90px;
    padding: 0 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.acctzone-item-icon {
    width: 40px;
    min-width: 40px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acctzone-item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
}

.acctzone-logout-section {
    display: flex;
    justify-content: center;
    padding: 54px 0 40px;
}

.acctzone-logout-btn {
    width: 178px;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #C5902C;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.acctzone-logout-btn:hover {
    opacity: 0.9;
}

.inji-pappadam h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.showcasehub-featured-section {
    width: 100%;
    max-width: 500px;
}

.showcasehub-heading-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.showcasehub-heading-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #3C3C3C;
    white-space: nowrap;
}

.showcasehub-heading-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.6);
}

.showcasehub-categories-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.showcasehub-category-card {
    width: 100px;
}

.showcasehub-category-card img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border: 1px solid #000;
    opacity: 0.9;
    display: block;
}

.showcasehub-category-card p {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
}

.trendvista-popular-section {
    width: 100%;
}

.trendvista-heading-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.trendvista-heading-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #3C3C3C;
    white-space: nowrap;
}

.trendvista-heading-line {
    width: 243px;
    height: 1px;
    background: rgba(0, 0, 0, 0.6);
}

.trendvista-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(139px, 1fr));
    gap: 24px 18px;
}

.trendvista-category-card {
    text-align: center;
}

.trendvista-category-card img {
    width: 139px;
    height: 133px;
    object-fit: contain;
    background: #FFFFFF;
    border: 0.5px solid #686868;
    border-radius: 11px;
    padding: 10px;
    display: block;
    margin: 0 auto;
}

.trendvista-category-card span {
    display: block;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.bagga h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.kidora-products-wrapper {
    width: 100%;
    /* padding: 20px; */
}

.kidora-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .kidora-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .kidora-products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}

.kidora-product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 2.6px rgba(0, 0, 0, 0.25);
}

.kidora-image-wrapper {
    position: relative;
}

.kidora-image-wrapper img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.kidora-favourite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #C5902C;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.kidora-product-content {
    padding: 14px 20px 10px;
}

.kidora-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #474747;
    margin-bottom: 8px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kidora-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kidora-sale-price {
    color: #FFA700;
    font-size: 14px;
    font-weight: 600;
}

.kidora-original-price {
    color: #171717;
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
}

.kidora-cart-btn {
    width: 100%;
    height: 42px;
    border: none;
    background: #3F3F3F;
    color: #F9F7F5;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    cursor: pointer;
}

.kidora-cart-btn:hover {
    background: #2f2f2f;
}

.pprofile-main {
    max-width: 1300px;
    margin: 40px auto;
    /* padding: 0 20px; */
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ======================
           SIDEBAR
        ======================= */

.pprofile-sidebar {
    width: 330px;
    background: #F5EDE7;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.pprofile-user-box {
    padding: 20px;
    text-align: center;
    position: relative;
}

.pprofile-lang {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 12px;
    font-weight: 600;
}

.pprofile-user-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.pprofile-user-name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.pprofile-menu {
    list-style: none;
}

.pprofile-menu li:last-child {
    border-top: 1px solid #E2D8D0;
}

.pprofile-menu-link {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    font-size: 16px;
    transition: .3s;
    font-weight: 400;
}

.pprofile-menu-link i {
    color: #C5902C;
    width: 18px;
}

.pprofile-menu-link.active {
    background: #fff;
}

/* ======================
           CONTENT
        ======================= */

.pprofile-content {
    flex: 1;
}

.pprofile-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.pprofile-group {
    margin-bottom: 18px;
}

.pprofile-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pprofile-input {
    width: 100%;
    height: 48px;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
}

/* Icon inside input */
.pprofile-input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.pprofile-input-icon {
    position: absolute;
    left: 14px;
    width: 16px;
    height: 16px;
    object-fit: contain;
    pointer-events: none;
}

.pprofile-input--icon {
    padding-left: 40px;
}


.pprofile-select {
    width: 120px;
    height: 48px;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
}

/* ======================
           ADDRESS
        ======================= */

.pprofile-address-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pprofile-add-address {
    color: #C5902C;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.pprofile-address-item {
    margin-bottom: 15px;
}

.pprofile-address-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

.pprofile-address-box {
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
    color: #575757;
}

/* ======================
           PHONE
        ======================= */

.pprofile-phone-wrap {
    display: flex;
    gap: 10px;
}

.pprofile-country {
    width: 80px;
    height: 48px;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    padding: 0 10px;
}

.pprofile-phone {
    width: 180px;
    height: 48px;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    padding: 0 16px;
}

/* ======================
           BUTTON
        ======================= */

.pprofile-save-btn {
    margin-top: 20px;
    width: 90px;
    height: 42px;
    border: none;
    border-radius: 5px;
    background: #C5902C;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.pprofile-save-btn:hover {
    opacity: .9;
}

/* ======================
           RESPONSIVE
        ======================= */

@media(max-width:991px) {

    .pprofile-main {
        flex-direction: column;
    }

    .pprofile-sidebar {
        width: 100%;
    }

    .pprofile-content {
        width: 100%;
    }

    .pprofile-phone-wrap {
        flex-direction: column;
    }

    .pprofile-country,
    .pprofile-phone {
        width: 100%;
    }

    .pprofile-address-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.pprofile-lang img {
    width: 25px;
}

.pprofile-menu {
    padding-left: 0px;
}

.pprofile-menu li a img {
    width: 15px;
}

.trivv {
    font-size: 6px;
    font-weight: 400;
}

.pprofile-user-name {
    margin-bottom: 0px !important;
}

.pprofile-menu-link:hover {
    color: #000;
}


/* =====================================
   ADDRESS POPUP
===================================== */

.pprofile-address-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.pprofile-address-popup-overlay.active {
    display: flex;
}

.pprofile-address-popup-modal {
    width: 600px;
    max-width: 95%;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 40px 35px;
    position: relative;
    animation: pprofilePopup .25s ease;
}

@keyframes pprofilePopup {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pprofile-address-popup-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #9A6400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pprofile-address-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.pprofile-address-popup-group {
    margin-bottom: 8px;
}

.pprofile-address-popup-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #2E2E2E;
    text-transform: uppercase;
}

.pprofile-address-popup-input {
    width: 100%;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #3B3313;
    resize: none;
    outline: none;
}

textarea.pprofile-address-popup-input {
    max-height: 55px;
}



.pprofile-address-popup-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.pprofile-address-popup-save-btn {
    width: 128px;
    height: 42px;
    border: none;
    background: #C5902C;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

.pprofile-address-popup-save-btn:hover {
    opacity: .9;
}

@media(max-width:768px) {
    .pprofile-main {
        max-width: 1300px;
        margin: 40px auto;
        /* padding: 0 20px; */
        display: flex;
        gap: 40px;
        align-items: inherit;
    }

    .pprofile-menu {
        display: grid;
        grid-template-columns: 2fr 2fr;
        gap: 8px;
    }

    .pprofile-address-popup-modal {
        padding: 25px 20px;
    }

    .pprofile-address-popup-title {
        font-size: 16px;
    }

    .mob-v {
        display: block !important;
    }

    .pfy-section-title {
        font-size: 14px;
    }
}

.product-card a {
    text-decoration: none;
}

a {
    text-decoration: none !important;
}

.acctzone-logout-btn a {
    color: #fff;
}

.acctzone-logout-btn a:hover {
    color: #fff;
}

/* ── Mobile Hamburger Header (≤ 991px) ──────────────── */
.mobile-header {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .header {
        display: block !important;
        height: auto !important;
        padding: 0 !important;
    }

    .navbar {
        display: none !important;
    }

    .mobile-header {
        display: block !important;
        width: 100% !important;
        background: #fff !important;
        padding: 16px 24px !important;
        box-sizing: border-box !important;
        position: relative;
    }

    .mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        position: relative;
    }

    /* Centered title on mobile top row */
    .mobile-top .pfy-section-title.mob-v {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        pointer-events: none;
        font-weight: 600;
        color: #000;
        font-size: 14px;
    }

    .mobile-logo img {
        width: 100px;
    }

    /* Search button injected by script */
    .mobile-search-icon-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 15px;
        z-index: 10;
    }

    .mobile-search-icon-btn img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        z-index: 10;
    }

    /* Collapsed by default — expands on .open */
    .mobile-search {
        position: relative;
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        margin-top: 0;
        transition: max-height 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
    }

    .mobile-search.open {
        max-height: 60px;
        padding-top: 10px;
        margin-top: 10px;
    }

    .mobile-search input {
        width: 100%;
        height: 36px;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 0 40px 0 12px;
        font-size: 12px;
        outline: none;
    }

    .mobile-search img {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 80px;
        right: -220px;
        width: 183px;
        height: 232px;
        background: #FFF9F2;
        box-shadow: 0 4px 12.8px rgba(0, 0, 0, .25);
        border-radius: 10px;
        z-index: 9999;
        transition: right .3s ease;
    }

    .mobile-menu.active {
        right: 10px;
    }

    .close-menu {
        position: absolute;
        top: 10px;
        right: 12px;
        border: none;
        background: none;
        font-size: 20px;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-menu a {
        display: block;
        padding-left: 30px;
        height: 33px;
        line-height: 33px;
        text-decoration: none;
        color: #000;
        font-size: 14px;
        font-weight: 400;
    }

    .mobile-menu a:nth-child(2) {
        margin-top: 44px;
    }
}

.mob-v {
    display: none;
}

.video-card {
    margin-top: 15px;
}

.view-more-btn a {
    color: #fff;
}

.note {
    font-family: italic;
    font-size: 11px;
    font-weight: 400;
}
.feature-item{
    text-transform: uppercase;
}
.feature-item img{
    width: 50px;
}

 .pfy-section-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            width: 100%;
            margin: 20px 0 30px;
        }

        .pfy-section-line {
            flex: 1;
            max-width: 489px;
            height: 1px;
        }

        .pfy-line-left {
            background: linear-gradient(to right, rgba(197, 144, 44, 0), rgba(197, 144, 44, 1));
        }

        .pfy-line-right {
            background: linear-gradient(to right, rgba(197, 144, 44, 1), rgba(197, 144, 44, 0));
        }

        .pfy-section-title {
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 19px;
            color: #000000;
            margin: 0;
            white-space: nowrap;
            text-transform: uppercase;
        }

        .pfy-view-more-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 40px;
            margin-bottom: 20px;
        }
        .total-product{
            color: #C5902C;
        }