:root {
    --zp-navy: #071225;
    --zp-navy-2: #0c1a33;
    --zp-orange: #ff6b16;
    --zp-orange-2: #ff8a1f;
    --zp-blue: #1d6bff;
    --zp-green: #0e9f57;
    --zp-red: #e33d35;
    --zp-bg: #f5f7fb;
    --zp-card: #ffffff;
    --zp-text: #111827;
    --zp-muted: #6b7280;
    --zp-border: #e8edf5;
    --zp-shadow: 0 14px 45px rgba(15, 23, 42, 0.09);
    --zp-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.07);
    --zp-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--zp-text);
    font-family: 'Inter', Arial, sans-serif;
    background: var(--zp-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.zp-container {
    width: min(100% - 40px, 1440px);
    margin: 0 auto;
}

/* Header */
.zp-site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 8px 30px rgba(8, 18, 37, 0.10);
}

.zp-top-strip,
.zp-main-header {
    background: var(--zp-navy);
    color: #fff;
}

.zp-top-strip {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zp-top-strip-inner,
.zp-main-header-inner,
.zp-nav-inner {
    display: flex;
    align-items: center;
}

.zp-top-strip-inner {
    height: 36px;
    justify-content: space-between;
    font-size: 13px;
}

.zp-location,
.zp-top-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

    .zp-location i:first-child {
        color: #fff;
    }

    .zp-top-links a {
        opacity: .9;
        padding: 0 14px;
        border-right: 1px solid rgba(255,255,255,.18);
    }

        .zp-top-links a:last-child {
            border-right: 0;
            padding-right: 0;
        }

        .zp-top-links a:hover {
            color: var(--zp-orange);
        }

.zp-main-header-inner {
    min-height: 78px;
    gap: 28px;
}

.zp-logo {
    display: inline-flex;
    align-items: baseline;
    font-weight: 800;
    font-size: 31px;
    letter-spacing: -1px;
    min-width: 204px;
}

    .zp-logo span {
        color: #fff;
    }

    .zp-logo strong {
        color: var(--zp-orange);
    }

.zp-search-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 170px 126px;
    align-items: center;
    flex: 1;
    height: 52px;
    max-width: 840px;
    border-radius: 9px;
    background: #fff;
    overflow: visible;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 16px 35px rgba(0,0,0,.08);
}

.zp-search-input,
.zp-search-category {
    height: 100%;
    border: 0;
    background: transparent;
    color: #111827;
    outline: 0;
}

.zp-search-input {
    padding: 0 22px;
    font-size: 15px;
}

.zp-search-category {
    padding: 0 16px;
    border-left: 1px solid var(--zp-border);
    color: #4b5563;
}

.zp-search-btn {
    height: 52px;
    border: 0;
    background: linear-gradient(135deg, var(--zp-orange), var(--zp-orange-2));
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0 9px 9px 0;
}

.zp-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    background: #fff;
    border: 1px solid var(--zp-border);
    border-radius: 14px;
    box-shadow: var(--zp-shadow);
    max-height: 420px;
    overflow: auto;
    padding: 10px;
    z-index: 1050;
}

    .zp-search-results.show {
        display: block;
    }

.zp-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    color: var(--zp-text);
}

    .zp-search-item:hover {
        background: #f3f6fb;
    }

    .zp-search-item img {
        width: 54px;
        height: 54px;
        object-fit: contain;
        border-radius: 10px;
        background: #f7f8fb;
    }

    .zp-search-item span {
        display: grid;
        gap: 3px;
    }

    .zp-search-item b {
        font-size: 14px;
        font-weight: 700;
    }

    .zp-search-item small {
        color: var(--zp-orange);
        font-weight: 800;
    }

.zp-search-empty {
    color: var(--zp-muted);
    padding: 16px;
    text-align: center;
}

.zp-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.zp-account-btn,
.zp-cart-btn {
    background: transparent;
    border: 0;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.zp-account-btn {
    gap: 10px;
    padding: 0;
}

.zp-user-circle {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
}

.zp-user-profile-link {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, #1d6bff, #6b5cff);
}

.zp-account-text {
    display: grid;
    line-height: 1.1;
    text-align: left;
}

    .zp-account-text small {
        font-size: 11px;
        opacity: .78;
    }

    .zp-account-text b {
        font-size: 14px;
    }

.zp-account-menu {
    min-width: 185px;
    padding: 10px;
    border: 0;
    border-radius: 14px;
    box-shadow: var(--zp-shadow);
}

    .zp-account-menu .dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 9px;
        padding: 10px 12px;
        font-weight: 600;
    }

        .zp-account-menu .dropdown-item:hover {
            background: #f3f6fb;
            color: var(--zp-orange);
        }

