/* ═══════════════════════════════════════════
       HOME — Shop by Categories (pro motion system)
       Scoped under .home-shop-cat to avoid global collisions
       ═══════════════════════════════════════════ */

.home-shop-cat {
    position: relative;
    overflow: hidden;
}

.home-shop-cat .product-card-v2:hover {
    box-shadow: none !important;
}

*/ .home-shop-cat::after {
    width: 340px;
    height: 340px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(26, 45, 80, .18) 0%, transparent 65%);
    animation: home-shop-orb-b 26s ease-in-out infinite;
}

.home-shop-cat.is-in-view::before,
.home-shop-cat.is-in-view::after {
    opacity: 1;
}

@keyframes home-shop-orb-a {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-40px, 30px, 0) scale(1.08);
    }
}

@keyframes home-shop-orb-b {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(50px, -40px, 0) scale(.92);
    }
}

/* Keep content above decor */
.home-shop-cat>.container {
    position: relative;
    z-index: 1;
}

/* ── Heading — gradient accent + drawn underline ── */
.home-shop-cat-heading {
    position: relative;
    display: inline-block;
    opacity: 1;
    margin-bottom: 40px;
}

.home-shop-cat-accent {
    display: inline-block;
    background: linear-gradient(110deg, var(--primary) 0%, var(--accent) 55%, #ff5c9c 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── Tabs toolbar ── */
.home-shop-cat-toolbar {
    opacity: 1;
}

/* Tab entrance + hover + active */
.home-shop-cat .shop-cat-tab {
    --i: 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.home-shop-cat .shop-cat-tab:hover::before {
    left: 200%;
}

.home-shop-cat .shop-cat-tab>* {
    position: relative;
    z-index: 1;
}

/* Active-tab pulsing halo */
.home-shop-cat .shop-cat-tab.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 42, 120, .35) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    animation: home-shop-tab-halo 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes home-shop-tab-halo {
    0% {
        transform: scale(.85);
        opacity: 0;
    }

    40% {
        opacity: .65;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}



/* ── Shop All button — pink wash + arrow nudge ── */
.home-shop-cat .cat-shop-all-btn {
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        color .3s ease;
    padding: 10px;
}

.home-shop-cat .cat-shop-all-btn>* {
    position: absolute;
    z-index: 1;
}

.home-shop-cat .cat-shop-all-btn:hover::before {
    left: 0;
}

.home-shop-cat .cat-shop-all-btn i {
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.home-shop-cat .cat-shop-all-btn:hover i {
    transform: translate3d(3px, -3px, 0);
}

.home-shop-cat .cat-shop-all-btn svg path {
    transition: fill .3s ease;
}

.home-shop-cat .cat-shop-all-btn:hover svg path {
    fill: #fff;
}

/* ── Panel — entrance on .active ── */
.home-shop-cat .shop-cat-panel {
    position: relative;
}

.home-shop-cat .shop-cat-panel.active {
    opacity: 1;
}

/* Slider wrap + arrows + dots fade up with panel */
.home-shop-cat .shop-cat-panel.active .home-shop-cat-slider-wrap {
    opacity: 1;
}

/* Desktop slide cascade — each card is visible instantly on panel activation */
.home-shop-cat .shop-cat-panel.active .shop-slider-slide,
.home-shop-cat .shop-cat-panel.active .cat-slider-slide {
    opacity: 1;
}

/* ── Slider arrows — glow ring ── */
.home-shop-cat .shop-slider-arrow {
    position: absolute;
    overflow: visible;
    transition: background .25s ease,
        box-shadow .3s ease;
}

@media (min-width: 992px) {
    .home-shop-cat .shop-slider-prev {
        left: calc((100vw - 1655px) / -2) !important;
    }

    .home-shop-cat .shop-slider-next {
        right: calc((100vw - 1655px) / -2) !important;
    }
}

.home-shop-cat .shop-slider-arrow:hover::before {
    opacity: 1;
}

.home-shop-cat .shop-slider-arrow i,
.home-shop-cat .shop-slider-arrow svg {
    display: block;
}

/* ── Dots — morph to capsule on active ── */
.home-shop-cat .cat-slider-dot {
    width: 8px;
    height: 8px;
    transition: width .35s cubic-bezier(.22, 1, .36, 1),
        background .3s ease,
        transform .3s ease,
        opacity .3s ease;
}

.home-shop-cat .cat-slider-dot.active {
    width: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff5c9c 100%);
}

.home-shop-cat .cat-slider-dot:hover {
    transform: scale(1.25);
}

/* ── Reduced motion safety ── */
@media (prefers-reduced-motion: reduce) {

    .home-shop-cat::before,
    .home-shop-cat::after,
    .home-shop-cat-heading,
    .home-shop-cat-accent,
    .home-shop-cat-toolbar,
    .home-shop-cat .shop-cat-tab,
    .home-shop-cat .shop-cat-tab::before,
    .home-shop-cat .shop-cat-tab.active,
    .home-shop-cat .shop-cat-tab.active::after,
    .home-shop-cat .shop-cat-tab.active .shop-cat-tab-icon,
    .home-shop-cat .shop-cat-tab.active i,
    .home-shop-cat .cat-shop-all-btn,
    .home-shop-cat .cat-shop-all-btn::before,
    .home-shop-cat .shop-cat-panel.active,
    .home-shop-cat .shop-cat-panel.active .home-shop-cat-slider-wrap,
    .home-shop-cat .shop-cat-panel.active .shop-slider-slide,
    .home-shop-cat .shop-cat-panel.active .cat-slider-slide,
    .home-shop-cat .shop-slider-arrow,
    .home-shop-cat .shop-slider-arrow::before,
    .home-shop-cat .cat-slider-dot {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .home-shop-cat-heading::after {
        width: 52% !important;
    }
}

/* ═══════════════════════════════════════════
       HOME — pro motion system for remaining sections
       Each section is scoped under its own .home-anim-* class.
       All effects use .is-in-view (toggled by IntersectionObserver).
       Hover effects are always live.
       ═══════════════════════════════════════════ */

/* ───────── Benefits Bar ───────── */
.home-anim-benefits {
    position: relative;
    overflow: hidden;
    padding: 1.15rem 0;
}

.home-anim-benefits .home-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-anim-benefits .home-benefit-card {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(.95);
    display: flex;
    gap: 3px;
    max-width: 403px;
    width: 403px;
    height: 80px;
    max-height: 80px;
    align-items: stretch;
    transition: border-color .3s ease,
        box-shadow .3s ease,
        background-color .3s ease,
        transform .3s ease;
    will-change: transform;
    opacity: 1;
    transform: none;
}

.home-anim-benefits .home-benefit-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F8F9;
    /* border: 1px solid #edf1f7; */
}

.home-anim-benefits .home-benefit-card svg {
    transition: transform .45s cubic-bezier(.22, 1, .36, 1),
        color .3s ease, stroke .3s ease;
    /* width: 24px; */
    /* height: 24px; */
    color: var(--accent);
    stroke-width: 2.2;
}

.home-anim-benefits .home-benefit-copy {
    flex: 1;
    max-width: 320px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 1rem 1rem 1rem 2rem;
    background: #F7F8F9;
    /* border: 1px solid #edf1f7; */
}

.home-anim-benefits .home-benefit-copy p {
    margin: 0;
    color: #183158;
    font-size: 18px;
    line-height: 1.15;
    /* font-weight: 700; */
}

.home-anim-benefits .home-benefit-card:hover p {
    color: #16284a;
}

@media (max-width: 767.98px) {
    .home-anim-benefits {
        padding: 10px 0 !important;
    }

    .brand-logos {
        padding: 10px 0 60px !important;
    }

    .home-anim-benefits .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .home-anim-benefits .home-benefits-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding: 4px max(15px, calc((100% - 322px) / 2)) 12px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .home-anim-benefits .home-benefits-grid::-webkit-scrollbar {
        display: none;
    }

    .home-anim-benefits .home-benefit-card {
        flex: 0 0 auto;
        height: 48px;
        width: auto;
        max-width: none;
        gap: 3px;
        background: transparent;
        box-shadow: none;
    }

    .home-anim-benefits .home-benefit-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        background: #F7F8F9;
        border: none;
    }

    .home-anim-benefits .home-benefit-copy {
        flex: 0 0 148px;
        width: 148px;
        height: 48px;
        padding: 0 10px;
        background: #F7F8F9;
        border: none;
        display: flex;
        align-items: center;
    }

    .home-anim-benefits .home-benefit-copy p {
        font-size: 12px;
        line-height: 1.2;
    }


    .home-anim-blog {
        height: 520px !important;
    }

    .support-faq-section {
        height: 885px !important;
    }
}

@media (min-width: 768px) {
    .home-anim-benefits .home-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .home-anim-benefits .home-benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.9rem;
    }
}



/* ───────── About KeyPar ───────── */
.home-anim-about {
    position: relative;
    overflow: hidden;
    background-color: #F7F8F9;
    height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-anim-about.is-in-view::before {
    opacity: 1;
}

@keyframes home-about-orb {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-40px, 40px, 0) scale(1.08);
    }
}

