/* ==== Everest Store (page-specific) ==== */
:root {
    --ink: #0b2a4a;
    /* headings */
    --muted: #667085;
    /* body */
    --leaf: #2a9d8f;
    /* accent */
    --royal: #0b2a4a;
    /* brand */
    --royal-50: #f4f6fa;
    /* soft bg */
    --ring: rgba(42, 157, 143, .22);
    --shadow: 0 10px 30px rgba(11, 42, 74, .10);
    --radius: 16px;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
}
/* h1,h3,h2{
    color: #fff;
} */

/* Buttons (page) */
.btn-pill {
    border-radius: 999px;
    padding: .7rem 1.2rem;
    font-weight: 700;
    background: var(--royal);
    color: #fff !important;
    border: none;
}
.btn-pill-enquire{
    border-radius: 999px;
    padding: .7rem 1.2rem;
    font-weight: 700;
    /* background: var(--royal); */
    color: #fff !important;
    border: none;
    background: linear-gradient(135deg, var(--royal), var(--leaf));
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.btn-outline-light.btn-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
}

.btn-outline-light.btn-pill:hover {
    background: #fff;
    color: var(--royal) !important
}

/* Hero */
.store-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.store-hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% 0 -10%;
    background: url('https://images.pexels.com/photos/7055763/pexels-photo-7055763.jpeg?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    transform: translateY(var(--parallax, 0px));
    will-change: transform;
    filter: contrast(1.05) saturate(1.05);
}

.store-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 42, 74, .88), rgba(42, 157, 143, .75));
}

.store-hero .hero-wrap {
    position: relative;
    z-index: 2;
    padding: 72px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18rem;
    font-weight: 700;
    opacity: .95
}

.store-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin: .35rem 0 .8rem
}

.store-hero .lead {
    max-width: 920px;
    opacity: .96
}

/* Toolbar */
.toolbar {
    margin-top: -40px;
    position: relative;
    z-index: 3
}

.toolbar .card {
    border-radius: 14px;
    border: 1px solid rgba(11, 42, 74, .06);
    box-shadow: var(--shadow)
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 42, 74, .12);
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    margin: .25rem;
    color: var(--ink);
    text-decoration: none
}

.chip:hover,
.chip.active {
    border-color: var(--leaf);
    box-shadow: 0 0 0 6px var(--ring);
    color: var(--ink);
}

/* Sections */
.section-pad {
    padding: 64px 0;
    background: #fff
}

.section-pad.alt {
    background: var(--royal-50)
}

.section-head .badge-soft {
    display: inline-block;
    background: var(--royal-50);
    color: var(--royal);
    border-radius: 999px;
    font-weight: 700;
    padding: .25rem .7rem
}

.section-head h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin: .35rem 0 .25rem
}

.section-head p {
    max-width: 760px;
    margin: 0 auto
}

/* Product Card */
.product {
    background: #fff;
    border: 1px solid rgba(11, 42, 74, .08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(10, 44, 79, .16)
}

.product .media {
    height: 250px;
    background: #e8f4f1;
    overflow: hidden;
    flex-shrink: 0;
}

.product .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease
}

.product:hover .media img {
    transform: scale(1.06)
}

/* Pilates Machines - Portrait Image Cards */
#pilates-machines .product .media {
    height: auto;
    aspect-ratio: 0.8;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f1 100%);
}

#pilates-machines .product .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transform: scale(1);
}

#pilates-machines .product:hover .media img {
    transform: scale(1.03);
}

#pilates-machines .product .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product .content {
    padding: 16px 16px 18px
}

.product h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 .25rem
}

.product p {
    margin-bottom: .6rem;
    color: var(--muted)
}

.meta .tag {
    display: inline-block;
    border: 1px solid rgba(11, 42, 74, .14);
    border-radius: 999px;
    padding: .2rem .55rem;
    font-size: .78rem;
    font-weight: 700;
    margin-right: .25rem;
    margin-bottom: .25rem
}