.zp-cart-btn {
    position: relative;
    gap: 8px;
    font-weight: 700;
    border-left: 1px solid rgba(255,255,255,.16);
    padding-left: 18px;
}

    .zp-cart-btn i {
        font-size: 30px;
    }

.zp-cart-count {
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--zp-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.zp-nav-bar {
    background: #fff;
    border-bottom: 1px solid var(--zp-border);
}

.zp-nav-inner {
    min-height: 48px;
    gap: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .zp-nav-inner::-webkit-scrollbar {
        display: none;
    }

.zp-all-categories {
    min-width: 170px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #111827;
    border-right: 1px solid var(--zp-border);
    padding-right: 28px;
}

.zp-nav-inner a {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

    .zp-nav-inner a:hover {
        color: var(--zp-orange);
    }

/* Main shell */
.zp-home-shell {
    padding: 26px 0 34px;
}

/* Hero */
.zp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 22px;
}

.zp-hero-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--zp-radius);
    color: #fff;
    background: radial-gradient(circle at 74% 66%, rgba(69, 137, 255, .40), transparent 30%), linear-gradient(135deg, #06152f 0%, #092859 55%, #061327 100%);
    box-shadow: var(--zp-shadow);
    display: grid;
    grid-template-columns: minmax(320px, 48%) 1fr;
    align-items: center;
    isolation: isolate;
}

    .zp-hero-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: conic-gradient(from 90deg, transparent, rgba(255,255,255,.16), transparent 16%, transparent 100%);
        animation: zp-glow-spin 12s linear infinite;
        z-index: -1;
    }

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

.zp-hero-copy {
    padding: 56px 42px;
}

.zp-badge {
    display: inline-flex;
    align-items: center;
    background: var(--zp-orange);
    color: #fff;
    border-radius: 7px;
    padding: 7px 12px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 16px;
}

.zp-hero-copy h1 {
    margin: 0;
    font-weight: 850;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.zp-hero-copy p {
    max-width: 360px;
    margin: 18px 0 24px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.5;
}

.zp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: 10px;
    background: #fff;
    color: #0b172b;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

    .zp-hero-btn:hover {
        color: var(--zp-orange);
        transform: translateY(-1px);
    }

.zp-hero-dots {
    display: flex;
    gap: 9px;
    margin-top: 26px;
}

    .zp-hero-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,.55);
    }

    .zp-hero-dots .active {
        background: var(--zp-orange);
    }


.zp-hero-real-image {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 42px 34px 10px;
    isolation: isolate;
}

    .zp-hero-real-image::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 36px;
        width: min(78%, 430px);
        height: 78px;
        transform: translateX(-50%);
        border-radius: 50%;
        background: radial-gradient(ellipse at center, rgba(255,255,255,.88), rgba(96,165,250,.22) 58%, transparent 72%);
        filter: blur(1px) drop-shadow(0 22px 35px rgba(0,0,0,.34));
        z-index: -1;
    }

    .zp-hero-real-image::after {
        content: "";
        position: absolute;
        width: 78%;
        max-width: 460px;
        height: 160px;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        border-radius: 999px;
        background: radial-gradient(ellipse at center, rgba(36, 99, 235, .32), transparent 70%);
        filter: blur(22px);
        z-index: -2;
    }

    .zp-hero-real-image img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 560px;
        max-height: 312px;
        object-fit: contain;
        object-position: center;
        filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .32));
        animation: zp-hero-float 4.2s ease-in-out infinite;
    }

@keyframes zp-hero-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.zp-trust-stack {
    display: grid;
    gap: 13px;
}

    .zp-trust-stack div {
        display: grid;
        grid-template-columns: 54px 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        min-height: 78px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--zp-border);
        border-radius: 16px;
        box-shadow: var(--zp-shadow-soft);
    }

    .zp-trust-stack i {
        grid-row: 1 / span 2;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff3ea;
        color: var(--zp-orange);
        font-size: 22px;
    }

    .zp-trust-stack b {
        font-size: 16px;
    }

    .zp-trust-stack span {
        color: var(--zp-muted);
        font-size: 13px;
        margin-top: 3px;
    }

/* Categories */
.zp-category-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow-soft);
}

    .zp-category-strip a {
        display: grid;
        justify-items: center;
        gap: 9px;
        color: #111827;
        font-weight: 700;
        font-size: 13px;
    }

    .zp-category-strip span {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f1f5fb;
        font-size: 29px;
        transition: transform .25s ease, background .25s ease;
    }

    .zp-category-strip a:hover span {
        background: #fff3ea;
        transform: translateY(-4px);
    }

    .zp-category-strip a:hover b {
        color: var(--zp-orange);
    }

