.profile-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 35px;
    max-width: 700px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
}

.profile-header h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.profile-header p {
    margin: 5px 0 0;
    color: #777;
}


.profile-info {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}


.info-box {
    background:#f8f8f8;
    border-radius:12px;
    padding:18px;
}


.info-box span {
    display:block;
    font-size:13px;
    color:#777;
    margin-bottom:8px;
}


.info-box strong {
    font-size:16px;
    color:#111;
}


.profile-actions {
    margin-top:30px;
}


.profile-btn {
    display:inline-block;
    padding:12px 25px;
    background:#000;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
}


@media(max-width:600px){

    .profile-info{
        grid-template-columns:1fr;
    }

    .profile-header{
        flex-direction:column;
        align-items:flex-start;
    }

}


    body {
        background: #f8f9fa;
    }

    .account-wrapper {
        display: flex;
        min-height: 700px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
    }

    .account-sidebar {
        width: 260px;
        background: #fafafa;
        border-right: 1px solid #ececec;
    }

    .account-sidebar ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .account-sidebar li {
        border-bottom: 1px solid #eee;
    }

    .menu-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 18px 22px;
        text-decoration: none;
        color: #444;
        font-size: 15px;
        transition: .25s;
    }

    .menu-link:hover {
        background: #f3f3f3;
        padding-left: 28px;
    }

    .menu-link.active {
        background: #000;
        color: #fff;
    }
  .menu-link-logout {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 18px 22px;
        text-decoration: none;
        color: #444;
        font-size: 15px;
        transition: .25s;
    }

    .menu-link-logout:hover {
        background: #f3f3f3;
        padding-left: 28px;
    }

    .menu-link-logout.active {
        background: #000;
        color: #fff;
    }

    .account-content {
        flex: 1;
        background: #fff;
        position: relative;
        overflow: hidden;
        padding: 35px;
    }

    #page-content {
        opacity: 1;
        transform: translateX(0);
        transition: all .25s ease;
    }

    #page-content.loading {
        opacity: 0;
        transform: translateX(20px);
    }

    .loader {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
    }

    .loader span {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 4px solid #e9e9e9;
        border-top-color: #000;
        animation: spin .7s linear infinite;
    }

    .error-box {
        text-align: center;
        padding: 80px 20px;
    }

    .error-box h4 {
        margin-bottom: 15px;
    }

    .error-box button {
        padding: 10px 25px;
        border: none;
        background: #000;
        color: #fff;
        cursor: pointer;
        border-radius: 4px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    @media(max-width:768px) {

        .account-wrapper {
            flex-direction: column;
        }

        .account-sidebar {
            width: 100%;
        }

        .account-content {
            padding: 20px;
        }

    }
    .account-wrapper {
    display: flex;
    height: calc(100vh - 120px); /* adjust according to your header height */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,.05);
}


/* LEFT SIDEBAR */
.account-sidebar {
    width:260px;
    background:#fafafa;
    border-right:1px solid #ececec;

    position: sticky;
    top:0;
    height:100%;
}


/* RIGHT CONTENT ONLY SCROLL */
.account-content {
    flex:1;
    background:#fff;
    padding:35px;

    overflow-y:auto;
    height:100%;
}

    .tracking-card {
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 18px;
        padding: 30px;
        margin-bottom: 25px;
    }

    .tracking-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 35px;
    }

    .tracking-header h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
    }

    .order-id {
        color: #777;
        font-size: 14px;
    }


    .tracking-progress {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin: 50px 0;
    }


    .progress-line {
        position: absolute;
        top: 25px;
        left: 0;
        width: 100%;
        height: 4px;
        background: #ddd;
    }


    .progress-active {
        position: absolute;
        top: 25px;
        left: 0;
        height: 4px;
        background: #000;
        z-index: 1;
    }


    .step-25 {
        width: 10%;
    }

    .step-50 {
        width: 40%;
    }

    .step-75 {
        width: 70%;
    }

    .step-100 {
        width: 100%;
    }


    .track-step {
        width: 25%;
        text-align: center;
        position: relative;
        z-index: 2;
    }


    .track-icon {

        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #ddd;
        color: #777;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        font-size: 22px;

    }


    .track-icon.active {

        background: #000;
        color: #fff;

    }


    .track-label {

        margin-top: 12px;
        font-size: 14px;
        font-weight: 600;

    }


    .order-details {

        display: flex;
        justify-content: space-between;
        background: #f8f8f8;
        padding: 18px;
        border-radius: 10px;
        margin-bottom: 25px;
        flex-wrap: wrap;
        gap: 15px;

    }


    .order-details span {

        display: block;
        color: #777;
        font-size: 13px;

    }


    .product-item {

        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #eee;

    }


    .product-name {

        font-weight: 600;

    }


    .product-price {

        font-weight: 700;

    }


    .empty-box {

        text-align: center;
        padding: 80px 20px;

    }



    @media(max-width:768px) {

        .tracking-progress {
            overflow-x: auto;
            gap: 20px;
        }

        .track-step {
            min-width: 120px;
        }

    }