.home-anim-about>.container {
    position: relative;
    z-index: 1;
}

/* Heading with drawn underline */
.home-anim-about h2 {
    position: relative;
    display: inline-block;
    opacity: 1;
    font-size: 60px;
    color: #173158;
}

.home-anim-about h3 {
    opacity: 1;
}

/* Stat numbers — scale bloom */
.home-anim-about .about-stat-number {
    display: inline-block;
    opacity: 1;
}

/* Stat tile hover (mobile grid) */
.home-anim-about .d-md-none .col-6>div {
    transition: transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease,
        background .3s ease;
}

.home-anim-about .d-md-none .col-6>div:hover {
    transform: translate3d(0, -4px, 0);
    background: #fff;
    box-shadow: 0 14px 30px -10px rgba(255, 42, 120, .25);
}

/* Buttons — arrow nudge + subtle lift */
.home-anim-about .btn-outline-dark,
.home-anim-about .about-btn-outline {
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 48px;
    width: 188px;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-width: 2px !important;
}

@media (max-width: 575.98px) {

    .home-anim-about .btn-outline-dark,
    .home-anim-about .about-btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

.home-anim-about .bi-arrow-up-right {
    display: inline-block;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.home-anim-about a:hover .bi-arrow-up-right,
.home-anim-about button:hover .bi-arrow-up-right {
    transform: translate3d(3px, -3px, 0);
}

/* Image stack */
.home-anim-about .about-img-1,
.home-anim-about .about-img-2,
.home-anim-about .about-img-3 {
    filter: saturate(.95);
}

.home-anim-about .about-img-stack-bg {
    position: absolute;
    bottom: -180px;
    right: 70px;
    width: 632px;
    /* opacity: .16; */
    pointer-events: none;
    z-index: 0;
}

.home-anim-about .about-img-stack-bg svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ───────── Featured Products ───────── */
.home-anim-featured {
    position: relative;
    overflow: hidden;
}

.home-anim-featured h2 {
    opacity: 1;
}

.home-anim-featured h2+a {
    opacity: 1;
    transition: box-shadow .3s ease;
}

.featured-products-slider-outer {
    margin-top: 1rem;
}

.featured-products-track {
    gap: 24px;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
    cursor: grab;
    user-select: none;
}

.featured-products-track:active {
    cursor: grabbing;
}

.featured-products-slide {
    width: 388px;
    flex: 0 0 auto;
}

.home-anim-featured .featured-card-img {
    opacity: 1;
}

.home-anim-featured .featured-card-overlay {
    background: #183158;
    opacity: 0.3;
}

/* ───────── Discover Brands ───────── */
.home-anim-discover {
    position: relative;
    overflow: hidden;
}

.home-anim-discover h2 {
    opacity: 1;
}

/* Feature bullet items — slide in from left */
.home-anim-discover .col-lg-5 .mb-3 {
    opacity: 1;
}

.home-anim-discover .col-lg-5 .mb-3 h3 {
    position: relative;
    display: inline-block;
    /* transition: color .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1); */
}

.home-anim-discover .col-lg-5 .mb-3:hover h3::before {
    width: 100%;
}

/* Brand logo cells — static display, no hover effect */
.home-anim-discover .col-lg-7 .col.d-flex img,
.home-anim-discover .discover-brands-logo {
    filter: none;
    transition: none;
}

.home-anim-discover .discover-brands-grid .discover-brands-item:hover {
    transform: none;
    opacity: 1;
}

.home-anim-discover .discover-brands-card {
    width: 100%;
    max-width: 760px;
    min-height: 760px;
}

.home-anim-discover .discover-brands-grid {
    width: 100%;
}

.home-anim-discover .discover-brands-grid .discover-brands-item {
    height: 80px;
    padding: 0 10px;
    box-sizing: border-box;
    transition: none;
}

.home-anim-discover .discover-brands-logo {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .home-anim-discover .discover-brands-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .home-anim-discover .discover-brands-grid .discover-brands-item {
        flex: 0 0 33.333333% !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        height: 80px !important;
        padding: 0 10px !important;
        margin-bottom: 1.5rem !important;
    }

    .home-anim-discover .discover-brands-logo {
        max-height: 80% !important;
        max-width: 100% !important;
    }
}

/* ───────── Hot Offers ───────── */
.home-anim-offers {
    position: relative;
    overflow: hidden;
}

.home-anim-offers h2 {
    opacity: 1;
}

.home-anim-offers h2+a {
    opacity: 1;
    transition: color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

/* Card reveal + hover effects */
.home-anim-offers .hot-offer-card {
    position: relative;
}

.home-anim-offers .carousel-item.active .hot-offer-card {
    opacity: 1;
}

.home-anim-offers .hot-offer-card>img {
    filter: none;
}

.home-anim-offers .hot-offer-card:hover>img {
    filter: none;
}

.home-anim-offers .hot-offer-card .btn .bi-arrow-up-right {
    display: inline-block;
}

/* ───────── Reasons to Shop ───────── */
.home-anim-reasons {
    position: relative;
    overflow: hidden;
}

.home-anim-reasons::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 1;
}

.home-anim-reasons>.container {
    position: relative;
    z-index: 1;
}

/* Pink title block — slide-in + pulse */
@media (min-width: 992px) {
    .reasons-main-box h2 {
        font-size: 48px !important;
        line-height: 1.4 !important;
    }
}

.home-anim-reasons .col-lg-3>div:first-child {
    opacity: 1;
    box-shadow: none;
}

/* Pink arrow-chip */
.home-anim-reasons .col-lg-3>div:nth-child(2),
.home-anim-reasons .d-lg-none>div {
    opacity: 1;
}

/* Reason cards */
.home-anim-reasons .col-lg-9 .col-12.col-md-6.col-lg-4 {
    opacity: 1;
}

/* ───────── Blog / Learning Hub ───────── */
.home-anim-blog {
    position: relative;
    overflow: hidden;
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-anim-blog h2 {
    opacity: 1;
}

.home-anim-blog h2+a,
.home-anim-blog h2~a {
    opacity: 1;
    transition: box-shadow .3s ease;
}

/* Blog card cascade */
.home-anim-blog .blog-slider-slide,
.home-anim-blog .blog-mobile-slide {
    opacity: 1;
}

/* Blog card hover */
/* .home-anim-blog .blog-card {
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
} */

/* .home-anim-blog .blog-card:hover {
    transform: translate3d(0, -6px, 0);
} */

.home-anim-blog .blog-card>.rounded-3 {
    overflow: hidden;
}

.home-anim-blog .blog-card img {
    transition: transform .7s cubic-bezier(.22, 1, .36, 1),
        filter .4s ease;
}

/* .home-anim-blog .blog-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.1);
} */

.home-anim-blog .blog-card-title {
    transition: color .3s ease;
}

.home-anim-blog .blog-card:hover .blog-card-title {
    color: var(--accent);
}

.home-anim-blog .blog-card .about-btn-outline {
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease;
}

.home-anim-blog .blog-card:hover .about-btn-outline {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 10px 20px -6px rgba(255, 42, 120, .4);
}

.home-anim-blog .blog-card .bi-arrow-up-right {
    display: inline-block;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.home-anim-blog .blog-card:hover .bi-arrow-up-right {
    transform: translate3d(3px, -3px, 0);
}

/* Blog section — outline buttons (READ MORE ALL, READ MORE) */
.home-anim-blog .blog-see-all-btn,
.home-anim-blog .blog-read-more-btn {
    border: 2px solid #E83161;
    color: #E83161;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-anim-blog .blog-see-all-btn {
    width: 180px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
}

.home-anim-blog .blog-read-more-btn {
    width: 148px;
    height: 42px;
    font-size: 14px;
    font-weight: 500;
}

.home-anim-blog .blog-see-all-btn:hover,
.home-anim-blog .blog-read-more-btn:hover {
    background: #E83161;
    color: #fff;
}

.home-anim-blog .blog-see-all-btn svg path,
.home-anim-blog .blog-read-more-btn svg path {
    transition: fill 0.3s ease;
}

.home-anim-blog .blog-see-all-btn:hover svg path,
.home-anim-blog .blog-read-more-btn:hover svg path {
    fill: #fff;
}

.home-anim-blog .blog-see-all-icon-btn {
    background: transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.home-anim-blog .blog-see-all-icon-btn svg path {
    transition: fill 0.3s ease;
}

.home-anim-blog .blog-see-all-icon-btn:hover,
.home-anim-blog .blog-see-all-icon-btn:focus-visible {
    background: #E73161;
    border-color: #E73161;
}

.home-anim-blog .blog-see-all-icon-btn:hover svg path,
.home-anim-blog .blog-see-all-icon-btn:focus-visible svg path {
    fill: #FFFFFF;
}

/* Blog slider arrows — pulse ring on hover */
.home-anim-blog .blog-slider-prev,
.home-anim-blog .blog-slider-next {
    position: absolute;
    z-index: 100;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
        background .3s ease,
        box-shadow .3s ease,
        left .3s ease,
        right .3s ease;
}

@media (min-width: 992px) {
    .home-anim-blog .blog-slider-prev {
        left: calc((100vw - 1600px) / -2 + 30px) !important;
    }

    .home-anim-blog .blog-slider-next {
        right: calc((100vw - 1600px) / -2 + 30px) !important;
    }
}

/* Override the global display: none for blog arrows */
.home-anim-blog .reviews-desktop-nav.blog-slider-prev,
.home-anim-blog .reviews-desktop-nav.blog-slider-next {
    display: flex !important;
}

.home-anim-blog .blog-slider-prev svg,
.home-anim-blog .blog-slider-next svg {
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

/* ───────── Hot Offers ───────── */
.home-offers {
    min-height: 1080px;
    display: flex;
    background: #fff;
    /* padding: 5rem 0 0; */
    justify-content: center;
    align-items: center;
}

.home-offers-title {
    font-size: 48px;
    font-weight: 600;
    color: #173158;
}

.hot-offers-slider-outer {
    margin-top: 1rem;
}

.hot-offers-track {
    gap: 30px;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
    cursor: grab;
    user-select: none;
}

.hot-offers-track:active {
    cursor: grabbing;
}

.hot-offer-slide {
    width: 673px;
    flex: 0 0 auto;
}

.hot-offer-card {
    width: 100%;
    max-width: 673px;
    height: 673px;
}

/* .home-offers .carousel-item {
        padding: 0 1rem;
    } */

.hot-offer-info {
    bottom: 50px;
    right: 50px;
    width: 400px;
    height: 400px;
    background: #173158;
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.hot-offer-name {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

.hot-offer-desc {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
}

.hot-offer-btn {
    background: #E73161 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px 10px 15px;
    width: 210px;
    height: 48px;
    transition: all 0.3s ease;
}

.hot-offer-btn:hover {
    background: #FFFFFF !important;
    color: #E83161 !important;
    border-color: #FFFFFF !important;
}

.hot-offer-btn:hover svg path {
    fill: #E83161 !important;
}

.hot-offer-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: #dfe4ea;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hot-offer-dot.active {
    width: 30px;
    border-radius: 0;
    background: #ff2a78;
}

.kp-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #E73161;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 20;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.kp-slider-nav:disabled,
.kp-slider-nav.disabled {
    background: #EDEFF2 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.kp-slider-nav svg {
    width: 21px;
    height: 23px;
    transition: transform 0.3s ease;
}

.kp-slider-prev {
    left: 0px !important;
}

.kp-slider-next {
    right: 0px !important;
}

/* Keep existing class names for compatibility but link them to new styles if needed, 
       or I will just update the Blade to use kp-slider-nav */
.hot-offers-nav,
.reviews-desktop-nav {
    display: none !important;
    /* Hide old arrows if any left */
}

@media (max-width: 1399.98px) {
    .featured-products-slide {
        width: 320px;
    }

    .hot-offer-slide {
        width: 580px;
    }

    .hot-offer-card {
        height: 580px;
    }

    .hot-offer-info {
        width: 340px;
        height: 340px;
        padding: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .featured-products-slide {
        width: 280px;
    }

    .home-offers {
        min-height: auto;
        padding: 30px 0 0;
    }

    .hot-offer-slide {
        width: 460px;
    }

    .hot-offer-card {
        height: 460px;
    }

    .hot-offer-info {
        width: 280px;
        height: 280px;
        padding: 1.5rem;
    }

    .hot-offer-name {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .featured-products-slide {
        width: 320px;
    }

    .hot-offer-slide {
        width: 400px;
    }

    .hot-offer-card {
        height: 400px;
    }

    .hot-offer-info {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 767.98px) {
    .featured-products-slide {
        width: 80%;
    }

    .home-offers-title {
        font-size: 32px;
    }

    .hot-offer-slide {
        width: 85%;
    }

    .hot-offer-card {
        height: 400px;
    }

    .hot-offer-info {
        width: 260px;
        height: 260px;
        padding: 1.25rem;
    }

    .hot-offer-name {
        font-size: 24px;
    }

    .hot-offer-desc {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .hot-offer-card {
        height: 360px;
    }

    .hot-offer-info {
        width: 80%;
        height: auto;
        min-height: 200px;
        padding: 1.5rem;
    }
}

.home-anim-discover {
    min-height: 970px;
    display: flex;
    align-items: center;
    background-color: #F7F8F9;
}

.discover-brands-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1105px;
    z-index: 1;
    pointer-events: none;
}

.discover-brands-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .home-anim-discover {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .discover-brands-bg {
        width: 100%;
        opacity: 0.5;
        /* Fade it more on mobile so text is readable */
    }
}

.about-mobile-only-flex {
    display: none !important;
}

.about-desktop-only {
    display: none !important;
}

@media (max-width: 711.98px) {
    .about-mobile-only-flex {
        display: flex !important;
    }
}

@media (min-width: 712px) {
    .about-desktop-only {
        display: block !important;
    }
}

/* ───────── Mobile About Overrides ───────── */
@media (max-width: 711.98px) {
    .about-section.home-anim-about {
        height: 1440px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 40px 0 !important;
    }

    .about-section.home-anim-about .kp-container {
        width: 100%;
    }

    .about-section.home-anim-about .row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        margin-top: 0px !important;
    }

    .about-section.home-anim-about .col-12 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 0px !important;
        max-height: 550px;
    }

    /* Heading: We're KeyPar. */
    .about-section.home-anim-about h2.display-5 {
        font-size: 36px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
    }

    /* Text Wrapper */
    .about-section.home-anim-about .about-text-wrapper {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* "A trusted UK..." */
    .about-section.home-anim-about .about-text-wrapper p:nth-of-type(1) {
        font-size: 18px !important;
        margin-bottom: 15px !important;
        display: block !important;
        max-width: 290px;
    }

    /* "KeyPar Ltd is a UK-based..." */
    .about-section.home-anim-about .about-text-wrapper p:nth-of-type(2) {
        font-size: 12px !important;
        margin-bottom: 0 !important;
        display: block !important;
        max-width: 323px;
    }

    /* Hide other text in wrapper */
    .about-section.home-anim-about .about-text-wrapper p:nth-of-type(n+3) {
        display: none !important;
    }

    /* Hide images on mobile as we are centering text and height is fixed */
    .about-section.home-anim-about .col-lg-4.anim-delay-2 {
        display: block !important;
        width: 100% !important;
    }

    .about-section.home-anim-about .col-12.col-md-6.col-lg-5,
    .about-section.home-anim-about .about-img-stack-mobile {
        overflow: visible !important;
        display: flex !important;
    }

    .about-img-mob-1 {
        width: 293px !important;
        height: 293px !important;
        left: 5% !important;
        top: 100px !important;
        z-index: 1 !important;
    }

    .about-img-mob-2 {
        width: 154px !important;
        height: 154px !important;
        right: calc((100% - 100vw) / 2) !important;
        top: 0 !important;
        z-index: 2 !important;
    }

    .about-img-mob-3 {
        width: 98px !important;
        height: 99px !important;
        right: calc((100% - 100vw) / 2) !important;
        top: 350px !important;
        z-index: 3 !important;
    }

    /* Buttons */
    .about-section.home-anim-about .d-flex.flex-wrap.gap-2 {
        justify-content: center !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .about-section.home-anim-about .btn-outline-dark,
    .about-section.home-anim-about .about-btn-outline {
        width: 260px !important;
        height: 48px !important;
        max-width: 260px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* "Where Trust meets Global Reach" */
    .about-section.home-anim-about h3.fw-semibold {
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #183158 !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
        max-width: 231px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    /* Stats */
    .about-section.home-anim-about .row.g-4.d-md-none .col-12>div {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        transform: none !important;
    }

    .about-section.home-anim-about .about-stat-number {
        font-size: 36px !important;
        font-weight: 600 !important;
        color: #E73161 !important;
    }

    .about-section.home-anim-about .text-dark.fw-medium {
        font-size: 14px !important;
        color: #183158 !important;
        max-width: 215px;
    }

    .about-section.home-anim-about .row.g-4.d-md-none {
        width: 100% !important;
        justify-content: center !important;
        gap: 0 !important;
        margin-top: 0px !important;
    }

    .about-section.home-anim-about .row.g-4.d-md-none .col-12 {
        margin-bottom: 25px !important;
    }
}


/* ───────── Featured Products Mobile Overrides ───────── */
@media (max-width: 767.98px) {
    .home-anim-featured .d-flex.flex-column.flex-sm-row {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 15px !important;
    }

    .featured-products-slider-outer {
        margin-top: 0px !important;
    }

    .featured-card-info {
        padding: 25px 28px !important;
    }

    .home-anim-featured {
        padding-bottom: 45px !important;
        padding-top: 30px !important;
    }

    .home-anim-featured h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
    }

    .home-anim-featured .about-btn-pink {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .home-anim-featured .about-btn-pink span {
        display: none !important;
    }

    .home-anim-featured .about-btn-pink svg {
        width: 9px !important;
        height: 9px !important;
        margin: 0 !important;
    }

    /* Card Slide */
    .featured-products-slide {
        width: 203px !important;
    }

    .featured-card-img {
        height: 203px !important;
    }

    .featured-card-info h3 {
        font-size: 18px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
    }

    .featured-card-arrow {
        width: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
        height: 30px !important;
        background: #E83161 !important;
    }

    .featured-card-arrow-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .featured-card-arrow-text {
        display: none !important;
    }

    .featured-card-arrow svg {
        width: 9px !important;
        height: 9px !important;
    }

    .home-anim-featured .featured-card-arrow:hover,
    .home-anim-featured .featured-card-arrow:focus-visible {
        background: #FFFFFF !important;
    }

    .home-anim-featured .featured-card-arrow:hover .featured-card-arrow-icon svg path,
    .home-anim-featured .featured-card-arrow:focus-visible .featured-card-arrow-icon svg path {
        fill: #E83161;
    }

    /* Slider Navigation Arrows */
    .home-anim-featured .kp-slider-nav {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .home-anim-featured .kp-slider-nav svg {
        width: 14px !important;
        height: 14px !important;
    }
}


/* ───────── Discover Brands Mobile Overrides ───────── */
@media (max-width: 711.98px) {
    .home-anim-discover .kp-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .home-anim-discover .row {
        width: 100% !important;
        display: flex !important;
        /* flex-direction: column !important; */
        align-items: start !important;
    }

    /* Heading: Discover New Brands... */
    .home-anim-discover h2 {
        font-size: 36px !important;
        font-weight: 600 !important;
        width: 322px !important;
        max-width: 322px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        color: #173158 !important;
    }

    /* Subtext below heading */
    .home-anim-discover p.mb-4.fw-regular,
    .home-anim-discover p.mb-4.fw-medium {
        font-size: 12px !important;
        color: #183158 !important;
        width: 280px !important;
        max-width: 322px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 35px !important;
    }

    /* Feature blocks (h3 and p) */
    .home-anim-discover h3 {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #E73161 !important;
        text-align: center !important;
    }

    .home-anim-discover h3+p {
        font-size: 12px !important;
        color: #183158 !important;
        text-align: center !important;
        max-width: 285px;
    }

    /* Brand Box */
    .home-anim-discover .discover-brands-card {
        width: 322px !important;
        height: 322px !important;
        min-height: 322px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 25px 24px 0 !important;
        border-radius: 0px !important;
    }

    .home-anim-discover h4.fw-semibold {
        font-size: 20px !important;
        font-weight: 600 !important;
        text-align: start !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        color: #183158 !important;
    }

    .home-anim-discover .discover-brands-grid {
        width: 274px !important;
        height: 213px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-content: space-between !important;
        margin: 0 auto !important;
    }

    .home-anim-discover .discover-brands-grid .discover-brands-item {
        width: 86px !important;
        height: 34px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .home-anim-discover .discover-brands-grid .discover-brands-item:nth-child(n+16) {
        display: none !important;
    }

    .home-anim-discover .discover-brands-logo {
        width: 86px !important;
        height: 34px !important;
        max-width: 86px !important;
        max-height: 34px !important;
        object-fit: contain !important;
    }

    /* Explore Brands Button (Outside) */
    .home-anim-discover .d-md-none .about-btn-pink {
        width: 260px !important;
        height: 48px !important;
        font-size: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 10px 20px !important;
        border: 2px solid #E83161 !important;
        font-weight: 500 !important;
    }

    .hot-offers-dots {
        margin-top: 35px !important;
    }

    .home-anim-discover .d-md-none .about-btn-pink svg {
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}


/* ───────── Hot Offers Mobile Overrides ───────── */
@media (max-width: 767.98px) {
    .home-anim-offers .d-flex.align-items-center.justify-content-between {
        margin-bottom: 15px !important;
    }

    .hot-offers-slider-outer {
        margin-top: 0px !important;
    }

    .home-offers-title {
        font-size: 24px !important;
        font-weight: 600 !important;
    }

    .cat-shop-all-btn {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 2px solid #E83161 !important;
    }

    .cat-shop-all-btn span {
        display: none !important;
    }

    .cat-shop-all-btn svg {
        width: 9px !important;
        height: 9px !important;
        margin: 0 !important;
    }

    /* Card Slide */
    .hot-offer-slide {
        width: 203px !important;
    }

    .hot-offer-card {
        height: 203px !important;
        border-radius: 0 !important;
    }

    .hot-offer-info {
        max-width: 142px !important;
        min-height: 142px !important;
        padding: 15px !important;
        /* justify-content: center !important; */
        /* background: rgba(26, 45, 80, 0.9) !important; */
        bottom: 7px;
        right: 9px;
    }

    .hot-offer-name {
        font-size: 16px !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
        color: #fff !important;
    }

    .hot-offer-desc {
        display: none !important;
    }

    .hot-offer-btn {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #E83161 !important;
        position: absolute !important;
        bottom: 15px !important;
        left: 15px !important;
    }

    .hot-offer-btn span {
        display: none !important;
    }

    .hot-offer-btn svg {
        width: 9px !important;
        height: 9px !important;
        margin: 0 !important;
    }

    /* Slider Navigation Arrows */
    .home-anim-offers .kp-slider-nav {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        top: 64% !important;
    }

    .home-anim-offers .kp-slider-nav svg {
        width: 14px !important;
        height: 14px !important;
    }
}


/* ───────── Reasons to Shop Mobile Overrides ───────── */
@media (max-width: 767.98px) {
    .home-anim-reasons .reasons-left-col {
        align-items: flex-start !important;
        margin-bottom: 20px !important;
        margin-top: 20px !important;
    }

    .reasons-main-box {
        width: 190px !important;
        height: 190px !important;
        min-height: 190px !important;
        padding: 20px !important;
        flex-grow: 0 !important;
    }

    .reasons-main-box h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
    }

    /* Card Slider / Grid */
    /* .home-anim-reasons .reasons-right-col {
            overflow: hidden !important;
        } */

    .reasons-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        transition: transform 0.3s ease !important;
        cursor: grab !important;
        gap: 15px !important;
        scrollbar-width: none !important;
        /* Hide scrollbar */
    }

    .reasons-grid::-webkit-scrollbar {
        display: none !important;
    }

    .reasons-grid-item {
        width: 300px !important;
        flex-shrink: 0 !important;
    }

    .reasons-grid-item>div {
        width: 300px !important;
        height: 300px !important;
        min-height: 300px !important;
        padding: 30px !important;
        /* background: #152C50 !important; Navy blue background as in image */
    }

    .reasons-grid-item div[style*="width:70px"] {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 25px !important;
    }

    .reasons-grid-item h3 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
        color: #fff !important;
    }

    .reasons-grid-item p {
        font-size: 14px !important;
        color: #FFFFFF !important;
        line-height: 1.5 !important;
    }

    /* Pagination Dots */
    .reasons-dot {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        border-radius: 0 !important;
        border: none !important;
        padding: 0 !important;
        transition: all 0.3s ease !important;
    }

    .reasons-dot.active {
        background: #E83161 !important;
    }
}

/* ───────── Reviews Desktop Overrides ───────── */
@media (min-width: 992px) {
    .reviews-section .kp-section-title {
        font-size: 48px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
    }
}

/* ───────── Reviews Mobile Overrides ───────── */
@media (max-width: 767.98px) {
    .reviews-section .reviews-topbar {
        margin-bottom: 24px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .reviews-section h2.kp-section-title {
        font-size: 24px !important;
        font-weight: 600 !important;
    }

    .reviews-see-all {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 2px solid #E83161 !important;
    }

    .reviews-see-all svg {
        width: 9px !important;
        height: 9px !important;
        margin: 0 !important;
    }

    .review-mobile-slider .review-slider-prev {
        left: calc((100vw - 323px) / -2) !important;
    }

    .review-mobile-slider .review-slider-next {
        right: calc((100vw - 323px) / -2) !important;
    }

    /* Rating Summary Box */
    .rating-summary {
        width: 322px !important;
        height: 322px !important;
        min-height: 322px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: #F8F9FA !important;
        padding: 30px !important;
        margin-bottom: 30px !important;
    }

    .rating-summary .stars {
        margin-bottom: 20px !important;
        display: flex !important;
        gap: 5px !important;
    }

    .rating-summary .stars svg {
        width: 30px !important;
        height: 30px !important;
        fill: #E83161 !important;
        color: #E83161 !important;
    }

    .rating-num {
        font-size: 36px !important;
        font-weight: 600 !important;
        color: #152C50 !important;
        display: block !important;
    }

    .rating-label {
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #152C50 !important;
        display: block !important;
    }

    /* Review Cards Slider */
    .review-mobile-slider {
        padding-bottom: 0px !important;
    }

    .review-mobile-slider .cat-slider-slide {
        width: 300px !important;
    }

    .review-mobile-slider .review-card {
        width: 300px !important;
        height: 300px !important;
        min-height: 300px !important;
        padding: 30px !important;
        border: 2px solid #EDEFF2 !important;
        background: #fff !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
    }

    .review-stars {
        margin-bottom: 15px !important;
        display: flex !important;
        gap: 4px !important;
    }

    .review-stars i {
        font-size: 16px !important;
        color: #E83161 !important;
    }

    .review-meta {
        font-size: 14px !important;
        color: #5D6F8A !important;
        margin-bottom: 15px !important;
    }

    .review-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
        color: #183158 !important;
    }

    /* Navigation Arrows */
    .review-mobile-slider .kp-slider-nav {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .review-mobile-slider .kp-slider-nav svg {
        width: 14px !important;
        height: 14px !important;
    }

    .review-mobile-slider .cat-slider-dots {
        margin-top: 30px !important;
    }

    /* ── Stay Updated Section ── */
    .stay-updated-section {
        padding: 0px !important;
    }

    .stay-updated-wrapper {
        align-items: center !important;
    }

    .stay-updated-text-box {
        width: 322px !important;
        height: 322px !important;
        /* margin: 0 auto 20px !important; */
        padding: 30px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .stay-updated-text-box h2 {
        font-size: 36px !important;
        font-weight: bold !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }

    .stay-updated-subtext {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        font-weight: 500 !important;
        opacity: 1 !important;
    }

    .stay-updated-small-text {
        font-size: 10px !important;
        line-height: 1.3 !important;
        opacity: 1 !important;
    }

    .stay-updated-image-box {
        width: 322px !important;
        height: 322px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    .stay-updated-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .stay-updated-bg-svg svg {
        width: 163px !important;
        height: 163px !important;
    }

    .stay-updated-arrow-mob svg {
        width: 40px !important;
        height: 40px !important;
    }

    /* ── Support & FAQ Mobile styles ── */
    .support-mobile-box {
        background: #F8F9FA !important;
        padding: 40px 20px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .support-mob-title {
        font-size: 36px !important;
        width: 290px !important;
        margin: 0 auto 20px !important;
        line-height: 1.1 !important;
        color: #173158 !important;
        font-weight: 600 !important;
    }

    .support-mob-subtext {
        font-size: 18px !important;
        line-height: 1.3 !important;
        color: #183158 !important;
        margin: 0 auto 15px !important;
        max-width: 320px !important;
    }

    .support-mob-small {
        font-size: 12px !important;
        line-height: 1.4 !important;
        opacity: 1 !important;
        margin: 0 auto 30px !important;
        color: #183158 !important;
        max-width: 320px !important;
    }

    .support-mob-btn {
        width: 260px !important;
        height: 48px !important;
        background: #E83161 !important;
        color: #fff !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        margin: 0 auto !important;
    }

    .faq-mobile-box {
        width: 322px !important;
        height: 322px !important;
        margin: 0 auto !important;
        padding: 20px 36px !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
    }

    .faq-mob-title {
        font-size: 20px !important;
        font-weight: 600 !important;
        color: #183158 !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }

    .faq-mob-subtext {
        font-size: 12px !important;
        color: #183158 !important;
        opacity: 1 !important;
        margin-bottom: 0px !important;
        text-align: left !important;
    }

    .faq-mobile-box .mt-3 {
        margin-top: 5px !important;
    }

    .cat-slider-dots-blog {
        margin-top: 25px !important;
        margin-bottom: 5px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .home-anim-blog .cat-slider-dot {
        width: 8px !important;
        height: 8px !important;
    }

    .faq-mob-item-text {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #173158 !important;
    }

    /* ── Blog Mobile Overrides ── */
    .home-anim-blog h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #173158 !important;
    }

    .blog-mobile-slider .blog-card .overflow-hidden {
        width: 203px !important;
        height: 203px !important;
    }

    .blog-meta-mob .blog-date-mob {
        font-size: 8px !important;
        color: #5D6F8A !important;
    }

    .blog-meta-mob .blog-separator-mob {
        color: #D1D1D1 !important;
        margin: 0 4px !important;
    }

    .blog-meta-mob .blog-category-mob {
        font-size: 8px !important;
        color: #183158 !important;
    }

    .blog-mobile-slider .blog-card .blog-title-mob {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #183158 !important;
    }
}

/* ───────── Reduced motion ───────── */

@media (prefers-reduced-motion: reduce) {

    .home-anim-benefits *,
    .home-anim-about *,
    .home-anim-about::before,
    .home-anim-featured *,
    .home-anim-discover *,
    .home-anim-offers *,
    .home-anim-offers::before,
    .home-anim-reasons *,
    .home-anim-reasons::before,
    .home-anim-reasons::after,
    .home-anim-blog * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .home-anim-about.is-in-view h2::after {
        width: 44% !important;
    }
}

/* ═══════════════════════════════════════════
   Hero Banner + Benefits Bar Responsive
   Tablet: 712px to 991.98px
   Laptop: 992px to 1639.98px
   PC (≥ 1640px) — UNTOUCHED
   ═══════════════════════════════════════════ */

@media (min-width: 768px) and (max-width: 991.98px) {
    html body .home-shop-cat .cat-shop-all-btn {
        display: flex !important;
        position: absolute !important;
        top: 0 !important;
        right: 20px !important;
        margin: 0 !important;
        z-index: 10 !important;
    }
}

/* ── Tablet (712px to 991.98px) ── */
@media (min-width: 712px) and (max-width: 991.98px) {

    html body .hero-section .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Hero: vertical column stack for tablet */
    html body .hero-section.hero-split {
        padding: 0 !important;
        overflow: hidden !important;
        display: block !important;
    }

    html body .hero-split-wrap {
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        max-width: 100% !important;
        padding: 0 20px;
        gap: 15px !important;
    }

    html body .hero-left-col {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        flex: none !important;
    }

    html body .hero-right-col {
        width: 100% !important;
        max-width: 100% !important;
        height: 380px !important;
        flex: none !important;
    }

    html body .hero-split-left {
        padding: 1.75rem 2rem !important;
    }

    html body .hero-split-left h1 {
        font-size: clamp(1.8rem, 4.2vw, 2.6rem) !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.1 !important;
    }

    html body .hero-split-left .hero-desc {
        font-size: clamp(0.95rem, 2.2vw, 1.15rem) !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.35 !important;
    }

    /* Tablet: hide sub-description and "Are you a brand?" link */
    html body .hero-split-left .hero-sub-desc {
        display: none !important;
    }

    html body .hero-split-left .kp-btn-pink {
        width: 170px !important;
        height: 48px !important;
        font-size: 13px !important;
    }

    html body .hero-inline-link {
        display: none !important;
    }

    html body .hero-arrow-chip-image {
        width: 46px !important;
    }

    html body .hero-arrow-chip-image svg {
        width: 46px !important;
        height: 46px !important;
    }

    /* Benefits bar on tablet: horizontal scroll (like mobile) */
    html body .home-anim-benefits .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    html body .home-anim-benefits .home-benefits-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 12px !important;
        padding: 4px 20px 12px !important;
        grid-template-columns: unset !important;
    }

    html body .home-anim-benefits .home-benefits-grid::-webkit-scrollbar {
        display: none !important;
    }

    html body .home-anim-benefits .home-benefit-card {
        flex: 0 0 auto !important;
        width: 220px !important;
        max-width: none !important;
        height: 68px !important;
        max-height: 68px !important;
    }

    html body .home-anim-benefits .home-benefit-icon {
        flex: 0 0 68px !important;
        width: 68px !important;
        height: 68px !important;
    }

    html body .home-anim-benefits .home-benefit-copy {
        flex: 1 !important;
        height: 68px !important;
        padding: 0.5rem 0.75rem 0.5rem 1rem !important;
    }

    html body .home-anim-benefits .home-benefit-copy p {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    /* Shop by Categories Section on Tablet */
    html body .home-shop-cat {
        padding: 60px 0 !important;
        height: auto !important;
    }

    html body .home-shop-cat .kp-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    html body .home-shop-cat .kp-section-title {
        font-size: clamp(24px, 4vw, 32px) !important;
        margin-bottom: 1.5rem !important;
    }

    html body .home-shop-cat .shop-cat-tab {
        width: 170px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
    }

    html body .home-shop-cat .shop-cat-tab .tab-icon-box {
        width: 40px !important;
        height: 40px !important;
    }

    html body .home-shop-cat .shop-cat-tab .tab-text-box {
        height: 40px !important;
        font-size: 13px !important;
        padding: 0 8px !important;
    }

    html body .home-shop-cat .shop-cat-tab-icon {
        width: 20px !important;
        height: 20px !important;
    }

    html body .home-shop-cat .shop-cat-tabs-scroll {
        position: relative !important;
        gap: 6px !important;
        padding: 5px !important;
    }

    /* Clip the track wrapper so slides don't overflow */
    html body .home-shop-cat .d-none.d-md-block {
        container-type: inline-size;
        container-name: home-shop-cat-vp;
        /* overflow: hidden !important; */
        position: relative !important;
        width: 100% !important;
    }

    html body .home-shop-cat .shop-slider-track {
        gap: 20px !important;
    }

    /* Slides: 3 per view with visible gaps between cards */
    html body .home-shop-cat .shop-slider-slide {
        flex: 0 0 calc((100cqw - 40px) / 3) !important;
        width: calc((100cqw - 40px) / 3) !important;
        max-width: calc((100cqw - 40px) / 3) !important;
        min-width: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Ensure product card and its image scale down dynamically to match the slide width */
    html body .home-shop-cat .product-card-v2 {
        width: 100% !important;
        max-width: 100% !important;
    }

    html body .home-shop-cat .product-card-v2 .card-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    html body .home-shop-cat .product-card-v2 .card-img img {
        max-width: 80% !important;
        height: auto !important;
        max-height: 80% !important;
        object-fit: contain !important;
    }

    /* Active panel has position relative to center arrows */
    html body .home-shop-cat .shop-cat-panel {
        position: relative !important;
    }

    /* Arrows: inside the padded container, not clipped because of padding */
    html body .home-shop-cat .shop-slider-prev {
        left: -20px !important;
        width: 40px !important;
        height: 40px !important;
        z-index: 30 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    html body .home-shop-cat .shop-slider-next {
        right: -20px !important;
        width: 40px !important;
        height: 40px !important;
        z-index: 30 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    html body .home-shop-cat .shop-slider-prev svg,
    html body .home-shop-cat .shop-slider-next svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Mobile slider markup (712–767): restore card gaps */
    html body .home-shop-cat .home-shop-cat-slider-wrap .cat-slider-track {
        gap: 16px !important;
    }

    html body .home-shop-cat .home-shop-cat-slider-wrap .cat-slider-slide {
        width: calc((100vw - 56px - 16px) / 2) !important;
        min-width: calc((100vw - 56px - 16px) / 2) !important;
        flex-shrink: 0 !important;
    }

    /* Narrower tablets: 2 cards per view with gap */
    @media (max-width: 820px) {
        html body .home-shop-cat .shop-slider-slide {
            flex: 0 0 calc((100cqw - 20px) / 2) !important;
            width: calc((100cqw - 20px) / 2) !important;
            max-width: calc((100cqw - 20px) / 2) !important;
        }
    }

    /* About / We're KeyPar Section on Tablet */
    html body .about-section.home-anim-about {
        padding: 60px 0 !important;
        height: auto !important;
        text-align: center !important;
    }

    html body .about-section.home-anim-about .kp-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    html body .about-section.home-anim-about .kp-container>.row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
        padding: 0 20px !important;
    }

    /* Separate We're KeyPar text at top and below show stats on left and images on right */
    html body .about-section.home-anim-about .kp-container>.row>div:nth-child(1) {
        grid-column: span 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    html body .about-section.home-anim-about .kp-container>.row>div:nth-child(2) {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    html body .about-section.home-anim-about .kp-container>.row>div:nth-child(3) {
        grid-column: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    html body .about-section.home-anim-about h2.display-5 {
        font-size: clamp(32px, 5vw, 42px) !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    html body .about-section.home-anim-about .about-text-wrapper {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    html body .about-section.home-anim-about .about-text-wrapper p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        max-width: 580px !important;
    }

    html body .about-section.home-anim-about .about-text-wrapper p:nth-of-type(1) {
        font-size: clamp(18px, 3vw, 22px) !important;
        font-weight: 600 !important;
        color: #1a2d50 !important;
        margin-bottom: 25px !important;
        max-width: 480px !important;
    }

    /* Stack buttons vertically and center them */
    html body .about-section.home-anim-about .d-flex.flex-wrap.gap-2 {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    html body .about-section.home-anim-about .btn-outline-dark,
    html body .about-section.home-anim-about .about-btn-outline {
        width: 290px !important;
        max-width: 290px !important;
        height: 48px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    /* Stats Section: Left-aligned for Tablet columns */
    html body .about-section.home-anim-about h3.fw-semibold {
        font-size: clamp(24px, 3.5vw, 28px) !important;
        font-weight: 600 !important;
        color: #183158 !important;
        margin-top: 0 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    html body .about-section.home-anim-about .d-none.d-md-block {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* gap: 25px !important; */
        width: 100% !important;
    }

    html body .about-section.home-anim-about .about-stat-number {
        font-size: clamp(32px, 4vw, 38px) !important;
        font-weight: 600 !important;
        color: #E83161 !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }

    html body .about-section.home-anim-about .fw-medium {
        font-size: 14px !important;
        color: #183158 !important;
        max-width: 100% !important;
    }

    /* Overlapping Image Stack: scaled down to fit tablet columns side-by-side with stats */
    html body .about-img-stack-desktop {
        width: 100% !important;
        max-width: 320px !important;
        min-height: auto !important;
        height: 320px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    html body .about-img-stack-desktop .about-img-1 {
        width: 260px !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        top: 40px !important;
        left: 0 !important;
    }

    html body .about-img-stack-desktop .about-img-2 {
        width: 130px !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        top: -15px !important;
        right: 0 !important;
    }

    html body .about-img-stack-desktop .about-img-3 {
        width: 70px !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        bottom: 50px !important;
        right: 20px !important;
    }

    html body .home-anim-about .about-img-stack-bg {
        display: none !important;
    }

    /* Featured Products Tablet overrides */
    html body .home-anim-featured .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        position: relative !important;
    }

    html body .home-anim-featured h2 {
        font-size: clamp(28px, 4.5vw, 36px) !important;
    }

    /* Show mobile slider markup on tablet instead of grid */
    html body .home-anim-featured .d-none.d-md-flex {
        display: none !important;
    }

    html body .home-anim-featured .d-md-none {
        display: block !important;
        position: relative !important;
    }

    html body .featured-products-slider-outer {
        position: relative !important;
        /* overflow: hidden !important; */
        width: 100% !important;
        padding: 0 !important;
    }

    /* Position navigation buttons on the edges overlapping the cards */
    html body .home-anim-featured .kp-slider-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    html body .home-anim-featured .kp-slider-nav svg {
        width: 16px !important;
        height: 16px !important;
        display: block !important;
    }

    html body .home-anim-featured #featuredPrev {
        left: -20px !important;
    }

    html body .home-anim-featured #featuredNext {
        right: -20px !important;
    }

    /* Set slides to show exactly 3 at a time on tablet */
    html body .home-anim-featured .featured-products-slide {
        width: calc((100% - 48px) / 3) !important;
        /* 3 slides, 2 gaps of 24px */
        flex-shrink: 0 !important;
    }

    /* Adjust card image sizing and make it square */
    html body .home-anim-featured .featured-card-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Optimize card details padding and typography */
    html body .home-anim-featured .featured-card-info {
        padding: clamp(14px, 2vw, 20px) !important;
    }

    html body .home-anim-featured .featured-card-info h3 {
        font-size: clamp(16px, 2.2vw, 22px) !important;
    }

    html body .home-anim-featured #featuredDots {
        display: none !important;
    }

    /* Best Offers Tablet overrides */
    html body .home-anim-offers .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        position: relative !important;
    }

    html body .home-offers-title {
        font-size: clamp(28px, 4.5vw, 36px) !important;
    }

    /* Make Shop All Offers button look like tablet (square pink border button) */
    html body .home-anim-offers .cat-shop-all-btn {
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 2px solid #E83161 !important;
    }

    html body .home-anim-offers .cat-shop-all-btn span {
        display: none !important;
    }

    html body .home-anim-offers .cat-shop-all-btn svg {
        width: 12px !important;
        height: 12px !important;
        margin: 0 !important;
    }

    /* Slider container and track */
    html body .hot-offers-slider-outer {
        position: relative !important;
        overflow: visible !important;
        /* allow buttons to sit on edges */
        width: 100% !important;
    }

    html body .home-anim-offers {
        overflow: hidden !important;
        /* hide track overflow on the section level */
    }

    /* Position navigation buttons on the edges overlapping the cards */
    html body .home-anim-offers .kp-slider-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    html body .home-anim-offers .kp-slider-nav svg {
        width: 16px !important;
        height: 16px !important;
        display: block !important;
    }

    html body .home-anim-offers #hotOffersPrev {
        left: -20px !important;
    }

    html body .home-anim-offers #hotOffersNext {
        right: -20px !important;
    }

    /* Set slide width to show ~1.5 cards (width: 440px) */
    html body .home-anim-offers .hot-offer-slide {
        width: 440px !important;
        flex-shrink: 0 !important;
    }

    /* Make card square */
    html body .home-anim-offers .hot-offer-card {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        margin: 0 !important;
    }

    /* Dark blue box on bottom-right */
    html body .home-anim-offers .hot-offer-info {
        width: 280px !important;
        height: 280px !important;
        max-width: 280px !important;
        min-height: 280px !important;
        bottom: 25px !important;
        right: 25px !important;
        left: auto !important;
        padding: 25px !important;
    }

    /* Hide description on tablet */
    html body .home-anim-offers .hot-offer-desc {
        display: none !important;
    }

    html body .home-anim-offers .hot-offer-name {
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #fff !important;
    }

    /* Explore button as square arrow */
    html body .home-anim-offers .hot-offer-btn {
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #E83161 !important;
        position: absolute !important;
        bottom: 25px !important;
        left: 25px !important;
    }

    html body .home-anim-offers .hot-offer-btn span {
        display: none !important;
    }

    html body .home-anim-offers .hot-offer-btn svg {
        width: 14px !important;
        height: 14px !important;
        margin: 0 !important;
    }

    /* Reasons to Shop Tablet Overrides */
    html body .home-anim-reasons {
        height: auto !important;
        padding: 60px 0 !important;
    }

    html body .home-anim-reasons .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    html body .reasons-layout-wrapper.row {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    html body .reasons-left-col {
        width: 100% !important;
        flex: none !important;
        max-width: none !important;
        padding: 0 !important;
    }

    html body .reasons-left-col .d-flex {
        display: flex !important;
        /* align-items: flex-start !important; */
        gap: 10px !important;
    }

    html body .reasons-main-box {
        width: 460px !important;
        height: 260px !important;
        min-height: 260px !important;
        padding: 30px !important;
        display: flex !important;
        align-items: flex-start !important;
        flex-shrink: 0 !important;
    }

    html body .reasons-main-box h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    /* Show the mobile arrow SVG on tablet, and make it look similar to the mobile layout */
    html body .home-anim-reasons .reasons-left-col .d-md-none {
        display: block !important;
        flex-shrink: 0 !important;
    }

    html body .home-anim-reasons .reasons-left-col .d-md-none svg {
        width: 80px !important;
        height: 80px !important;
        display: block !important;
    }

    /* Hide the desktop arrow box on tablet */
    html body .reasons-arrow-box {
        display: none !important;
    }

    html body .reasons-right-col {
        width: 100% !important;
        flex: none !important;
        max-width: none !important;
        margin-left: 0 !important;
    }

    html body .reasons-grid.row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    html body .reasons-grid-item {
        width: 100% !important;
        height: auto !important;
        min-height: 220px !important;
        max-width: none !important;
        flex: none !important;
    }

    html body .reasons-grid-item>div {
        height: 100% !important;
        padding: 24px !important;
    }

    /* Discover Brands Tablet — match desktop side-by-side + 3-column grid */
    html body .home-anim-discover .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    html body .home-anim-discover .kp-container>.row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 32px !important;
    }

    html body .home-anim-discover .col-md-5,
    html body .home-anim-discover .col-lg-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    html body .home-anim-discover .col-md-7,
    html body .home-anim-discover .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    html body .discover-brands-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 620px !important;
        padding: 32px 28px !important;
        margin: 0 !important;
    }

    html body .discover-brands-card .d-none.d-md-block {
        display: block !important;
    }

    html body .home-anim-discover .d-md-none {
        display: none !important;
    }

    html body .discover-brands-grid {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }

    html body .discover-brands-grid .discover-brands-item {
        flex: 0 0 33.333333% !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        height: 64px !important;
        padding: 0 8px !important;
        margin-bottom: 1.25rem !important;
    }

    html body .discover-brands-logo {
        max-height: 40px !important;
        max-width: 100% !important;
    }
}

/* ── Laptop (992px to 1639.98px) ── */
@media (min-width: 992px) and (max-width: 1639.98px) {

    /* Hero: two-column split, scaled to viewport */
    html body .hero-section.hero-split {
        padding: 0 !important;
        overflow: hidden !important;
        display: flex;
    }

    html body .hero-split-wrap {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        height: clamp(440px, 38vw, 560px) !important;
        min-height: clamp(440px, 38vw, 560px) !important;
        max-height: clamp(440px, 38vw, 560px) !important;
        max-width: 100% !important;
        padding: 0 40px !important;
    }

    html body .hero-left-col {
        width: calc((1030 / 1640) * 100%) !important;
        height: clamp(440px, 38vw, 560px) !important;
        flex: none !important;
    }

    html body .hero-right-col {
        width: calc((600 / 1640) * 100%) !important;
        height: clamp(440px, 38vw, 560px) !important;
        flex: none !important;
    }

    html body .hero-split-left {
        padding: clamp(1.75rem, 3vw, 3.35rem) clamp(2rem, 3.5vw, 52px) !important;
    }

    html body .hero-split-left h1 {
        font-size: 50px !important;
        margin-bottom: 0.85rem !important;
        line-height: 1.05 !important;
    }

    html body .hero-split-left .hero-desc {
        font-size: 25px !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.25 !important;
    }

    html body .hero-split-left .hero-sub-desc {
        font-size: clamp(0.875rem, 1.2vw, 1rem) !important;
        margin-bottom: 1.25rem !important;
    }

    html body .hero-split-left .kp-btn-pink {
        width: clamp(170px, 13vw, 210px) !important;
        height: clamp(50px, 4vw, 60px) !important;
        font-size: clamp(13px, 1.1vw, 16px) !important;
    }

    html body .hero-inline-link {
        font-size: clamp(0.875rem, 1vw, 1.05rem) !important;
    }

    /* Benefits bar on laptop: 4-column grid, properly sized cards */
    html body .home-anim-benefits .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    html body .home-anim-benefits .home-benefits-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }

    html body .home-anim-benefits .home-benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 72px !important;
        max-height: 72px !important;
    }

    html body .home-anim-benefits .home-benefit-icon {
        flex: 0 0 72px !important;
        width: 72px !important;
        height: 72px !important;
    }

    html body .home-anim-benefits .home-benefit-copy {
        height: 72px !important;
        padding: 0.75rem 0.75rem 0.75rem 1.5rem !important;
    }

    html body .home-anim-benefits .home-benefit-copy p {
        font-size: clamp(14px, 1.2vw, 17px) !important;
        line-height: 1.2 !important;
    }

    /* Shop by Categories Section on Laptop */
    html body .home-shop-cat {
        padding: 80px 0 !important;
        height: auto !important;
    }

    html body .home-shop-cat .kp-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html body .home-shop-cat .kp-section-title {
        font-size: clamp(30px, 3.5vw, 38px) !important;
        margin-bottom: 2rem !important;
    }

    html body .home-shop-cat-toolbar {
        margin-bottom: 2rem !important;
    }

    html body .home-shop-cat .shop-cat-tab {
        width: 190px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
    }

    html body .home-shop-cat .shop-cat-tab .tab-icon-box {
        width: 44px !important;
        height: 44px !important;
    }

    html body .home-shop-cat .shop-cat-tab .tab-text-box {
        height: 44px !important;
        font-size: 14px !important;
    }

    html body .home-shop-cat .shop-cat-tab-icon {
        width: 22px !important;
        height: 22px !important;
    }

    html body .home-shop-cat .shop-cat-tabs-scroll {
        position: relative !important;
        gap: 8px !important;
    }

    /* Clip the track wrapper so slides don't overflow */
    html body .home-shop-cat .d-none.d-md-block {
        overflow: visible !important;
        position: relative !important;
        width: 100% !important;
    }

    /* Slides: 3 columns per page for w < 1400px, 4 columns for w >= 1400px */
    html body .home-shop-cat .shop-slider-slide {
        flex-shrink: 0 !important;
    }

    /* Ensure product card and its image scale down dynamically to match the slide width */
    html body .home-shop-cat .product-card-v2 {
        width: 100% !important;
        max-width: 100% !important;
    }

    html body .home-shop-cat .product-card-v2 .card-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    html body .home-shop-cat .product-card-v2 .card-img img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 80% !important;
        object-fit: contain !important;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    html body .home-shop-cat .shop-slider-slide {
        width: calc((100% - 40px) / 3) !important;
    }
}

@media (min-width: 1400px) and (max-width: 1639.98px) {
    html body .home-shop-cat .shop-slider-slide {
        width: calc((100% - 60px) / 4) !important;
    }
}

@media (min-width: 992px) and (max-width: 1639.98px) {

    /* Active panel has position relative to center arrows */
    html body .home-shop-cat .shop-cat-panel {
        position: relative !important;
    }

    /* Arrows: inside the padded container, not clipped because of padding */
    html body .home-shop-cat .shop-slider-prev {
        left: -40px !important;
        width: 50px !important;
        height: 50px !important;
        z-index: 30 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    html body .home-shop-cat .shop-slider-next {
        right: -40px !important;
        width: 50px !important;
        height: 50px !important;
        z-index: 30 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    html body .home-shop-cat .shop-slider-prev svg,
    html body .home-shop-cat .shop-slider-next svg {
        width: 18px !important;
        height: 18px !important;
    }

    html body .about-section.home-anim-about {
        padding: 80px 0 !important;
        height: auto !important;
    }

    html body .about-section.home-anim-about .row {
        padding: 0 40px !important;
    }

    html body .about-section.home-anim-about h2.display-5 {
        font-size: clamp(36px, 3.5vw, 44px) !important;
        margin-bottom: 2rem !important;
    }

    html body .about-section.home-anim-about .about-text-wrapper p {
        font-size: clamp(14px, 1.2vw, 15px) !important;
        margin-bottom: 1.25rem !important;
    }

    html body .about-section.home-anim-about .about-text-wrapper p:nth-of-type(1) {
        font-size: clamp(18px, 1.6vw, 22px) !important;
        margin-bottom: 2rem !important;
    }

    html body .about-section.home-anim-about h3.fw-semibold {
        font-size: clamp(26px, 2.5vw, 32px) !important;
        margin-top: 0 !important;
        margin-bottom: 2.5rem !important;
    }

    /* Stats values styling */
    html body .about-section.home-anim-about .about-stat-number {
        font-size: clamp(32px, 3vw, 40px) !important;
        margin-bottom: 4px !important;
    }

    /* Overlapping Image Stack: scales proportionally on laptop */
    html body .about-img-stack-desktop {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: clamp(480px, 34vw, 640px) !important;
        margin-top: 50px !important;
    }

    html body .about-img-stack-desktop .about-img-1 {
        width: 70% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        top: 50px !important;
        left: 95px !important;
    }

    html body .about-img-stack-desktop .about-img-2 {
        width: 35% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        top: -50px !important;
        right: -4% !important;
    }

    html body .about-img-stack-desktop .about-img-3 {
        width: 25% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        bottom: 20% !important;
        right: 8% !important;
    }

    html body .home-anim-about .about-img-stack-bg {
        top: -135px !important;
        right: -38px !important;
        width: 500px !important;
    }

    /* Featured Products Laptop overrides */
    html body .home-anim-featured .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        position: relative !important;
    }

    html body .home-anim-featured h2 {
        font-size: clamp(36px, 4vw, 44px) !important;
    }

    html body .home-anim-featured .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    html body .home-anim-featured .row>.col {
        flex: 0 0 25% !important;
        width: 25% !important;
        max-width: 25% !important;
    }

    html body .home-anim-featured .featured-card-img {
        width: 100% !important;
        max-width: 388px !important;
        margin: 0 auto !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    html body .home-anim-featured .featured-card-info {
        padding: clamp(20px, 2.5vw, 32px) !important;
    }

    html body .home-anim-featured .featured-card-info h3 {
        font-size: clamp(22px, 2vw, 28px) !important;
    }

    /* Best Offers Laptop overrides */
    html body .home-anim-offers .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        position: relative !important;
    }

    html body .home-offers-title {
        font-size: clamp(36px, 4vw, 44px) !important;
    }

    /* Slider showing exactly 3 cards at a time on laptop */
    /* html body .home-anim-offers .hot-offer-slide {
    width: calc((100% - 60px) / 3) !important;
    flex-shrink: 0 !important;
  } */

    /* Make card square */
    html body .home-anim-offers .hot-offer-card {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        margin: 0 !important;
    }

    /* Dark blue box on bottom-left, responsive dimensions */
    /* html body .home-anim-offers .hot-offer-info {
    width: 80% !important;
    height: 80% !important;
    bottom: 5% !important;
    left: 5% !important;
    right: auto !important;
    padding: clamp(20px, 2.5vw, 36px) !important;
  } */

    /* Text and description visible */
    html body .home-anim-offers .hot-offer-desc {
        display: block !important;
        font-size: clamp(12px, 1.2vw, 15px) !important;
        line-height: 1.4 !important;
        margin-bottom: 25px !important;
    }

    html body .home-anim-offers .hot-offer-name {
        font-size: clamp(20px, 2.2vw, 28px) !important;
        margin-bottom: 15px !important;
        color: #fff !important;
    }

    /* Explore button as rectangular text button */
    html body .home-anim-offers .hot-offer-btn {
        width: fit-content !important;
        height: auto !important;
        padding: clamp(8px, 1vw, 12px) clamp(16px, 1.5vw, 24px) !important;
        display: inline-flex !important;
    }

    html body .home-anim-offers .hot-offer-btn span {
        display: inline !important;
        font-size: clamp(11px, 1.1vw, 13px) !important;
    }

    html body .home-anim-offers .hot-offer-btn svg {
        width: 10px !important;
        height: 10px !important;
    }

    /* Position navigation buttons on the edges */
    html body .home-anim-offers .kp-slider-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    html body .home-anim-offers #hotOffersPrev {
        left: 0px !important;
    }

    html body .home-anim-offers #hotOffersNext {
        right: 0px !important;
    }

    /* Reasons to Shop Laptop Overrides */
    html body .home-anim-reasons {
        height: auto !important;
        padding: 80px 0 !important;
    }

    html body .home-anim-reasons .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    html body .reasons-layout-wrapper.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 30px !important;
    }

    html body .reasons-left-col {
        width: 320px !important;
        flex: 0 0 320px !important;
        max-width: 320px !important;
        align-items: flex-start !important;
    }

    html body .reasons-main-box {
        width: 320px !important;
        height: 320px !important;
        padding: 30px !important;
    }

    html body .reasons-main-box h2 {
        font-size: clamp(24px, 2.5vw, 36px) !important;
    }

    html body .reasons-arrow-box {
        width: 100px !important;
        height: 100px !important;
        margin-top: 20px !important;
    }

    html body .reasons-arrow-box svg {
        width: 100% !important;
        height: 100% !important;
    }

    html body .reasons-right-col {
        width: auto !important;
        flex: 1 !important;
        max-width: none !important;
        margin-left: 0 !important;
    }

    html body .reasons-grid.row {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-template-rows: auto !important;
        gap: 20px !important;
    }

    html body .reasons-grid-item {
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        max-width: none !important;
        flex: none !important;
    }

    html body .reasons-grid-item>div {
        height: 100% !important;
        padding: 24px !important;
    }

    /* Discover Brands Laptop — same layout as desktop */
    html body .home-anim-discover .kp-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    html body .home-anim-discover .kp-container>.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        gap: clamp(24px, 3vw, 48px) !important;
    }

    html body .home-anim-discover .col-md-5,
    html body .home-anim-discover .col-lg-5 {
        width: 41.666667% !important;
        max-width: 41.666667% !important;
        flex: 0 0 41.666667% !important;
    }

    html body .home-anim-discover .col-md-7,
    html body .home-anim-discover .col-lg-7 {
        width: 58.333333% !important;
        max-width: 58.333333% !important;
        flex: 0 0 58.333333% !important;
    }

    html body .discover-brands-card {
        width: 100% !important;
        max-width: 760px !important;
        min-height: 760px !important;
        padding: 40px 48px !important;
        margin: 0 0 0 auto !important;
    }

    html body .discover-brands-grid {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }

    html body .discover-brands-grid .discover-brands-item {
        flex: 0 0 33.333333% !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        height: 80px !important;
        padding: 0 10px !important;
        margin-bottom: 1.5rem !important;
    }

    html body .discover-brands-logo {
        max-height: 48px !important;
        max-width: 100% !important;
    }
}