/* Promo cards */
.zp-promo-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.zp-promo-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--zp-shadow-soft);
}

    .zp-promo-card span {
        font-weight: 800;
        font-size: 23px;
        display: block;
    }

    .zp-promo-card h2 {
        margin: 4px 0 12px;
        font-size: 28px;
        font-weight: 850;
    }

    .zp-promo-card p {
        margin: 0 0 20px;
        font-size: 16px;
        color: #0f172a;
    }

    .zp-promo-card b {
        display: inline-flex;
        padding: 9px 15px;
        border-radius: 8px;
        background: #0f172a;
        color: #fff;
        font-size: 14px;
    }

    .zp-promo-card i {
        position: absolute;
        right: 22px;
        bottom: 18px;
        font-size: 105px;
        opacity: .28;
    }

    .zp-promo-card.electronics {
        background: linear-gradient(135deg, #dff7df, #c6efd7);
    }

    .zp-promo-card.fashion {
        background: linear-gradient(135deg, #ffd776, #ffc3a3);
    }

    .zp-promo-card.home {
        background: linear-gradient(135deg, #d8efff, #b7dfff);
    }

    .zp-promo-card:hover {
        transform: translateY(-3px);
    }

/* Product sections */
.zp-product-section {
    margin-top: 24px;
    background: #fff;
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow-soft);
    padding: 22px;
}

.zp-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

    .zp-section-title > div {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .zp-section-title h2 {
        margin: 0;
        font-size: 26px;
        font-weight: 850;
        letter-spacing: -.7px;
    }

    .zp-section-title a {
        color: #0d6efd;
        font-weight: 800;
    }

.zp-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 7px;
    background: #fff1e8;
    color: #ef5b11;
    font-size: 13px;
    font-weight: 700;
}

.zp-carousel-shell {
    position: relative;
}

.zp-product-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(215px, 1fr);
    grid-template-rows: 1fr;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 8px;
    scrollbar-width: none;
}

    .zp-product-row::-webkit-scrollbar {
        display: none;
    }

.zp-product-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--zp-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .zp-product-card:hover {
        transform: translateY(-5px);
        border-color: #dce4f0;
        box-shadow: 0 16px 40px rgba(15, 23, 42, .13);
    }

.zp-product-image {
    position: relative;
    height: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fbfcff, #f4f6fa);
}

    .zp-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 18px;
        transition: transform .35s ease;
    }

.zp-product-card:hover .zp-product-image img {
    transform: scale(1.06);
}

.zp-discount-chip {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 9px;
    background: #eaf9f0;
    color: var(--zp-green);
    font-size: 11px;
    font-weight: 850;
}

.zp-product-info {
    padding: 15px;
    display: grid;
    gap: 9px;
}

.zp-product-brand {
    color: var(--zp-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.zp-product-title {
    min-height: 41px;
    color: var(--zp-text);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.45;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .zp-product-title:hover {
        color: var(--zp-orange);
    }

.zp-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

    .zp-rating span {
        color: #ffa000;
        letter-spacing: -1px;
    }

    .zp-rating small {
        color: #9aa3b2;
        font-weight: 600;
    }

.zp-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .zp-price-line b {
        font-size: 18px;
        color: #0f172a;
    }

    .zp-price-line del {
        color: #9ca3af;
        font-size: 12px;
    }

    .zp-price-line em {
        color: var(--zp-green);
        font-size: 12px;
        font-style: normal;
        font-weight: 800;
    }

.zp-add-cart {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: #fff3ea;
    color: var(--zp-orange);
    padding: 10px 12px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .25s ease, color .25s ease;
}

    .zp-add-cart:hover {
        background: var(--zp-orange);
        color: #fff;
    }

.zp-product-loading,
.zp-product-no-data {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zp-muted);
    border-radius: 14px;
    border: 1px dashed var(--zp-border);
    background: #fbfcff;
}

.zp-carousel-btn {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--zp-border);
    background: #fff;
    box-shadow: var(--zp-shadow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: translateY(-50%);
    color: #111827;
    font-size: 26px;
}

    .zp-carousel-btn.prev {
        left: -10px;
    }

    .zp-carousel-btn.next {
        right: -10px;
    }

    .zp-carousel-btn:hover {
        color: var(--zp-orange);
    }

/* Offers */
.zp-offer-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
}

.zp-bank-offer,
.zp-coin-offer {
    min-height: 166px;
    border-radius: 15px;
    padding: 28px;
    overflow: hidden;
    box-shadow: var(--zp-shadow-soft);
}

.zp-bank-offer {
    background: linear-gradient(135deg, #e5f3ff, #d5ebff);
}

    .zp-bank-offer h3,
    .zp-coin-offer h3 {
        margin: 0 0 8px;
        font-weight: 850;
        font-size: 25px;
    }

    .zp-bank-offer p,
    .zp-coin-offer p {
        margin: 0;
        font-size: 16px;
    }

.zp-bank-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

    .zp-bank-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 7px 12px;
        border-radius: 6px;
        background: #fff;
        color: #16467f;
        font-size: 13px;
        font-weight: 850;
    }

.zp-bank-offer small {
    display: block;
    text-align: right;
    margin-top: 8px;
    color: #334155;
}

.zp-coin-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: radial-gradient(circle at 82% 28%, rgba(255,202,40,.55), transparent 22%), linear-gradient(135deg, #214ce5, #061a69);
}

    .zp-coin-offer i {
        width: 100px;
        height: 100px;
        border-radius: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.14);
        color: #ffd44f;
        font-size: 62px;
    }