.order-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.order-id {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.order-date {
    font-size: 14px;
    color: #777;
}

.order-status {
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    background: #000;
    color: #fff;
}

.order-info {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.order-info div span {
    display: block;
    color: #888;
    font-size: 13px;
    margin-bottom: 5px;
}

.order-info strong {
    font-size: 16px;
    color: #000;
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.product-name {
    font-weight: 600;
    color: #111;
}

.product-meta {
    color: #777;
    font-size: 14px;
}

.product-price {
    font-weight: 700;
}

.empty-orders {
    text-align: center;
    padding: 80px 20px;
}

.empty-orders h4 {
    margin-bottom: 10px;
}


@media(max-width:768px){

    .order-header,
    .order-info,
    .product-row {
        flex-direction: column;
        align-items: flex-start;
    }

}


    /* Premium iziToast — replace your existing styles */
    .iziToast {
        background: #fff !important;
        border: 0.5px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 16px !important;
        box-shadow: none !important;
        min-width: 380px !important;
        max-width: 440px !important;
        overflow: hidden !important;
        font-family: 'Inter', -apple-system, sans-serif !important;
    }

    /* Left color accent bar */
    .iziToast::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 3px !important;
        background: #639922 !important;
    }

    .iziToast.iziToast-color-red::before {
        background: #e24b4a !important;
    }

    .iziToast.iziToast-color-blue::before {
        background: #378add !important;
    }

    .iziToast.iziToast-color-yellow::before {
        background: #ef9f27 !important;
    }

    /* Icon — rounded square instead of circle */
    .iziToast-icon {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
        background: #eaf3de !important;
        color: #3b6d11 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        left: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .iziToast.iziToast-color-red .iziToast-icon {
        background: #fcebeb !important;
        color: #a32d2d !important;
    }

    .iziToast.iziToast-color-blue .iziToast-icon {
        background: #e6f1fb !important;
        color: #185fa5 !important;
    }

    .iziToast.iziToast-color-yellow .iziToast-icon {
        background: #faeeda !important;
        color: #854f0b !important;
    }

    /* Body */
    .iziToast-body {
        padding: 16px 48px 16px 68px !important;
    }

    /* Title */
    .iziToast-title {
        color: #111 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: -0.1px !important;
    }

    .image-wrap {
        background: black;
    }

    .image-wrap img {
        object-fit: contain !important;
    }

    /* Message */
    .iziToast-message {
        color: #666 !important;
        font-size: 13px !important;
        font-weight: 400 !important;
        line-height: 1.4 !important;
    }

    /* Close button */
    .iziToast-close {
        opacity: 0.4 !important;
        transition: opacity 0.2s, background 0.2s !important;
        border-radius: 6px !important;
    }

    .iziToast-close:hover {
        opacity: 1 !important;
        background: #f3f3f3 !important;
    }

    /* Progress bar */
    .iziToast-progressbar {
        height: 2px !important;
        background: #f0f0f0 !important;
    }

    .iziToast-progressbar>div {
        background: #639922 !important;
        border-radius: 0 1px 1px 0 !important;
    }

    .iziToast.iziToast-color-red .iziToast-progressbar>div {
        background: #e24b4a !important;
    }

    .iziToast.iziToast-color-blue .iziToast-progressbar>div {
        background: #378add !important;
    }

    .iziToast.iziToast-color-yellow .iziToast-progressbar>div {
        background: #ef9f27 !important;
    }

    .img-style img {
        max-height: 100% !important;
    }

    /* Make all cards equal height */
    .card-product {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Fixed image area */
    .card-product-wrapper {
        position: relative;
        aspect-ratio: 1 / 1;
        /* Square image */
        overflow: hidden;
    }

    /* Images fill the square */
    .card-product-wrapper .image-wrap {
        display: block;
        width: 100%;
        height: 100%;
    }

    .card-product-wrapper .image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Product info takes remaining space */
    .card-product-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 12px;
    }

    /* Optional: make title same height */
    .card-product-info .title {
        /* min-height: 50px; */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* max 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .swiper-slide {
        height: auto !important;
        display: flex;
    }

    .collection-position {
        width: 100%;
        aspect-ratio: 1 / 1;
        /* Square */
        position: relative;
        overflow: hidden;
    }

    /* Image wrapper */
    .collection-position .img-style {
        width: 100%;
        height: 100%;
        display: block;
    }

    /* Image */
    .collection-position .img-style img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* =========================
   COLLECTION SECTION
========================= */

    .cpmlpty-collections-section {
        padding: 100px 0;
        background: #f8f8f8;
    }

    /* Heading */

    .cpmlpty-heading {
        text-align: center;
        margin-bottom: 60px;
    }

    .cpmlpty-subtitle {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #999;
        margin-bottom: 15px;
    }

    .cpmlpty-heading h2 {
        font-size: 52px;
        font-weight: 300;
        margin-bottom: 15px;
        color: #111;
    }

    .cpmlpty-heading p {
        max-width: 650px;
        margin: auto;
        color: #666;
        font-size: 16px;
    }

    /* Grid */

    .cpmlpty-collections-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }

    /* Card */

    .cpmlpty-collection-card {
        position: relative;
        overflow: hidden;
        display: block;
        height: 350px;
        text-decoration: none;
        border-radius: 0;
    }

    .cpmlpty-collection-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        transition: transform .7s ease;
    }

    .cpmlpty-collection-card:hover img {
        transform: scale(1.08);
    }

    /* Overlay */

    .cpmlpty-overlay {
        position: absolute;
        inset: 0;

        background: linear-gradient(to top,
                rgba(0, 0, 0, .65),
                rgba(0, 0, 0, .15),
                transparent);
    }

    /* Content */

    .cpmlpty-content {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .cpmlpty-content h3 {
        color: #fff;
        font-size: 34px;
        font-weight: 300;
        margin: 0;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .cpmlpty-content span {
        display: inline-block;
        margin-top: 10px;

        color: #d8b78a;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* Hover */

    .cpmlpty-collection-card::after {
        content: "";

        position: absolute;
        inset: 0;

        border: 1px solid rgba(255, 255, 255, .3);

        opacity: 0;
        transition: .4s;
    }

    .cpmlpty-collection-card:hover::after {
        opacity: 1;
        inset: 15px;
    }

    /* Tablet */

    @media (max-width: 1200px) {

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

    }

    /* Mobile */

    @media (max-width: 768px) {

        .cpmlpty-collections-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .cpmlpty-collection-card {
            height: 350px;
        }

        .cpmlpty-heading h2 {
            font-size: 36px;
        }

        .cpmlpty-content h3 {
            font-size: 24px;
        }

    }

    a.tf-btn.btn-white.btn-new-white.mx-auto {
        color: #f6f6f6 !important;
        background-color: #000000 !important;
    }

       .cart-item {
        position: relative;
    }

    .delete-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        border: none;
        background: transparent;
        cursor: pointer;
        color: #000;
        font-size: 16px;

        display: flex;
        align-items: center;
        gap: 6px;
    }

    .delete-btn i {
        font-size: 18px;
    }
    .delivery-highlight{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 20px;
    margin-bottom:25px;
    border-radius:16px;
    background:
        linear-gradient(
            135deg,
            #111 0%,
            #292929 100%
        );
    color:#fff;
    position:relative;
    overflow:hidden;
}


.delivery-highlight::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    right:-40px;
    top:-50px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}


.delivery-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}


.delivery-content{
    position:relative;
    z-index:2;
}


.delivery-title{
    font-size:17px;
    font-weight:700;
    margin-bottom:7px;
    letter-spacing:.2px;
}


.delivery-text{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    font-size:13px;
    color:#ddd;
}


.delivery-text span{
    display:flex;
    align-items:center;
    gap:5px;
}


.delivery-text i{
    font-size:15px;
    color:#fff;
}


.delivery-text strong{
    color:#fff;
}


.divider{
    opacity:.5;
}


@media(max-width:600px){

    .delivery-highlight{
        align-items:flex-start;
    }

    .delivery-text{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .divider{
        display:none!important;
    }

}
  /* === SCOPED TO PLP ONLY — won't bleed into master layout === */
    #plp-page {
        all: revert;
        font-family: 'DM Sans', sans-serif;
        color: #1a1a18;
        background: #fafaf8;
    }

    #plp-page *,
    #plp-page *::before,
    #plp-page *::after {
        box-sizing: border-box;
    }

    /* Marquee */
    #plp-page .mq-wrap {
        background: #1a1a18;
        color: #fff;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 9px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    #plp-page .mq-inner {
        display: inline-block;
        animation: plp-mq 30s linear infinite;
    }

    #plp-page .mq-inner span {
        margin-right: 70px;
    }

    @keyframes plp-mq {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    /* Wrapper */
    #plp-page .wrap {
        max-width: 1380px;
        margin: 0 auto;
        padding: 0 28px 80px;
    }

    /* Breadcrumb */
    #plp-page .bc {
        display: flex;
        gap: 6px;
        align-items: center;
        list-style: none;
        font-size: 12px;
        color: #888;
        padding: 16px 0 0;
        margin: 0;
    }

    #plp-page .bc a {
        color: #888;
        text-decoration: none;
    }

    #plp-page .bc a:hover,
    #plp-page .bc .cur {
        color: #1a1a18;
    }

    #plp-page .bc .sep {
        color: #ccc;
    }

    /* Header */
    #plp-page .plp-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
        padding: 22px 0 20px;
        border-bottom: 1px solid #e8e6e1;
        margin-bottom: 28px;
    }

    #plp-page .plp-head h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(26px, 3.5vw, 38px);
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 1.1;
        margin: 0;
    }

    #plp-page .plp-head .sub {
        font-size: 12px;
        color: #888;
        margin-top: 4px;
    }

    #plp-page .sort-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #plp-page .sort-row label {
        font-size: 12px;
        color: #888;
    }

    #plp-page .sort-sel {
        appearance: none;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E") no-repeat right 9px center;
        border: 1px solid #e0deda;
        border-radius: 4px;
        padding: 7px 28px 7px 11px;
        font-size: 12px;
        font-family: inherit;
        color: #1a1a18;
        cursor: pointer;
    }

    #plp-page .sort-sel:focus {
        outline: none;
        border-color: #1a1a18;
    }

    #plp-page .btn-filter-mob {
        display: none;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        background: #fff;
        border: 1px solid #e0deda;
        border-radius: 4px;
        padding: 7px 12px;
        cursor: pointer;
        font-family: inherit;
        color: #1a1a18;
    }

    /* Body layout */
    #plp-page .plp-body {
        display: grid !important;
        grid-template-columns: 210px 1fr !important;
        gap: 32px;
        align-items: start;
    }

    /* Sidebar */
    #plp-page .sidebar {
        position: sticky;
        top: 20px;
    }

    #plp-page .sb-sec {
        border-bottom: 1px solid #e8e6e1;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    #plp-page .sb-sec:last-of-type {
        border-bottom: none;
    }

    #plp-page .sb-title {
        font-size: 10px;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: #999;
        font-weight: 500;
        margin: 0 0 11px;
    }

    #plp-page .f-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    #plp-page .f-list label {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 13px;
        cursor: pointer;
        color: #1a1a18;
    }

    #plp-page .f-list input[type=checkbox] {
        width: 14px;
        height: 14px;
        accent-color: #1a1a18;
        cursor: pointer;
        flex-shrink: 0;
        margin: 0;
    }

    #plp-page .f-count {
        font-size: 11px;
        color: #aaa;
        margin-left: auto;
    }

    #plp-page .pr-row {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    #plp-page .pr-inp {
        width: 82px;
        appearance: none;
        border: 1px solid #e0deda;
        border-radius: 4px;
        padding: 7px 9px;
        font-size: 12px;
        font-family: inherit;
        color: #1a1a18;
        background: #fff;
    }

    #plp-page .pr-inp:focus {
        outline: none;
        border-color: #1a1a18;
    }

    #plp-page .pr-sep {
        font-size: 12px;
        color: #aaa;
    }

    #plp-page .swatches {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    #plp-page .swatch {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        transition: .2s;
        flex-shrink: 0;
    }

    #plp-page .swatch:hover,
    #plp-page .swatch.on {
        border-color: #1a1a18;
        transform: scale(1.12);
    }

    #plp-page .btn-apply {
        display: block;
        width: 100%;
        padding: 10px;
        background: #1a1a18;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        font-family: inherit;
        margin-top: 8px;
        transition: background .2s;
    }

    #plp-page .btn-apply:hover {
        background: #333;
    }

    /* Product grid — 4 columns, FORCED */
    #plp-page .pgrid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }

    /* Card */
    #plp-page .pcard {
        background: #fff;
        overflow: hidden;
        border: 1px solid #f0eeea;
        transition: box-shadow .22s, transform .22s;
        position: relative;
    }

    #plp-page .pcard:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
        transform: translateY(-2px);
    }

    /* Image */
    #plp-page .cimg {
        position: relative;
        overflow: hidden;
        /* aspect-ratio: 4/5; */
        background: #f3f2ee;
        display: block;
    }

    #plp-page .cimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity .22s, transform .4s;
    }

    #plp-page .cimg .ih {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: scale(1.04);
    }

    #plp-page .pcard:hover .ih {
        opacity: 1;
        transform: scale(1);
    }

    #plp-page .pcard:hover .ip {
        opacity: 0;
    }

    /* Badges */
    #plp-page .b-sale {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #c0392b;
        color: #fff;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 3px 7px;
        border-radius: 3px;
        z-index: 2;
    }

    #plp-page .b-oos {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(0, 0, 0, .5);
        color: #fff;
        font-size: 9px;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 3px 7px;
        border-radius: 3px;
        z-index: 2;
    }

    /* Wishlist */
    #plp-page .btn-wl {
        position: absolute;
        top: 9px;
        right: 9px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        transition: .2s;
    }

    #plp-page .btn-wl:hover {
        background: #fff;
        transform: scale(1.1);
    }

    #plp-page .btn-wl svg {
        width: 15px;
        height: 15px;
        stroke: #999;
        fill: none;
        stroke-width: 1.8;
        transition: .2s;
    }

    #plp-page .btn-wl:hover svg,
    #plp-page .btn-wl.on svg {
        stroke: #c0392b;
        fill: #c0392b;
    }

    /* Quick view overlay */
    #plp-page .c-ov {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 10px 10px;
        opacity: 0;
        transform: translateY(5px);
        transition: .2s;
        z-index: 3;
    }

    #plp-page .pcard:hover .c-ov {
        opacity: 1;
        transform: translateY(0);
    }

    #plp-page .btn-qv {
        width: 100%;
        padding: 9px;
        background: rgba(255, 255, 255, .96);
        border: none;
        border-radius: 3px;
        font-size: 10px;
        letter-spacing: .09em;
        text-transform: uppercase;
        font-family: inherit;
        font-weight: 500;
        cursor: pointer;
        color: #1a1a18;
        transition: .2s;
    }

    #plp-page .btn-qv:hover {
        background: #fff;
    }

    /* Card info */
    #plp-page .cinfo {
        padding: 11px 12px 13px;
    }

    #plp-page .cname {
        font-size: 13px;
        color: #1a1a18;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color .2s;
    }

    #plp-page .cname:hover {
        color: #444;
    }

    #plp-page .cprice {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    #plp-page .p-cur {
        font-size: 14px;
        font-weight: 500;
        color: #1a1a18;
    }

    #plp-page .p-old {
        font-size: 11px;
        color: #aaa;
        text-decoration: line-through;
    }

    #plp-page .p-sale {
        color: #c0392b;
    }

    /* Add to cart */
    #plp-page .btn-atc {
        display: block;
        width: calc(100% - 24px);
        margin: 0 12px 12px;
        padding: 9px 0;
        background: transparent;
        border: 1px solid #d0cec9;
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-family: inherit;
        font-weight: 500;
        color: #1a1a18;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        transition: .2s;
    }

    #plp-page .btn-atc:hover {
        background: #1a1a18;
        border-color: #1a1a18;
        color: #fff;
    }

    /* OOS overlay */
    #plp-page .pcard.oos .cimg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .45);
        z-index: 1;
    }

    /* Pagination */
    #plp-page .pgn {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 36px;
    }

    #plp-page .pgn a,
    #plp-page .pgn span {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e8e6e1;
        border-radius: 3px;
        font-size: 13px;
        color: #1a1a18;
        text-decoration: none;
        transition: .2s;
    }

    #plp-page .pgn a:hover,
    #plp-page .pgn a.on {
        background: #1a1a18;
        border-color: #1a1a18;
        color: #fff;
    }

    #plp-page .pgn .dim {
        opacity: .3;
        cursor: default;
        pointer-events: none;
    }

    /* Quick View Modal */
    #plp-page .qv-bd {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .52);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    #plp-page .qv-bd.open {
        display: flex;
    }

    #plp-page .qv-box {
        background: #fff;
        border-radius: 10px;
        max-width: 740px;
        width: 92%;
        max-height: 88vh;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    }

    #plp-page .qv-img {
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        width: 100%;
        display: block;
        background: #f3f2ee;
    }

    #plp-page .qv-body {
        padding: 30px 26px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    #plp-page .qv-name {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.25;
        margin: 0;
    }

    #plp-page .qv-pr {
        font-size: 17px;
        font-weight: 500;
    }

    #plp-page .qv-pr .old {
        font-size: 13px;
        color: #aaa;
        text-decoration: line-through;
        margin-left: 5px;
    }

    #plp-page .qv-pr .sale {
        color: #c0392b;
    }

    #plp-page .qv-line {
        height: 1px;
        background: #e8e6e1;
    }

    #plp-page .qv-desc {
        font-size: 13px;
        color: #888;
        line-height: 1.7;
    }

    #plp-page .qv-acts {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-top: auto;
    }

    #plp-page .btn-qvc {
        padding: 12px;
        background: #1a1a18;
        color: #fff;
        border: none;
        border-radius: 3px;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        font-family: inherit;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: .2s;
    }

    #plp-page .btn-qvc:hover {
        background: #333;
    }

    #plp-page .btn-qvd {
        padding: 11px;
        background: transparent;
        color: #1a1a18;
        border: 1px solid #d0cec9;
        border-radius: 3px;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        font-family: inherit;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: .2s;
    }

    #plp-page .btn-qvd:hover {
        border-color: #1a1a18;
    }

    #plp-page .btn-close {
        position: absolute;
        top: 11px;
        right: 11px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f3f2ee;
        border: 1px solid #e8e6e1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        color: #888;
        transition: .2s;
        line-height: 1;
    }

    #plp-page .btn-close:hover {
        background: #e8e6e1;
    }

    /* Responsive */
    @media(max-width:1100px) {
        #plp-page .pgrid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }

    @media(max-width:860px) {
        #plp-page .plp-body {
            grid-template-columns: 1fr !important;
        }

        #plp-page .sidebar {
            position: static;
            display: none;
        }

        #plp-page .sidebar.open {
            display: block;
            background: #fff;
            border: 1px solid #e8e6e1;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }

        #plp-page .btn-filter-mob {
            display: flex;
        }

        #plp-page .pgrid {
            grid-template-columns: repeat(2, 1fr) !important;
        }

        #plp-page .qv-box {
            grid-template-columns: 1fr;
        }

        #plp-page .qv-img {
            border-radius: 10px 10px 0 0;
            aspect-ratio: 16/9;
        }
    }

    @media(max-width:480px) {
        #plp-page .pgrid {
            gap: 10px !important;
        }

        #plp-page .wrap {
            padding: 0 14px 60px;
        }
    }
    /* Grid */