/* Pilates Machines - Enhanced Content Layout */
#pilates-machines .product h5 {
    font-size: 1.15rem;
    color: var(--royal);
    margin-bottom: .5rem;
}

#pilates-machines .product p {
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: .8rem;
    flex-grow: 1;
}

#pilates-machines .product .meta {
    margin-bottom: .8rem;
}

#pilates-machines .product .btn-pill {
    align-self: flex-start;
}

/* Machine Rows */
.machine-row {
    margin-top: 32px;
    margin-bottom: 32px
}

.machine-media {
    border-radius: 16px;
    overflow: hidden
}

.machine-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block
}

.shadowed {
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 42, 74, .08)
}

.machine-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: .35rem
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .4rem;
    margin: .35rem 0 .2rem
}

.bullets span {
    display: inline-block;
    background: var(--royal-50);
    color: var(--royal);
    font-weight: 700;
    border-radius: 999px;
    padding: .25rem .6rem;
    font-size: .82rem
}

/* Bundles */
.bundle {
    background: #fff;
    border: 1px solid rgba(11, 42, 74, .08);
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex
}

.bundle .content {
    padding: 18px
}

.bundle h5 {
    font-weight: 700;
    margin: 0 0 .4rem
}

.bundle .meta.compact span {
    display: inline-block;
    margin-right: .4rem;
    font-size: .85rem;
    background: var(--royal-50);
    color: var(--royal);
    font-weight: 700;
    border-radius: 999px;
    padding: .2rem .55rem
}

/* Why cards */
.card-why {
    background: #fff;
    border: 1px solid rgba(11, 42, 74, .08);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
    text-align: center;
    height: 100%
}

.card-why i {
    font-size: 1.6rem;
    margin-bottom: .4rem;
    color: var(--leaf)
}

.card-why h6 {
    font-weight: 700;
    margin-bottom: .25rem
}

/* CTA */
.cta-strip {
    background: linear-gradient(135deg, var(--royal), var(--leaf));
    color: #fff;
    padding: 56px 0
}

.cta-strip h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: .35rem
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(16px)
}

.reveal.in {
    opacity: 1;
    transform: none;
    transition: opacity .55s ease, transform .55s ease
}

/* Parallax reduce motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none
    }
}

/* ---------------------- Responsive tweaks ---------------------- */
@media (max-width: 991.98px) {
    /* Reduce hero padding on tablet and smaller */
    .store-hero {
        min-height: auto;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .store-hero .hero-wrap {
        padding: 36px 0;
    }

    /* Toolbar sits inline rather than overlapping */
    .toolbar {
        margin-top: 0;
    }

    .toolbar .card {
        padding: .6rem;
    }

    /* Slightly shorter product images so cards stay compact on narrow screens */
    .product .media {
        height: 160px;
    }

    /* Machine images less tall on tablet */
    .machine-media img {
        height: 220px;
    }

    /* Bundles stack vertically on narrow screens */
    .bundle {
        flex-direction: column;
    }

    .bundle .content {
        padding: 12px;
    }

    /* Reduce spacing on section heads */
    .section-pad {
        padding: 40px 0;
    }
}

@media (max-width: 575.98px) {
    /* Mobile-specific compacting */
    .store-hero .lead {
        padding: 0 1rem;
        font-size: .95rem;
    }

    .store-hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.3rem);
        margin-bottom: .5rem;
    }

    .product .media {
        height: 140px;
    }

    .machine-media img {
        height: 180px;
    }

    .chip {
        padding: .45rem .75rem;
        font-size: .9rem;
    }

    .product .content {
        padding: 12px;
    }

    .cta-strip {
        padding: 32px 0;
    }

    /* Make toolbar comfortable in small viewports */
    .toolbar .card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure large shadows don't push the layout */
    .product, .bundle, .card-why {
        box-shadow: 0 8px 20px rgba(11,42,74,.08);
    }
}