/* Footer */
.zp-footer {
    background: var(--zp-navy);
    color: #d6deed;
    margin-top: 12px;
}

.zp-footer-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    .zp-footer-services div {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        padding: 26px 22px;
        border-right: 1px solid rgba(255,255,255,.10);
    }

        .zp-footer-services div:last-child {
            border-right: 0;
        }

    .zp-footer-services i {
        grid-row: 1 / span 2;
        font-size: 30px;
        color: #fff;
    }

    .zp-footer-services b {
        color: #fff;
        font-size: 15px;
    }

    .zp-footer-services span {
        color: #9ca8bd;
        font-size: 13px;
        margin-top: 2px;
    }

.zp-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 1.2fr 1.2fr;
    gap: 38px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    .zp-footer-grid h5 {
        color: #fff;
        margin: 0 0 12px;
        font-size: 13px;
        font-weight: 850;
        letter-spacing: .5px;
    }

    .zp-footer-grid a {
        display: block;
        color: #aab5c6;
        font-size: 13px;
        margin: 8px 0;
    }

        .zp-footer-grid a:hover {
            color: var(--zp-orange);
        }

.zp-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .zp-social a {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.10);
        color: #fff;
        margin: 0;
    }

.zp-payments {
    color: #d6deed;
    margin-top: 16px;
    font-weight: 800;
    font-size: 13px;
}

.zp-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    color: #9ca8bd;
    font-size: 13px;
}

    .zp-footer-bottom i {
        color: var(--zp-red);
    }

/* Cart offcanvas */
.zp-cart-offcanvas {
    width: min(100%, 430px) !important;
    border-left: 0;
}

    .zp-cart-offcanvas .offcanvas-header {
        border-bottom: 1px solid var(--zp-border);
    }

    .zp-cart-offcanvas h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 850;
    }

.zp-cart-items {
    height: calc(100vh - 235px);
    overflow: auto;
    padding-right: 4px;
}

.zp-empty-cart {
    display: flex;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--zp-border);
    border-radius: 14px;
    color: var(--zp-muted);
    background: #fbfcff;
}

.zp-cart-total-box {
    border-top: 1px solid var(--zp-border);
    margin-top: 18px;
    padding-top: 16px;
}

.zp-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 16px;
}

    .zp-cart-total-row b {
        color: var(--zp-orange);
    }

.zp-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.zp-outline-btn,
.zp-solid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    font-weight: 850;
}

.zp-outline-btn {
    border: 1px solid var(--zp-orange);
    color: var(--zp-orange);
}

.zp-solid-btn {
    background: var(--zp-orange);
    color: #fff;
}

.zp-outline-btn:hover {
    background: #fff3ea;
    color: var(--zp-orange);
}

.zp-solid-btn:hover {
    color: #fff;
    filter: brightness(.96);
}

.zp-back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--zp-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--zp-shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 1040;
}

    .zp-back-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .zp-back-top:hover {
        transform: translateY(-3px);
    }

/* Compatibility with old cart html generated from Main.asmx/FillCart */
#cartContainer .cart-product,
#cartContainer ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

#cartContainer li {
    list-style: none;
}

#cartContainer .media {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--zp-border);
}

    #cartContainer .media img {
        width: 78px;
        height: 78px;
        object-fit: contain;
        border-radius: 12px;
        background: #f7f8fb;
    }

#cartContainer .media-body {
    flex: 1;
    position: relative;
}

#cartContainer h4 {
    font-size: 14px;
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--zp-text);
}

#cartContainer .quantity,
#cartContainer .qty-box {
    color: var(--zp-muted);
    font-size: 13px;
}

#cartContainer button {
    border: 0;
    background: #f3f6fb;
    border-radius: 7px;
}