.nyz-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}
.header-default{
    height: 84px !important;
}
.header-default .container-full{
    height: 84px !important;
}
/* Equal Height Card */
/* Tablet */

@media(max-width:992px){

    .nyvz-category-scroll{

        gap:28px;

    }

    .nyvz-category-scroll a{

        font-size:16px;

        padding:16px 0;

    }

}

/* Mobile */

@media(max-width:768px){

    .nyvz-category-navbar{

        overflow:hidden;

    }

    .nyvz-category-scroll{

        padding:0 15px;

        gap:22px;

        overflow-x:auto;

        scroll-behavior:smooth;

        -webkit-overflow-scrolling:touch;

    }

    .nyvz-category-scroll a{

        font-size:15px;

        padding:14px 0;

    }

}

/* Small Mobile */

@media(max-width:480px){

    .nyvz-category-scroll{

        gap:18px;

    }

    .nyvz-category-scroll a{

        font-size:14px;

        padding:12px 0;

    }

}
.nyz-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #ececec;
    height:100%;
    transition:.3s;
}

.nyz-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Image */
.nyz-image-wrap{
    position:relative;
    overflow:hidden;
    background:#f8f8f8;
    aspect-ratio:5/5;      /* Same image height */
}
.nyz-image-wrap-slide{
    position:relative;
    overflow:hidden;
    background:#f8f8f8;
    aspect-ratio:4/5 !important;      /* Same image height */
}