@media (max-width: 1180px) {
    .zp-main-header-inner {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .zp-logo {
        min-width: auto;
    }

    .zp-search-wrap {
        order: 3;
        flex: 0 0 100%;
        max-width: none;
    }

    .zp-hero-grid {
        grid-template-columns: 1fr;
    }

    .zp-trust-stack {
        grid-template-columns: repeat(4, 1fr);
    }

        .zp-trust-stack div {
            min-height: 110px;
        }

    .zp-category-strip {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 900px) {
    .zp-container {
        width: min(100% - 24px, 1440px);
    }

    .zp-top-strip-inner {
        height: auto;
        padding: 10px 0;
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
    }

    .zp-top-links {
        flex-wrap: wrap;
        gap: 6px 0;
    }

    .zp-hero-card {
        grid-template-columns: 1fr;
    }

    .zp-hero-copy {
        padding: 36px 26px 10px;
    }

    .zp-hero-real-image {
        min-height: 260px;
        padding: 14px 22px 28px;
    }

        .zp-hero-real-image img {
            max-height: 250px;
        }

    .zp-trust-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .zp-promo-grid,
    .zp-offer-grid {
        grid-template-columns: 1fr;
    }

    .zp-footer-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .zp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .zp-hero-real-image {
        min-height: 220px;
        padding: 6px 18px 28px;
    }

        .zp-hero-real-image img {
            max-height: 215px;
        }

    .zp-main-header-inner {
        gap: 16px;
    }

    .zp-logo {
        font-size: 26px;
    }

    .zp-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .zp-account-text {
        display: none;
    }

    .zp-search-wrap {
        grid-template-columns: 1fr 54px;
    }

    .zp-search-category {
        display: none;
    }

    .zp-search-btn {
        width: 54px;
        border-radius: 0 9px 9px 0;
    }

        .zp-search-btn span {
            display: none;
        }

    .zp-nav-inner {
        gap: 24px;
    }

    .zp-all-categories {
        min-width: 150px;
    }

    .zp-category-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .zp-trust-stack {
        grid-template-columns: 1fr;
    }

    .zp-section-title {
        align-items: flex-start;
    }

        .zp-section-title > div {
            display: grid;
            gap: 9px;
        }

    .zp-footer-services,
    .zp-footer-grid {
        grid-template-columns: 1fr;
    }

        .zp-footer-services div {
            border-right: 0;
            border-bottom: 1px solid rgba(255,255,255,.10);
        }

    .zp-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   ZedPlusMSS Hero 8 Auto Slides - Real Image Slider
   Add this at the end of your existing home CSS.
   ========================================================= */
.zp-hero-card.zp-hero-slider-card {
    position: relative;
    display: block;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--zp-radius);
    color: #fff;
    background: #06152f;
    box-shadow: var(--zp-shadow);
    isolation: isolate;
}

    .zp-hero-card.zp-hero-slider-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: conic-gradient(from 90deg, transparent, rgba(255,255,255,.14), transparent 16%, transparent 100%);
        animation: zp-glow-spin 12s linear infinite;
        z-index: 0;
        pointer-events: none;
    }

.zp-hero-slider {
    position: relative;
    min-height: 360px;
    height: 100%;
}

.zp-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(320px, 48%) 1fr;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity .75s ease, transform .75s ease;
    background: radial-gradient(circle at 74% 66%, rgba(69, 137, 255, .40), transparent 30%), linear-gradient(135deg, #06152f 0%, #092859 55%, #061327 100%);
    overflow: hidden;
    z-index: 1;
}

    .zp-hero-slide.active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
        z-index: 2;
    }

    .zp-hero-slide::after {
        content: "";
        position: absolute;
        right: -90px;
        bottom: -120px;
        width: 390px;
        height: 390px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none;
    }

    .zp-hero-slide .zp-hero-copy {
        position: relative;
        z-index: 4;
        padding: 56px 42px;
    }

    .zp-hero-slide .zp-badge {
        background: var(--zp-orange);
    }

    .zp-hero-slide .zp-hero-copy h1,
    .zp-hero-slide .zp-hero-copy p,
    .zp-hero-slide .zp-hero-btn,
    .zp-hero-slide .zp-badge {
        transform: translateY(12px);
        opacity: 0;
        transition: opacity .55s ease, transform .55s ease;
    }

    .zp-hero-slide.active .zp-badge {
        transition-delay: .10s;
    }

    .zp-hero-slide.active .zp-hero-copy h1 {
        transition-delay: .18s;
    }

    .zp-hero-slide.active .zp-hero-copy p {
        transition-delay: .26s;
    }

    .zp-hero-slide.active .zp-hero-btn {
        transition-delay: .34s;
    }

    .zp-hero-slide.active .zp-hero-copy h1,
    .zp-hero-slide.active .zp-hero-copy p,
    .zp-hero-slide.active .zp-hero-btn,
    .zp-hero-slide.active .zp-badge {
        transform: translateY(0);
        opacity: 1;
    }