.nyz-image,
.nyz-hover-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.nyz-hover-image{
    position:absolute;
    inset:0;
    opacity:0;
    transition:.35s;
}

.nyz-card:hover .nyz-hover-image{
    opacity:1;
}

.nyz-card:hover .nyz-image{
    opacity:0;
}

/* Content */
.nyz-content{
    padding:14px;
    flex:1;
    display:flex;
    flex-direction:column;
}

/* Smaller title */
.nyz-title{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    line-height:1.4;
    min-height:45px;      /* Same title height */
    margin-bottom:10px;
}

/* Price */
.nyz-price{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
}

.nyz-sale-price{
    color:#d64b34;
    font-size:18px;
    font-weight:700;
}

.nyz-old-price{
    color:#9a9a9a;
    text-decoration:line-through;
    font-size:14px;
}

/* Button */
.nyz-btn{
    display:block;
    margin:0 14px 14px;
    padding:12px;
    border:1px solid #ddd;
    text-align:center;
    text-decoration:none;
    color:#222;
    font-size:13px;
    font-weight:500;
    letter-spacing:.8px;
    transition:.3s;
}

.nyz-btn:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}
.nyvz-featured-categories{
    padding:90px 0;
    background:#fff;
}

.nyvz-featured-heading{
    text-align:center;
    margin-bottom:60px;
}