.zp-hero-real-image {
    position: relative;
    min-height: 320px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 42px 34px 10px;
    isolation: isolate;
    z-index: 3;
}

    .zp-hero-real-image::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 36px;
        width: min(78%, 430px);
        height: 78px;
        transform: translateX(-50%);
        border-radius: 50%;
        background: radial-gradient(ellipse at center, rgba(255,255,255,.88), rgba(96,165,250,.22) 58%, transparent 72%);
        filter: blur(1px) drop-shadow(0 22px 35px rgba(0,0,0,.34));
        z-index: -1;
    }

    .zp-hero-real-image::after {
        content: "";
        position: absolute;
        width: 78%;
        max-width: 460px;
        height: 160px;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        border-radius: 999px;
        background: radial-gradient(ellipse at center, rgba(36, 99, 235, .32), transparent 70%);
        filter: blur(22px);
        z-index: -2;
    }

    .zp-hero-real-image img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 560px;
        max-height: 312px;
        object-fit: contain;
        object-position: center;
        filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .32));
        animation: zp-hero-float 4.2s ease-in-out infinite;
    }

.zp-hero-slide:nth-child(2n) .zp-hero-real-image img {
    animation-delay: .4s;
}

.zp-hero-slide:nth-child(3n) .zp-hero-real-image img {
    animation-delay: .8s;
}

.zp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}

    .zp-hero-arrow:hover {
        background: var(--zp-orange);
        transform: translateY(-50%) scale(1.05);
    }

    .zp-hero-arrow.prev {
        left: 18px;
    }

    .zp-hero-arrow.next {
        right: 18px;
    }

.zp-hero-dots.zp-slider-dots {
    position: absolute;
    left: 42px;
    bottom: 34px;
    z-index: 8;
    display: flex;
    gap: 9px;
    margin: 0;
}

    .zp-hero-dots.zp-slider-dots button {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 0;
        padding: 0;
        background: rgba(255,255,255,.55);
        cursor: pointer;
        transition: width .25s ease, background .25s ease;
    }

        .zp-hero-dots.zp-slider-dots button.active {
            width: 28px;
            background: var(--zp-orange);
        }

.zp-hero-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 8;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,.12);
}

    .zp-hero-progress span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--zp-orange), var(--zp-orange-2));
    }

    .zp-hero-progress.run span {
        animation: zpHeroProgress 5s linear forwards;
    }

@keyframes zpHeroProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .zp-hero-card.zp-hero-slider-card,
    .zp-hero-slider {
        min-height: 620px;
    }

    .zp-hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
    }

        .zp-hero-slide .zp-hero-copy {
            padding: 36px 26px 8px;
        }

    .zp-hero-real-image {
        min-height: 300px;
        padding: 12px 22px 45px;
    }

        .zp-hero-real-image img {
            max-height: 285px;
        }

    .zp-hero-dots.zp-slider-dots {
        left: 26px;
        bottom: 24px;
    }
}

@media (max-width: 640px) {
    .zp-hero-card.zp-hero-slider-card,
    .zp-hero-slider {
        min-height: 575px;
    }

    .zp-hero-arrow {
        display: none;
    }

    .zp-hero-real-image {
        min-height: 250px;
        padding: 8px 18px 42px;
    }

        .zp-hero-real-image img {
            max-height: 235px;
        }
}

/* =========================================================
   ZedPlusMSS Hero 8 Auto Slides - Height Increased Final
   Keep this block at the END of the CSS file.
   ========================================================= */
.zp-hero-card.zp-hero-slider-card,
.zp-hero-slider,
.zp-hero-slide {
    min-height: 450px !important;
}

    .zp-hero-slide .zp-hero-copy {
        padding: 70px 48px 80px !important;
    }

        .zp-hero-slide .zp-hero-copy h1 {
            font-size: clamp(38px, 4.4vw, 62px) !important;
        }

        .zp-hero-slide .zp-hero-copy p {
            max-width: 430px;
            font-size: 19px;
        }

.zp-hero-real-image {
    min-height: 420px !important;
    padding: 35px 55px 45px 10px !important;
}

    .zp-hero-real-image img {
        max-width: 650px !important;
        max-height: 390px !important;
    }

    .zp-hero-real-image::before {
        bottom: 45px !important;
        width: min(82%, 500px) !important;
        height: 90px !important;
    }

    .zp-hero-real-image::after {
        bottom: 25px !important;
        max-width: 540px !important;
        height: 190px !important;
    }

.zp-hero-dots.zp-slider-dots {
    bottom: 42px !important;
}

.zp-hero-progress {
    height: 5px !important;
}

.zp-trust-stack {
    height: 450px;
}

    .zp-trust-stack div {
        min-height: auto;
    }

@media (max-width: 1180px) {
    .zp-trust-stack {
        height: auto;
    }
}