.nyvz-featured-heading span{
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
}

.nyvz-featured-heading h2{
    font-size:48px;
    margin:12px 0;
    font-weight:400;
}

.nyvz-featured-heading p{
    color:#666;
}

.nyvz-featured-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.nyvz-featured-card{
    background:#fff;
    border:1px solid #ececec;
    text-decoration:none;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:410px;          /* Same height for every card */
    transition:.35s;
}

.nyvz-featured-card h3{
    font-size:18px;
    font-weight:500;
    line-height:1.5;
    color:#111;
    margin:0;
    min-height:60px;       /* Reserve space for 2 lines */
    display:flex;
    align-items:flex-start;
}
.nyvz-featured-image{
    height:220px;          /* Same height for every card */
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin:20px 0;
}

.nyvz-featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;      /* All images same height */
    transition:.4s ease;
}

.nyvz-featured-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:auto;
}
.nyvz-featured-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}



.nyvz-featured-card:hover img{

    transform:scale(1.08);
}


.nyvz-featured-footer span{

    color:#888;

    font-size:14px;
}

.nyvz-featured-footer small{

    color:#111;

    font-weight:600;
}
/* Badge */
.nyz-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#d84a33;
    color:#fff;
    padding:6px 10px;
    font-size:11px;
    font-weight:600;
    border-radius:2px;
    z-index: 9 !important;
}
/* Large Desktop */
@media (max-width:1400px){

    .nyvz-featured-grid{
        grid-template-columns:repeat(5,1fr);
    }

}

/* Laptop */
@media (max-width:1200px){

    .nyvz-featured-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/* Tablet */
@media (max-width:992px){

    .nyvz-featured-grid{
        grid-template-columns:repeat(3,1fr);
        gap:18px;
    }

    .nyvz-featured-card{
        height:440px;
        padding:20px;
    }

    .nyvz-featured-image{
        height:240px;
    }

    .nyvz-featured-card h3{
        font-size:18px;
        min-height:48px;
    }

}

/* Mobile */
@media (max-width:767px){

    .nyvz-featured-categories{
        padding:60px 0;
    }

    .nyvz-featured-heading{
        margin-bottom:35px;
        padding:0 15px;
    }

    .nyvz-featured-heading span{
        font-size:11px;
        letter-spacing:2px;
    }

    .nyvz-featured-heading h2{
        font-size:30px;
        margin:10px 0;
    }

    .nyvz-featured-heading p{
        font-size:14px;
        line-height:1.6;
    }

    .nyvz-featured-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .nyvz-featured-card{
        height:330px;
        padding:14px;
    }

    .nyvz-featured-card h3{
        font-size:16px;
        line-height:1.4;
        min-height:44px;
    }

    .nyvz-featured-image{
        height:170px;
        margin:15px 0;
    }

    .nyvz-featured-image img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .nyvz-featured-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

    .nyvz-featured-footer span{
        font-size:13px;
    }

    .nyvz-featured-footer small{
        font-size:14px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .nyvz-featured-grid{
        gap:10px;
    }

    .nyvz-featured-card{
        height:300px;
        padding:12px;
    }

    .nyvz-featured-card h3{
        font-size:15px;
        min-height:40px;
    }

    .nyvz-featured-image{
        height:150px;
    }

    .nyvz-featured-footer span,
    .nyvz-featured-footer small{
        font-size:12px;
    }

}
/* Wishlist */
.nyz-wishlist{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
    cursor:pointer;
}

.nyz-wishlist svg{
    width:16px;
    height:16px;
}

/* Responsive */
@media (max-width:991px){
    .nyz-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:576px){
    .nyz-grid{
        grid-template-columns:1fr;
    }

    .nyz-title{
        font-size:15px;
    }

    .nyz-sale-price{
        font-size:17px;
    }
}
    .productMainSwiper {
        width: 100%;
        height: 600px;
        margin-bottom: 15px;
    }

    .productMainSwiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .productThumbSwiper {
        height: 100px;
    }

    .productThumbSwiper .swiper-slide {
        cursor: pointer;
        opacity: .5;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }

    .productThumbSwiper .swiper-slide-thumb-active {
        opacity: 1;
        border: 2px solid #000;
    }

    .productThumbSwiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .prodcut-related-image {
        width: 12%;
        height: auto;
        margin-right: 10px;
    }

    .size-btn-new {
        background: #fff;
        color: #000;
        border: 1px solid #000;
        cursor: pointer;
        padding: 8px 16px;
        transition: .3s;
    }

    .size-btn-new.active {
        background: #000;
        color: #fff;
    }


    .product-quantity-box {
        margin: 20px 0;
    }

    .quantity-label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .quantity-wrapper {
        display: inline-flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }

    .qty-btn {
        width: 45px;
        height: 45px;
        border: none;
        background: #f7f7f7;
        font-size: 22px;
        font-weight: 600;
        cursor: pointer;
        transition: .3s;
    }

    .qty-btn:hover {
        background: #111;
        color: #fff;
    }

    .quantity-input {
        width: 60px;
        height: 45px;
        border: none;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        background: #fff;
        outline: none;
    }

    .productMainSwiper {
        background: #f8f8f8 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        aspect-ratio: 4 / 5 !important;
    }

    .productMainSwiper .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 30px !important;
    }

    .productMainSwiper .swiper-slide img {
        width: auto !important;
        height: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
        transition: .3s ease !important;
        background: black;
    }

    .productMainSwiper .swiper-slide img:hover {
        transform: scale(1.03) !important;
    }

    .productMainSwiper .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        /* adjust as needed */
        overflow: hidden !important;
    }

    .productMainSwiper .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        /* instead of cover */
    }


    /* === SCOPED TO PLP ONLY — won't bleed into master layout === */
    #plp-page {
        all: revert;
        font-family: 'DM Sans', sans-serif;
        color: #1a1a18;
        background: #fafaf8;
    }

    #plp-page *,
    #plp-page *::before,
    #plp-page *::after {
        box-sizing: border-box;
    }

    /* Marquee */
    #plp-page .mq-wrap {
        background: #1a1a18;
        color: #fff;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 9px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    #plp-page .mq-inner {
        display: inline-block;
        animation: plp-mq 30s linear infinite;
    }

    #plp-page .mq-inner span {
        margin-right: 70px;
    }

    @keyframes plp-mq {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    /* Wrapper */
    #plp-page .wrap {
        max-width: 1380px;
        margin: 0 auto;
        padding: 0 28px 80px;
    }

    /* Breadcrumb */
    #plp-page .bc {
        display: flex;
        gap: 6px;
        align-items: center;
        list-style: none;
        font-size: 12px;
        color: #888;
        padding: 16px 0 0;
        margin: 0;
    }

    #plp-page .bc a {
        color: #888;
        text-decoration: none;
    }

    #plp-page .bc a:hover,
    #plp-page .bc .cur {
        color: #1a1a18;
    }

    #plp-page .bc .sep {
        color: #ccc;
    }

    /* Header */
    #plp-page .plp-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
        padding: 22px 0 20px;
        border-bottom: 1px solid #e8e6e1;
        margin-bottom: 28px;
    }

    #plp-page .plp-head h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(26px, 3.5vw, 38px);
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 1.1;
        margin: 0;
    }

    #plp-page .plp-head .sub {
        font-size: 12px;
        color: #888;
        margin-top: 4px;
    }

    #plp-page .sort-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #plp-page .sort-row label {
        font-size: 12px;
        color: #888;
    }

    #plp-page .sort-sel {
        appearance: none;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E") no-repeat right 9px center;
        border: 1px solid #e0deda;
        border-radius: 4px;
        padding: 7px 28px 7px 11px;
        font-size: 12px;
        font-family: inherit;
        color: #1a1a18;
        cursor: pointer;
    }

    #plp-page .sort-sel:focus {
        outline: none;
        border-color: #1a1a18;
    }

    #plp-page .btn-filter-mob {
        display: none;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        background: #fff;
        border: 1px solid #e0deda;
        border-radius: 4px;
        padding: 7px 12px;
        cursor: pointer;
        font-family: inherit;
        color: #1a1a18;
    }

    /* Body layout */
    #plp-page .plp-body {
        display: grid !important;
        grid-template-columns: 210px 1fr !important;
        gap: 32px;
        align-items: start;
    }

    /* Sidebar */
    #plp-page .sidebar {
        position: sticky;
        top: 20px;
    }

    #plp-page .sb-sec {
        border-bottom: 1px solid #e8e6e1;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    #plp-page .sb-sec:last-of-type {
        border-bottom: none;
    }

    #plp-page .sb-title {
        font-size: 10px;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: #999;
        font-weight: 500;
        margin: 0 0 11px;
    }

    #plp-page .f-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    #plp-page .f-list label {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 13px;
        cursor: pointer;
        color: #1a1a18;
    }

    #plp-page .f-list input[type=checkbox] {
        width: 14px;
        height: 14px;
        accent-color: #1a1a18;
        cursor: pointer;
        flex-shrink: 0;
        margin: 0;
    }

    #plp-page .f-count {
        font-size: 11px;
        color: #aaa;
        margin-left: auto;
    }

    #plp-page .pr-row {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    #plp-page .pr-inp {
        width: 82px;
        appearance: none;
        border: 1px solid #e0deda;
        border-radius: 4px;
        padding: 7px 9px;
        font-size: 12px;
        font-family: inherit;
        color: #1a1a18;
        background: #fff;
    }

    #plp-page .pr-inp:focus {
        outline: none;
        border-color: #1a1a18;
    }

    #plp-page .pr-sep {
        font-size: 12px;
        color: #aaa;
    }

    #plp-page .swatches {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    #plp-page .swatch {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        transition: .2s;
        flex-shrink: 0;
    }

    #plp-page .swatch:hover,
    #plp-page .swatch.on {
        border-color: #1a1a18;
        transform: scale(1.12);
    }

    #plp-page .btn-apply {
        display: block;
        width: 100%;
        padding: 10px;
        background: #1a1a18;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        font-family: inherit;
        margin-top: 8px;
        transition: background .2s;
    }

    #plp-page .btn-apply:hover {
        background: #333;
    }

    /* Product grid — 4 columns, FORCED */
    #plp-page .pgrid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }

    /* Card */
    #plp-page .pcard {
        background: #fff;
        overflow: hidden;
        border: 1px solid #f0eeea;
        transition: box-shadow .22s, transform .22s;
        position: relative;
    }

    #plp-page .pcard:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
        transform: translateY(-2px);
    }

    /* Image */
    #plp-page .cimg {
        position: relative;
        overflow: hidden;
        /* aspect-ratio: 4/5; */
        background: #f3f2ee;
        display: block;
    }

    #plp-page .cimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity .22s, transform .4s;
    }

    #plp-page .cimg .ih {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: scale(1.04);
    }

    #plp-page .pcard:hover .ih {
        opacity: 1;
        transform: scale(1);
    }

    #plp-page .pcard:hover .ip {
        opacity: 0;
    }

    /* Badges */
    #plp-page .b-sale {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #c0392b;
        color: #fff;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 3px 7px;
        border-radius: 3px;
        z-index: 2;
    }

    #plp-page .b-oos {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(0, 0, 0, .5);
        color: #fff;
        font-size: 9px;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 3px 7px;
        border-radius: 3px;
        z-index: 2;
    }
    .nyvz-popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999999;

}