@media (max-width: 900px) {
    .zp-hero-card.zp-hero-slider-card,
    .zp-hero-slider,
    .zp-hero-slide {
        min-height: 680px !important;
    }

    .zp-hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
    }

        .zp-hero-slide .zp-hero-copy {
            padding: 44px 28px 12px !important;
        }

            .zp-hero-slide .zp-hero-copy h1 {
                font-size: clamp(32px, 7vw, 48px) !important;
            }

    .zp-hero-real-image {
        min-height: 360px !important;
        padding: 18px 24px 56px !important;
    }

        .zp-hero-real-image img {
            max-width: 100% !important;
            max-height: 340px !important;
        }

    .zp-hero-dots.zp-slider-dots {
        left: 28px !important;
        bottom: 30px !important;
    }
}

@media (max-width: 640px) {
    .zp-hero-card.zp-hero-slider-card,
    .zp-hero-slider,
    .zp-hero-slide {
        min-height: 620px !important;
    }

        .zp-hero-slide .zp-hero-copy {
            padding: 34px 22px 8px !important;
        }

    .zp-hero-real-image {
        min-height: 300px !important;
        padding: 8px 18px 48px !important;
    }

        .zp-hero-real-image img {
            max-height: 280px !important;
        }
}

/* =========================================================
   Hero Slider Dots Right Side Final
   Keep this block at the VERY END of the CSS file.
   ========================================================= */
.zp-hero-dots.zp-slider-dots {
    position: absolute !important;
    left: auto !important;
    right: 42px !important;
    bottom: 42px !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 9px !important;
    margin: 0 !important;
}

    .zp-hero-dots.zp-slider-dots button {
        width: 10px !important;
        height: 10px !important;
        border: 0 !important;
        padding: 0 !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.55) !important;
        cursor: pointer !important;
        transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease !important;
    }

        .zp-hero-dots.zp-slider-dots button:hover {
            background: rgba(255, 255, 255, 0.85) !important;
            transform: scale(1.12) !important;
        }

        .zp-hero-dots.zp-slider-dots button.active {
            width: 30px !important;
            background: var(--zp-orange) !important;
        }

@media (max-width: 900px) {
    .zp-hero-dots.zp-slider-dots {
        left: auto !important;
        right: 28px !important;
        bottom: 30px !important;
    }
}

@media (max-width: 640px) {
    .zp-hero-dots.zp-slider-dots {
        left: auto !important;
        right: 20px !important;
        bottom: 24px !important;
        gap: 7px !important;
    }

        .zp-hero-dots.zp-slider-dots button {
            width: 9px !important;
            height: 9px !important;
        }

            .zp-hero-dots.zp-slider-dots button.active {
                width: 24px !important;
            }
}

/* =========================================================
   Category Strip With Images Final
   Use with: <div class="zp-category-strip zp-category-img-strip">
   Keep this block at the VERY END of the CSS file.
   ========================================================= */
.zp-category-strip.zp-category-img-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow-soft);
}

    .zp-category-strip.zp-category-img-strip a {
        display: grid;
        justify-items: center;
        align-content: start;
        gap: 10px;
        min-width: 0;
        color: #111827;
        font-weight: 800;
        font-size: 13px;
        text-align: center;
        transition: transform .25s ease, color .25s ease;
    }

        .zp-category-strip.zp-category-img-strip a span {
            width: 78px;
            height: 78px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
            border: 1px solid #e8edf5;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
            overflow: hidden;
            padding: 11px;
            transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
        }

            .zp-category-strip.zp-category-img-strip a span img {
                width: 100%;
                height: 100%;
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
                object-position: center;
                display: block;
                transition: transform .28s ease;
            }

        .zp-category-strip.zp-category-img-strip a b {
            width: 100%;
            min-height: 18px;
            color: #111827;
            font-size: 13px;
            font-weight: 850;
            line-height: 1.25;
            white-space: normal;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .zp-category-strip.zp-category-img-strip a:hover {
            transform: translateY(-2px);
        }

            .zp-category-strip.zp-category-img-strip a:hover span {
                background: #fff3ea;
                border-color: rgba(255, 107, 22, 0.35);
                box-shadow: 0 14px 30px rgba(255, 107, 22, 0.15);
                transform: translateY(-4px);
            }

                .zp-category-strip.zp-category-img-strip a:hover span img {
                    transform: scale(1.08);
                }

            .zp-category-strip.zp-category-img-strip a:hover b {
                color: var(--zp-orange);
            }

@media (max-width: 1180px) {
    .zp-category-strip.zp-category-img-strip {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px 10px;
    }
}

@media (max-width: 900px) {
    .zp-category-strip.zp-category-img-strip {
        padding: 18px 16px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px 8px;
    }

        .zp-category-strip.zp-category-img-strip a span {
            width: 68px;
            height: 68px;
            padding: 9px;
        }

        .zp-category-strip.zp-category-img-strip a b {
            font-size: 12px;
        }
}

@media (max-width: 640px) {
    .zp-category-strip.zp-category-img-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
        padding: 16px 14px;
    }

        .zp-category-strip.zp-category-img-strip a span {
            width: 64px;
            height: 64px;
            padding: 8px;
        }

        .zp-category-strip.zp-category-img-strip a b {
            font-size: 12px;
        }
}


/* =========================================================
   Promo Cards With Images Final
   Mobile / Fashion / Beauty
   Use with:
   <div class="zp-promo-grid zp-image-promo-grid">
   Keep this block at the VERY END of the CSS file.
   ========================================================= */

.zp-image-promo-grid {
    margin-top: 22px;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

    .zp-image-promo-grid .zp-promo-card {
        position: relative !important;
        min-height: 215px !important;
        overflow: hidden !important;
        border-radius: 18px !important;
        padding: 30px !important;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11) !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
        isolation: isolate !important;
    }

        .zp-image-promo-grid .zp-promo-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 82% 72%, rgba(255, 255, 255, .60), transparent 34%);
            z-index: 0;
            pointer-events: none;
        }

        .zp-image-promo-grid .zp-promo-card::after {
            content: "";
            position: absolute;
            right: -58px;
            bottom: -68px;
            width: 188px;
            height: 188px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .38);
            z-index: 0;
            pointer-events: none;
        }

        .zp-image-promo-grid .zp-promo-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.17) !important;
            border-color: rgba(255, 107, 22, 0.18) !important;
        }

.zp-promo-content {
    position: relative;
    z-index: 3;
    max-width: 62%;
}

.zp-image-promo-grid .zp-promo-card span {
    display: block !important;
    margin-bottom: 5px !important;
    color: #334155 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    letter-spacing: .2px !important;
}

.zp-image-promo-grid .zp-promo-card h2 {
    margin: 0 0 10px !important;
    color: #0f172a !important;
    font-size: 34px !important;
    line-height: 1.04 !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}

.zp-image-promo-grid .zp-promo-card p {
    margin: 0 0 20px !important;
    color: #334155 !important;
    font-size: 16px !important;
    font-weight: 750 !important;
}

.zp-image-promo-grid .zp-promo-card b {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 39px !important;
    padding: 9px 16px !important;
    border-radius: 10px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease !important;
}

.zp-image-promo-grid .zp-promo-card:hover b {
    background: var(--zp-orange) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 20px rgba(255, 107, 22, .22) !important;
}

.zp-promo-img {
    position: absolute !important;
    right: 16px !important;
    bottom: 10px !important;
    z-index: 2 !important;
    width: 145px !important;
    height: 145px !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: drop-shadow(0 16px 23px rgba(15, 23, 42, 0.26)) !important;
    transition: transform .35s ease, filter .35s ease !important;
}

.zp-image-promo-grid .zp-promo-card:hover .zp-promo-img {
    transform: translateY(-9px) scale(1.08) !important;
    filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.30)) !important;
}

/* Final backgrounds */
.zp-promo-mobile {
    background: linear-gradient(135deg, #dff1ff 0%, #f7fbff 48%, #cbe7ff 100%) !important;
}

.zp-promo-fashion {
    background: linear-gradient(135deg, #ffe0ec 0%, #fff7fb 48%, #ffc4da 100%) !important;
}

.zp-promo-beauty {
    background: linear-gradient(135deg, #fff0d6 0%, #fffaf1 48%, #ffd99b 100%) !important;
}

/* Old icon hide */
.zp-image-promo-grid .zp-promo-card i {
    display: none !important;
}

/* Promo image responsive */
@media (max-width: 992px) {
    .zp-image-promo-grid {
        grid-template-columns: 1fr !important;
    }

        .zp-image-promo-grid .zp-promo-card {
            min-height: 195px !important;
        }

    .zp-promo-content {
        max-width: 68%;
    }

    .zp-promo-img {
        width: 132px !important;
        height: 132px !important;
        right: 18px !important;
        bottom: 12px !important;
    }
}

@media (max-width: 576px) {
    .zp-image-promo-grid {
        gap: 14px !important;
    }

        .zp-image-promo-grid .zp-promo-card {
            min-height: 178px !important;
            padding: 22px !important;
            border-radius: 16px !important;
        }

    .zp-promo-content {
        max-width: 66%;
    }

    .zp-image-promo-grid .zp-promo-card span {
        font-size: 13px !important;
    }

    .zp-image-promo-grid .zp-promo-card h2 {
        font-size: 25px !important;
        letter-spacing: -.5px !important;
    }

    .zp-image-promo-grid .zp-promo-card p {
        font-size: 14px !important;
        margin-bottom: 14px !important;
    }

    .zp-image-promo-grid .zp-promo-card b {
        min-height: 34px !important;
        padding: 7px 13px !important;
        font-size: 12px !important;
    }

    .zp-promo-img {
        right: 7px !important;
        bottom: 9px !important;
        width: 102px !important;
        height: 102px !important;
    }
}