.nyvz-popup-overlay.show{

    display:flex;

}

.nyvz-popup{

    width:900px;

    max-width:92%;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    position:relative;

    animation:popupScale .4s ease;

}

@keyframes popupScale{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

.nyvz-popup-left img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.nyvz-popup-right{

    padding:55px;

}

.nyvz-popup-tag{

    display:inline-block;

    background:#f5f5f5;

    padding:8px 18px;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.nyvz-popup-right h2{

    font-size:42px;

    margin-bottom:10px;

}

.nyvz-popup-right h3{

    font-size:24px;

    margin-bottom:20px;

}

.nyvz-popup-right h3 span{

    color:#ff6b57;

}

.nyvz-popup-right p{

    color:#666;

    margin-bottom:25px;

}

.nyvz-popup-right ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.nyvz-popup-right li{

    margin-bottom:12px;

    font-size:17px;

}

.nyvz-popup-btn{

    display:inline-block;

    background:#111;

    color:#fff;

    padding:14px 34px;

    text-decoration:none;

    border-radius:4px;

}

.nyvz-popup-close{

    position:absolute;

    right:18px;

    top:18px;

    width:40px;

    height:40px;

    border:none;

    background:#fff;

    border-radius:50%;

    cursor:pointer;

    font-size:24px;

}
@media(max-width:768px){

    .nyvz-popup{

        grid-template-columns:1fr;

        width:95%;

    }

    .nyvz-popup-left{

        height:240px;

    }

    .nyvz-popup-right{

        padding:30px 25px;

        text-align:center;

    }

    .nyvz-popup-right h2{

        font-size:28px;

    }

    .nyvz-popup-right h3{

        font-size:20px;

    }

    .nyvz-popup-right ul{

        text-align:left;

        display:inline-block;

    }

}

    /* Wishlist */
    #plp-page .btn-wl {
        position: absolute;
        top: 9px;
        right: 9px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        transition: .2s;
    }

    #plp-page .btn-wl:hover {
        background: #fff;
        transform: scale(1.1);
    }

    #plp-page .btn-wl svg {
        width: 15px;
        height: 15px;
        stroke: #999;
        fill: none;
        stroke-width: 1.8;
        transition: .2s;
    }

    #plp-page .btn-wl:hover svg,
    #plp-page .btn-wl.on svg {
        stroke: #c0392b;
        fill: #c0392b;
    }

    /* Quick view overlay */
    #plp-page .c-ov {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 10px 10px;
        opacity: 0;
        transform: translateY(5px);
        transition: .2s;
        z-index: 3;
    }

    #plp-page .pcard:hover .c-ov {
        opacity: 1;
        transform: translateY(0);
    }

    #plp-page .btn-qv {
        width: 100%;
        padding: 9px;
        background: rgba(255, 255, 255, .96);
        border: none;
        border-radius: 3px;
        font-size: 10px;
        letter-spacing: .09em;
        text-transform: uppercase;
        font-family: inherit;
        font-weight: 500;
        cursor: pointer;
        color: #1a1a18;
        transition: .2s;
    }

    #plp-page .btn-qv:hover {
        background: #fff;
    }

    /* Card info */
    #plp-page .cinfo {
        padding: 11px 12px 13px;
    }

    #plp-page .cname {
        font-size: 13px;
        color: #1a1a18;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color .2s;
    }

    #plp-page .cname:hover {
        color: #444;
    }

    #plp-page .cprice {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    #plp-page .p-cur {
        font-size: 14px;
        font-weight: 500;
        color: #1a1a18;
    }

    #plp-page .p-old {
        font-size: 11px;
        color: #aaa;
        text-decoration: line-through;
    }

    #plp-page .p-sale {
        color: #c0392b;
    }

    /* Add to cart */
    #plp-page .btn-atc {
        display: block;
        width: calc(100% - 24px);
        margin: 0 12px 12px;
        padding: 9px 0;
        background: transparent;
        border: 1px solid #d0cec9;
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-family: inherit;
        font-weight: 500;
        color: #1a1a18;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        transition: .2s;
    }

    #plp-page .btn-atc:hover {
        background: #1a1a18;
        border-color: #1a1a18;
        color: #fff;
    }

    /* OOS overlay */
    #plp-page .pcard.oos .cimg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .45);
        z-index: 1;
    }

    /* Pagination */
    #plp-page .pgn {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 36px;
    }

    #plp-page .pgn a,
    #plp-page .pgn span {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e8e6e1;
        border-radius: 3px;
        font-size: 13px;
        color: #1a1a18;
        text-decoration: none;
        transition: .2s;
    }

    #plp-page .pgn a:hover,
    #plp-page .pgn a.on {
        background: #1a1a18;
        border-color: #1a1a18;
        color: #fff;
    }

    #plp-page .pgn .dim {
        opacity: .3;
        cursor: default;
        pointer-events: none;
    }

    /* Quick View Modal */
    #plp-page .qv-bd {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .52);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    #plp-page .qv-bd.open {
        display: flex;
    }

    #plp-page .qv-box {
        background: #fff;
        border-radius: 10px;
        max-width: 740px;
        width: 92%;
        max-height: 88vh;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    }

    #plp-page .qv-img {
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        width: 100%;
        display: block;
        background: #f3f2ee;
    }

    #plp-page .qv-body {
        padding: 30px 26px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    #plp-page .qv-name {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.25;
        margin: 0;
    }

    #plp-page .qv-pr {
        font-size: 17px;
        font-weight: 500;
    }

    #plp-page .qv-pr .old {
        font-size: 13px;
        color: #aaa;
        text-decoration: line-through;
        margin-left: 5px;
    }

    #plp-page .qv-pr .sale {
        color: #c0392b;
    }

    #plp-page .qv-line {
        height: 1px;
        background: #e8e6e1;
    }

    #plp-page .qv-desc {
        font-size: 13px;
        color: #888;
        line-height: 1.7;
    }

    #plp-page .qv-acts {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-top: auto;
    }

    #plp-page .btn-qvc {
        padding: 12px;
        background: #1a1a18;
        color: #fff;
        border: none;
        border-radius: 3px;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        font-family: inherit;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: .2s;
    }

    #plp-page .btn-qvc:hover {
        background: #333;
    }

    #plp-page .btn-qvd {
        padding: 11px;
        background: transparent;
        color: #1a1a18;
        border: 1px solid #d0cec9;
        border-radius: 3px;
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        font-family: inherit;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: .2s;
    }

    #plp-page .btn-qvd:hover {
        border-color: #1a1a18;
    }

    #plp-page .btn-close {
        position: absolute;
        top: 11px;
        right: 11px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f3f2ee;
        border: 1px solid #e8e6e1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        color: #888;
        transition: .2s;
        line-height: 1;
    }

    #plp-page .btn-close:hover {
        background: #e8e6e1;
    }

    /* Responsive */
    @media(max-width:1100px) {
        #plp-page .pgrid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }

    @media(max-width:860px) {
        #plp-page .plp-body {
            grid-template-columns: 1fr !important;
        }

        #plp-page .sidebar {
            position: static;
            display: none;
        }

        #plp-page .sidebar.open {
            display: block;
            background: #fff;
            border: 1px solid #e8e6e1;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }

        #plp-page .btn-filter-mob {
            display: flex;
        }

        #plp-page .pgrid {
            grid-template-columns: repeat(2, 1fr) !important;
        }

        #plp-page .qv-box {
            grid-template-columns: 1fr;
        }

        #plp-page .qv-img {
            border-radius: 10px 10px 0 0;
            aspect-ratio: 16/9;
        }
    }

    @media(max-width:480px) {
        #plp-page .pgrid {
            gap: 10px !important;
        }

        #plp-page .wrap {
            padding: 0 14px 60px;
        }
    }
