/* ==========================================================================
   WELLNESS THEME - HEADER SYSTEM
   Based on the proven Event Organiser header architecture
   ========================================================================== */

.wellness-site-header,
.wellness-site-header *,
.wellness-mobile-menu,
.wellness-mobile-menu * {
    box-sizing: border-box;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.wellness-site-header {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: var(--wellness-header-bg);
}

.wellness-header-main {
    position: relative;
    width: 100%;
    background: var(--wellness-navigation-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wellness-header-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.wellness-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* ==========================================================================
   LOGO
   ========================================================================== */

.wellness-header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.wellness-header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.wellness-header-logo img {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 66px;
    object-fit: contain;
}


/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */

.wellness-header-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.wellness-header-navigation nav {
    width: auto;
}

.wellness-navigation {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.wellness-navigation > li {
    position: relative;
    list-style: none;
}

.wellness-navigation > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 34px 13px;
    color: var(--wellness-menu-colour);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.wellness-navigation > li > a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 23px;
    height: 1px;
    background: var(--wellness-hover-colour);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.wellness-navigation > li:hover > a,
.wellness-navigation > li:focus-within > a {
    color: var(--wellness-hover-colour);
}

.wellness-navigation > li:hover > a::after,
.wellness-navigation > li:focus-within > a::after {
    transform: scaleX(1);
}

.wellness-navigation > li > a i {
    font-size: 11px;
}


/* ==========================================================================
   DROPDOWNS
   ========================================================================== */

.wellness-submenu {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: 230px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: var(--wellness-dropdown-bg);
    border-radius: 4px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    z-index: 1100;
}

.wellness-navigation > li:hover > .wellness-submenu,
.wellness-navigation > li:focus-within > .wellness-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wellness-submenu li {
    display: block;
    width: 100%;
    list-style: none;
}

.wellness-submenu li a {
    display: block;
    padding: 11px 18px;
    color: var(--wellness-dropdown-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.wellness-submenu li a:hover,
.wellness-submenu li a:focus {
    color: var(--wellness-dropdown-hover);
    padding-left: 22px;
}


/* ==========================================================================
   HEADER ACTIONS
   ========================================================================== */

.wellness-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.wellness-header-icon-btn,
.wellness-header-cart,
.wellness-header-account {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--wellness-menu-colour);
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.wellness-header-icon-btn:hover,
.wellness-header-cart:hover,
.wellness-header-account:hover {
    color: var(--wellness-hover-colour);
    background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   HEADER MINI BASKET
   ========================================================================== */

.wellness-header-cart-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.wellness-header-cart-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.wellness-mini-cart {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 6000;

    width: 360px;
    max-width: calc(100vw - 24px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.wellness-header-cart-wrap:hover .wellness-mini-cart,
.wellness-header-cart-wrap:focus-within .wellness-mini-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    pointer-events: auto;
}

.wellness-mini-cart-inner {
    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;

    border: 1px solid rgba(10, 18, 24, 0.10);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.16);
}

.wellness-mini-cart-top {
    display: flex;
    align-items: center;
    justify-content: wellness-between;
    gap: 12px;

    padding: 16px 18px;

    background: var(--wellness-header-bg);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wellness-mini-cart-title {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

.wellness-mini-cart-count {
    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
}

.wellness-mini-cart-items {
    max-height: 320px;
    overflow-y: auto;
}

.wellness-mini-cart-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;

    padding: 13px 16px;

    border-bottom: 1px solid rgba(10, 18, 24, 0.07);
}

.wellness-mini-cart-thumb {
    width: 54px;
    height: 54px;

    overflow: hidden;

    border-radius: 10px;

    background: #f4f4f4;
}

.wellness-mini-cart-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.wellness-mini-cart-content {
    min-width: 0;
}

.wellness-mini-cart-name {
    color: #1a2730;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.35;
}

.wellness-mini-cart-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 5px;

    color: #74808a;

    font-size: 11px;
}

.wellness-mini-cart-price {
    color: #1a2730;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.wellness-mini-cart-more {
    padding: 10px 16px;

    color: #74808a;

    font-size: 11px;

    text-align: center;

    border-bottom: 1px solid rgba(10, 18, 24, 0.07);
}

.wellness-mini-cart-summary {
    display: flex;
    align-items: center;
    justify-content: wellness-between;
    gap: 12px;

    padding: 14px 16px;

    color: #52606a;

    font-size: 13px;

    border-bottom: 1px solid rgba(10, 18, 24, 0.07);
}

.wellness-mini-cart-summary strong {
    color: #17232b;

    font-size: 15px;
}

.wellness-mini-cart-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;

    padding: 14px 16px;
}

.wellness-mini-cart-button {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.2s ease;
}

.wellness-mini-cart-button-light {
    background: #f5f6f7;

    color: #25323a;

    border: 1px solid rgba(10, 18, 24, 0.08);
}

.wellness-mini-cart-button-light:hover {
    background: #ebedef;

    color: #17232b;
}

.wellness-mini-cart-button-primary {
    background: var(--wellness-accent-bg);

    color: var(--wellness-accent-text);

    border: 1px solid transparent;
}

.wellness-mini-cart-button-primary:hover {
    background: var(--wellness-hover-colour);

    color: #ffffff;
}

.wellness-mini-cart-empty {
    padding: 24px 18px;

    color: #6d7880;

    font-size: 13px;

    text-align: center;
}


/* ==========================================================================
   SOCIAL ICONS
   ========================================================================== */

.wellness-header-social {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 2px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.wellness-header-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wellness-social-colour);
    text-decoration: none;
    font-size: 13px;
    border-radius: 50%;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.wellness-header-social a:hover {
    color: var(--wellness-social-hover);
    transform: translateY(-2px);
}

.wellness-header-social img {
    width: 11px;
    height: 11px;
    object-fit: contain;
}


/* ==========================================================================
   CART COUNT
   ========================================================================== */

.wellness-cart-count {
    position: absolute;
    top: 1px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--wellness-accent-bg);
    color: var(--wellness-accent-text);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}


/* ==========================================================================
   LOGIN / REGISTER
   ========================================================================== */

.wellness-header-auth {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.wellness-login-link,
.wellness-register-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 9px 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--wellness-menu-colour);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wellness-login-link:hover,
.wellness-register-link:hover {
    background: transparent;
    border-color: transparent;
    color: var(--wellness-hover-colour);
}

.wellness-register-link::before {
    content: "";
    width: 1px;
    height: 13px;
    margin-right: 10px;
    background: var(--wellness-menu-colour);
    opacity: 0.3;
}

/* ==========================================================================
   BOOK A READING BUTTON
   ========================================================================== */

.wellness-header-booking {
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.wellness-booking-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--wellness-booking-bg);
    border-radius: 3px;
    background: var(--wellness-booking-bg);
    color: var(--wellness-booking-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.025em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.wellness-booking-btn:hover {
    background: transparent;
    color: var(--wellness-hover-colour);
    border-color: var(--wellness-hover-colour);
    transform: translateY(-1px);
}


/* ==========================================================================
   MOBILE TOGGLE
   ========================================================================== */

.wellness-mobile-toggle {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.wellness-mobile-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--wellness-menu-colour);
    transition: background 0.2s ease;
}

.wellness-mobile-toggle:hover span {
    background: var(--wellness-hover-colour);
}


/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */

.wellness-search-panel {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 110px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.wellness-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wellness-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
}

.wellness-search-box {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 40px));
    padding: 38px;
    border-radius: 16px;
    background: var(--wellness-navigation-bg);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.wellness-search-heading {
    margin-bottom: 20px;
    color: #06234b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.wellness-search-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #06234b;
    font-size: 18px;
    cursor: pointer;
}

.wellness-search-close:hover {
    color: var(--wellness-hover-colour);
}

.wellness-search-form {
    position: relative;
    display: flex;
    align-items: stretch;
}

.wellness-search-form input {
    width: 100%;
    height: 56px;
    padding: 0 58px 0 18px;
    border: 0px solid rgba(6, 35, 75);
    border-radius: 0;
    outline: none;
    background: #06234b;
    color: #fff;
    font-size: 15px;
}

.wellness-search-form input::placeholder {
    color: var(--menu-colour);
    opacity: 0.65;
}

.wellness-search-form input:focus {
    border-color: var(--hover-colour);
}

.wellness-search-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #06234b;
    color: var(--accent-text);
    cursor: pointer;
}


/* ==========================================================================
   STICKY HEADER
   ========================================================================== */

.wellness-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    background: var(--wellness-header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.wellness-sticky-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wellness-sticky-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.wellness-sticky-logo {
    flex: 0 0 auto;
}

.wellness-sticky-logo a {
    display: flex;
    align-items: center;
}

.wellness-sticky-logo img {
    display: block;
    width: auto;
    max-width: 185px;
    max-height: 50px;
    object-fit: contain;
}

.wellness-sticky-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.wellness-sticky-header .wellness-navigation > li > a {
    padding-top: 27px;
    padding-bottom: 27px;
}

.wellness-sticky-header .wellness-navigation > li > a::after {
    bottom: 18px;
}

.wellness-sticky-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* ==========================================================================
   MOBILE OFFCANVAS
   ========================================================================== */

.wellness-mobile-menu {
    width: min(400px, 92vw) !important;
    background: var(--wellness-navigation-bg);
    color: var(--wellness-menu-colour);
}

.wellness-mobile-menu .offcanvas-header {
    min-height: 82px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.wellness-mobile-menu .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.wellness-mobile-logo {
    display: inline-flex;
    align-items: center;
}

.wellness-mobile-logo img {
    width: auto;
    max-width: 190px;
    max-height: 52px;
    object-fit: contain;
}

.wellness-mobile-menu .offcanvas-body {
    padding: 22px;
}


/* Mobile booking */

.wellness-mobile-booking {
    margin-bottom: 22px;
}

.wellness-mobile-booking-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid var(--wellness-booking-bg);
    border-radius: 3px;
    background: var(--wellness-booking-bg);
    color: var(--wellness-booking-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


/* Mobile navigation */

.wellness-mobile-navigation,
.wellness-mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wellness-mobile-navigation > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.wellness-mobile-nav-row {
    display: flex;
    align-items: center;
}

.wellness-mobile-nav-row > a {
    flex: 1;
    padding: 15px 0;
    color: var(--wellness-menu-colour);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.wellness-mobile-nav-row > button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--wellness-menu-colour);
}

.wellness-mobile-submenu {
    padding: 0 0 12px 14px;
}

.wellness-mobile-submenu li a {
    display: block;
    padding: 9px 0;
    color: var(--wellness-dropdown-text);
    font-size: 14px;
    text-decoration: none;
    opacity: 0.85;
}


/* Mobile account */

.wellness-mobile-account,
.wellness-mobile-basket,
.wellness-mobile-social,
.wellness-mobile-language {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.wellness-mobile-account-btn,
.wellness-mobile-basket > a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wellness-menu-colour);
    text-decoration: none;
}

.wellness-mobile-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wellness-mobile-login,
.wellness-mobile-register {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--wellness-menu-colour);
    text-decoration: none;
}

.wellness-mobile-register {
    background: var(--register-bg);
    color: var(--register-text);
}

.wellness-mobile-cart-count {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--accent-bg);
    color: var(--accent-text);
    font-size: 10px;
}


/* Mobile social */

.wellness-mobile-social-title,
.wellness-mobile-language-title {
    margin-bottom: 12px;
    color: var(--menu-colour);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wellness-mobile-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wellness-mobile-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--social-colour);
    text-decoration: none;
}

.wellness-mobile-social-links a:hover {
    color: var(--social-hover);
    border-color: var(--social-hover);
}

.wellness-mobile-social-links img {
    width: 11px;
    height: 11px;
}


/* Mobile language */

.wellness-mobile-language-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wellness-mobile-language-options form {
    margin: 0;
}

.wellness-mobile-language-options button {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: var(--wellness-menu-colour);
    font-size: 12px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {

    .wellness-header-container {
        width: min(100% - 36px, 1180px);
    }

    .wellness-header-navigation {
        display: none;
    }

    .wellness-header-social {
        display: none;
    }

    .wellness-mobile-toggle {
        display: flex;
    }

    .wellness-sticky-navigation {
        display: none;
    }

    .wellness-sticky-actions .wellness-mobile-toggle {
        display: flex;
    }

}


@media (max-width: 767px) {

    .wellness-header-inner {
        min-height: 76px;
        gap: 15px;
    }

    .wellness-header-logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .wellness-header-logo img {
        max-width: 180px;
        max-height: 52px;
    }

    .wellness-header-actions {
        gap: 5px;
    }

    .wellness-header-icon-btn,
    .wellness-header-cart,
    .wellness-header-account {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .wellness-header-auth {
        display: none;
    }

    .wellness-header-booking {
        display: none;
    }

    .wellness-search-panel {
        padding-top: 80px;
    }

    .wellness-search-box {
        width: calc(100% - 28px);
        padding: 28px 22px;
    }

    .wellness-search-heading {
        font-size: 26px;
    }

    .wellness-sticky-inner {
        min-height: 64px;
    }

    .wellness-sticky-logo {
        flex: 1 1 auto;
    }

    .wellness-sticky-logo img {
        max-width: 155px;
        max-height: 44px;
    }

    .wellness-sticky-actions .wellness-booking-btn {
        display: none;
    }

}


@media (max-width: 480px) {

    .wellness-header-logo img {
        max-width: 155px;
    }

    .wellness-header-actions {
        gap: 2px;
    }

    .wellness-header-icon-btn {
        display: none;
    }

    .wellness-mobile-menu .offcanvas-body {
        padding: 20px;
    }

}
/* ==========================================================================
   WELLNESS THEME - TABLET / MOBILE HEADER FINAL OVERRIDES
   ========================================================================== */

@media (max-width: 1200px) {

    /* Main header */
    .wellness-header-inner {
        min-height: 78px;
    }

    .wellness-header-navigation,
    .wellness-header-social,
    .wellness-header-auth,
    .wellness-header-icon-btn,
    .wellness-header-booking {
        display: none !important;
    }

    .wellness-header-logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .wellness-header-logo img {
        width: auto;
        max-width: 220px;
        max-height: 56px;
    }

    .wellness-header-actions {
        flex: 0 0 auto;
        gap: 10px;
    }

    /* Keep basket available */
    .wellness-header-cart {
        display: inline-flex !important;
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    /* Hamburger */
    .wellness-mobile-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
        padding-left: 40px !important;
        padding-right: 20px;
    }
    
    /* ==========================================================================
   WELLNESS - DISABLE MINI CART POPUP COMPLETELY
   Basket icon remains clickable, popup is permanently disabled
   ========================================================================== */

.wellness-mini-cart {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
}

.wellness-header-cart-wrap:hover .wellness-mini-cart,
.wellness-header-cart-wrap:focus .wellness-mini-cart,
.wellness-header-cart-wrap:focus-within .wellness-mini-cart {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
}

    .wellness-mobile-toggle span {
        display: block;
        width: 25px;
        height: 1px;
        margin: 0;
        background: var(--wellness-menu-colour);
    }

    /* Offcanvas */
.offcanvas.wellness-mobile-menu {
    width: min(390px, 90vw) !important;
    max-width: 90vw !important;
    background: var(--wellness-header-bg) !important;
    color: var(--wellness-menu-colour) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 0 !important;
}

    .wellness-mobile-menu .offcanvas-header {
        display: flex !important;
        align-items: center !important;
        justify-content: wellness-between !important;
        min-height: 82px !important;
        padding: 15px 22px !important;
        background: var(--wellness-header-bg) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .wellness-mobile-logo {
        display: flex !important;
        align-items: center !important;
        max-width: 210px !important;
    }

    .wellness-mobile-logo img {
        display: block !important;
        width: auto !important;
        max-width: 200px !important;
        max-height: 52px !important;
        object-fit: contain !important;
    }

    .wellness-mobile-menu .btn-close {
        position: static !important;
        display: block !important;
        flex: 0 0 34px !important;
        width: 34px !important;
        height: 34px !important;
        margin: 0 !important;
        padding: 8px !important;
        opacity: 1 !important;
        filter: invert(1) grayscale(1) brightness(2) !important;
        box-shadow: none !important;
    }

.wellness-mobile-menu .offcanvas-body {
    display: block !important;
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 22px 28px !important;
    overflow-y: auto !important;
    background: var(--wellness-header-bg) !important;
    color: var(--wellness-menu-colour) !important;
}

    /* Mobile navigation */
    .wellness-mobile-navigation {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .wellness-mobile-navigation > li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .wellness-mobile-nav-row {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 52px !important;
    }

    .wellness-mobile-nav-row > a {
        display: flex !important;
        flex: 1 1 auto !important;
        align-items: center !important;
        min-height: 52px !important;
        padding: 0 !important;
        color: var(--wellness-menu-colour) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        text-decoration: none !important;
    }

    .wellness-mobile-nav-row > a:hover {
        color: var(--wellness-hover-colour) !important;
    }

    .wellness-mobile-nav-row > button {
        display: flex !important;
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--wellness-menu-colour) !important;
    }

    .wellness-mobile-submenu {
        position: static !important;
        display: none;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 12px 14px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .wellness-mobile-submenu.show {
        display: block !important;
    }

    .wellness-mobile-submenu li {
        display: block !important;
        width: 100% !important;
    }

    .wellness-mobile-submenu li a {
        display: block !important;
        padding: 9px 0 !important;
        color: #335f57 !important;
        font-size: 14px !important;
        text-decoration: none !important;
    }

    /* Login / Register */
    .wellness-mobile-account {
        display: block !important;
        margin: 22px 0 0 !important;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .wellness-mobile-auth-grid {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .wellness-mobile-login,
    .wellness-mobile-register {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        min-height: auto !important;
        margin: 0 !important;
        padding: 5px 12px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--wellness-menu-colour) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        text-decoration: none !important;
    }

    .wellness-mobile-login {
        padding-left: 0 !important;
    }

    .wellness-mobile-register {
        position: relative !important;
    }

    .wellness-mobile-register::before {
        content: "";
        width: 1px;
        height: 14px;
        margin-right: 12px;
        background: var(--wellness-menu-colour);
        opacity: 0.3;
    }

    .wellness-mobile-login:hover,
    .wellness-mobile-register:hover {
        color: var(--wellness-hover-colour) !important;
    }

    /* Basket inside menu */
    .wellness-mobile-basket {
        display: block !important;
        margin: 20px 0 0 !important;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .wellness-mobile-basket > a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 40px !important;
        gap: 10px !important;
        color: var(--wellness-menu-colour) !important;
        text-decoration: none !important;
    }

    /* Socials */
    .wellness-mobile-social {
        display: block !important;
        margin: 20px 0 0 !important;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .wellness-mobile-social-links {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* Sticky tablet/mobile */
    .wellness-sticky-navigation {
        display: none !important;
    }

    .wellness-sticky-actions .wellness-booking-btn {
        display: none !important;
    }
}


@media (max-width: 767px) {

    .wellness-header-container {
        width: calc(100% - 28px) !important;
    }

    .wellness-header-inner {
        min-height: 76px !important;
    }

    .wellness-header-logo img {
        max-width: 175px !important;
        max-height: 50px !important;
    }

    .wellness-header-actions {
        gap: 5px !important;
    }

    .offcanvas.wellness-mobile-menu {
        width: 88vw !important;
        max-width: 360px !important;
    }

    .wellness-mobile-logo img {
        max-width: 175px !important;
    }
}


@media (max-width: 420px) {

    .wellness-header-logo img {
        max-width: 155px !important;
    }

    .wellness-header-cart {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
    }

    .wellness-mobile-toggle {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
    }
}
/* ==========================================================================
   MOBILE SOCIAL ICON POLISH
   ========================================================================== */

.wellness-mobile-social-links a {
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: var(--wellness-social-colour) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.wellness-mobile-social-links a:hover {
    color: var(--wellness-hover-colour) !important;
    border-color: var(--wellness-hover-colour) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-2px);
}

.wellness-mobile-social-links a img {
    width: 11px !important;
    height: 11px !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

.wellness-mobile-social-links a:hover img {
    filter: none !important;
}
/* ==========================================================================
   MOBILE ACCOUNT POLISH
   ========================================================================== */

/* Navigation already provides the dividing line */
.wellness-mobile-account {
    border-top: 0 !important;
    margin-top: 22px !important;
    padding-top: 8px !important;
}

/* Even Login | Register spacing */
.wellness-mobile-login,
.wellness-mobile-register {
    padding: 5px 12px !important;
}

.wellness-mobile-login {
    padding-left: 0 !important;
}

.wellness-mobile-register::before {
    content: "";
    width: 1px;
    height: 14px;
    margin-right: 12px;
    background: var(--wellness-menu-colour);
    opacity: 0.3;
}
/* ==========================================================================
   MOBILE BASKET / WISHLIST
   ========================================================================== */

.wellness-mobile-basket {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
}

.wellness-mobile-basket > a {
    flex: 1 1 50%;
    min-width: 0;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 10px 12px !important;
    color: var(--wellness-menu-colour) !important;
    text-decoration: none !important;
}

.wellness-mobile-basket > a:first-child {
    padding-left: 0 !important;
}

.wellness-mobile-basket > a + a {
    border-top: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.wellness-mobile-basket .fa-heart {
    color: var(--wellness-hover-colour);
}

.wellness-mobile-cart-count,
.wellness-mobile-wishlist-count {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--wellness-accent-bg);
    color: #fff;
    font-size: 12px;
    line-height: 1;
}
/* ==========================================================================
   TABLET / MOBILE WISHLIST ICON
   ========================================================================== */

.wellness-header-wishlist {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--wishlist-heart-color) #dc3545 !important;
    font-size: 16px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.wellness-header-wishlist:hover {
    color:  var(--wishlist-heart-hover-color) #dc3545 !important;
    background: rgba(255, 255, 255, 0.06);
}

.wellness-wishlist-count {
    position: absolute;
    top: 0;
    right: -3px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--wishlist-heart-color) #dc3545 !important;
    color: var(--wishlist-heart-color) #dc3545 !important;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

/* Keep desktop cleaner */
@media (min-width: 1201px) {
    .wellness-header-wishlist {
        display: none;
    }
}

@media (max-width: 1200px) {
    .wellness-header-wishlist {
        display: inline-flex;
    }
}
/* ==========================================================================
   FIX MOBILE / TABLET WISHLIST COUNT POSITION
   ========================================================================== */

.wellness-mobile-basket .wellness-mobile-wishlist-count {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;

    margin-left: auto !important;

    min-width: 30px !important;
    height: 30px !important;
    padding: 0 5px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;

    background: var(--wellness-accent-bg) !important;
    color: #fff !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}



/* ==========================================================================
   WELLNESS VISUAL DESIGN OVERRIDES
   Cream, sage, teal and muted gold. Behaviour and layout mechanics remain
   inherited from the proven header system above.
   ========================================================================== */

.wellness-site-header {
    font-family: inherit;
    color: var(--menu-colour);
}

.wellness-header-main {
    border-bottom: 1px solid rgba(39, 56, 50, 0.10);
    box-shadow: 0 3px 18px rgba(39, 56, 50, 0.04);
}

.wellness-header-inner {
    min-height: 94px;
}

.wellness-navigation > li > a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.045em;
}

.wellness-navigation > li > a::after {
    height: 2px;
    border-radius: 999px;
}

.wellness-submenu {
    top: calc(100% - 8px);
    padding: 10px;
    border: 1px solid rgba(39, 56, 50, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(39, 56, 50, 0.14);
}

.wellness-submenu li a {
    padding: 11px 13px;
    border-radius: 9px;
}

.wellness-submenu li a:hover,
.wellness-submenu li a:focus {
    padding-left: 16px;
    background: rgba(79, 118, 107, 0.08);
}

.wellness-header-icon-btn,
.wellness-header-cart,
.wellness-header-account,
.wellness-header-wishlist {
    border: 1px solid rgba(39, 56, 50, 0.10);
    background: rgba(255, 255, 255, 0.32);
    margin-right: 8px;
}

.wellness-header-icon-btn:hover,
.wellness-header-cart:hover,
.wellness-header-account:hover,
.wellness-header-wishlist:hover {
    color: var(--wishlist-heart-hover-color) #dc3545 !important;
    background: var(--wishlist-heart-color) #dc3545 !important;
    border-color: rgba(79, 118, 107, 0.20);
}

.wellness-header-social {
    border-left-color: rgba(39, 56, 50, 0.12);
}

.wellness-booking-btn,
.wellness-mobile-booking-btn {
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(79, 118, 107, 0.15);
}

.wellness-booking-btn:hover {
    background: transparent;
    box-shadow: none;
}

.wellness-mini-cart-inner {
    border-color: rgba(39, 56, 50, 0.10);
    box-shadow: 0 20px 55px rgba(39, 56, 50, 0.16);
}

.wellness-mini-cart-top {
    border-bottom-color: rgba(39, 56, 50, 0.10);
}

.wellness-mini-cart-title {
    color: var(--menu-colour);
}

.wellness-mini-cart-count {
    color: var(--menu-colour);
    opacity: 0.72;
}

.wellness-search-backdrop {
    background: rgba(30, 42, 38, 0.62);
    backdrop-filter: blur(7px);
}

.wellness-search-box {
    background: #f8f4eb;
    border: 1px solid rgba(39, 56, 50, 0.10);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(30, 42, 38, 0.24);
}

.wellness-search-heading,
.wellness-search-close {
    color: #273832;
}

.wellness-search-form input {
    border: 1px solid rgba(39, 56, 50, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: #273832;
    padding-right: 64px;
}

.wellness-search-form input::placeholder {
    color: #68736f;
}

.wellness-search-form button {
    top: 4px;
    right: 4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-bg);
    color: var(--accent-text);
}

.wellness-sticky-header {
    border-bottom: 1px solid rgba(39, 56, 50, 0.10);
    box-shadow: 0 12px 34px rgba(39, 56, 50, 0.12);
}

.offcanvas.wellness-mobile-menu,
.wellness-mobile-menu .offcanvas-header,
.wellness-mobile-menu .offcanvas-body {
    background: var(--wellness-header-bg) !important;
    color: var(--wellness-menu-colour) !important;
}

.wellness-mobile-menu .btn-close {
    filter: none !important;
    opacity: 0.72 !important;
}

.wellness-mobile-navigation > li,
.wellness-mobile-menu .offcanvas-header,
.wellness-mobile-account,
.wellness-mobile-basket,
.wellness-mobile-social,
.wellness-mobile-language {
    border-color: rgba(39, 56, 50, 0.10) !important;
}

.wellness-mobile-social-links a {
    border-color: rgba(39, 56, 50, 0.13) !important;
    background: rgba(255, 255, 255, 0.28) !important;
}

.wellness-mobile-social-links a img {
    filter: none !important;
}

@media (max-width: 1200px) {
    .offcanvas.wellness-mobile-menu {
        border-left-color: rgba(39, 56, 50, 0.10) !important;
    }

    .wellness-mobile-menu .offcanvas-header {
        border-bottom-color: rgba(39, 56, 50, 0.10) !important;
    }

    .wellness-mobile-navigation > li {
        border-bottom-color: rgba(39, 56, 50, 0.10) !important;
    }

    .wellness-mobile-basket > a + a {
        border-left-color: rgba(39, 56, 50, 0.10);
    }
}

/* ==========================================================================
   WELLNESS THEME - FOOTER
   ========================================================================== */

.wellness-footer,
.wellness-footer * {
    box-sizing: border-box;
}

.wellness-footer {
    position: relative;
    overflow: hidden;
    background: var(--footer-bg-color);
    color: rgba(255, 255, 255, 0.78);
}

.wellness-footer-main {
    position: relative;
    padding: 74px 0 44px;
}

.wellness-footer-container {
    position: relative;
    z-index: 3;
    width: min(92%, 1500px);
    margin: 0 auto;
}


/* Soft background details */

.wellness-footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.wellness-footer-glow-left {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 40px;
    background: rgba(162, 190, 169, 0.16);
}

.wellness-footer-glow-right {
    width: 320px;
    height: 320px;
    right: -110px;
    top: 30px;
    background: rgba(198, 168, 107, 0.11);
}

/* The Blade keeps this decorative layer from the proven footer structure.
   For Wellness it becomes a very subtle organic texture rather than stars. */
.wellness-footer-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0 1px, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(198,168,107,0.14) 0 1px, transparent 1.5px);
    background-size:
        120px 120px,
        170px 170px;
}


/* Main grid */

.wellness-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr)
        repeat(3, minmax(150px, 0.72fr))
        minmax(240px, 1fr);
    gap: 42px;
    align-items: start;
}

.wellness-footer-column {
    min-width: 0;
}


/* Brand */

.wellness-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.wellness-footer-logo img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 72px;
    object-fit: contain;
}

.wellness-footer-about-text {
    max-width: 370px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.75;
}


/* Eyebrows / headings */

.wellness-footer-eyebrow {
    margin-bottom: 8px;
    color: var(--footer-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wellness-footer-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 14px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.wellness-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--footer-accent),
        transparent
    );
}


/* Links */

.wellness-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wellness-footer-links li {
    margin: 0;
}

.wellness-footer-links a {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.wellness-footer-links a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--footer-accent);
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.22s ease;
}

.wellness-footer-links a:hover {
    color: var(--footer-accent);
    transform: translateX(8px);
}

.wellness-footer-links a:hover::before {
    opacity: 1;
}


/* Social icons */

.wellness-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.wellness-footer-social a {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;
    text-decoration: none;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.wellness-footer-social a:hover {
    color: var(--footer-accent);
    border-color: var(--footer-accent);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.wellness-footer-social img {
    width: 13px;
    height: 13px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* Account */

.wellness-footer-account {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 13px;
}

.wellness-footer-account a {
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
}

.wellness-footer-account a:hover {
    color: var(--footer-accent);
}

.wellness-footer-account span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}


/* Stay connected */

.wellness-footer-connect-text {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.7;
}

.wellness-footer-share {
    margin-bottom: 20px;
}

.wellness-footer-share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wellness-footer-share-icons li {
    margin: 0;
    padding: 0;
}

.wellness-footer-share-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.wellness-footer-share-icons a:hover {
    color: var(--footer-accent);
    border-color: var(--footer-accent);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.wellness-footer-share-icons img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* Contact */

.wellness-footer-contact {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.wellness-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.45;
}

.wellness-footer-contact i {
    margin-top: 2px;
    color: var(--footer-accent);
    font-size: 13px;
}

.wellness-footer-contact a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    word-break: break-word;
}

.wellness-footer-contact a:hover {
    color: var(--footer-accent);
}


/* Wellness divider */

.wellness-footer-divider {
    position: relative;
    z-index: 3;
    width: min(92%, 1500px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.wellness-footer-divider > span {
    height: 1px;
    flex: 1;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(198, 168, 107, 0.30),
        transparent
    );
}

.wellness-footer-orbit {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(198, 168, 107, 0.48);
    border-radius: 50%;
}

.wellness-footer-orbit::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(183, 211, 191, 0.42);
    border-radius: 50%;
}

.wellness-footer-orbit i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--footer-accent);
    box-shadow:
        0 0 8px rgba(198, 168, 107, 0.75),
        0 0 18px rgba(198, 168, 107, 0.30);
    transform: translate(-50%, -50%);
}


/* Bottom bar */

.wellness-footer-bottom {
    position: relative;
    z-index: 3;
    padding: 22px 0 26px;
}

.wellness-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wellness-footer-copyright,
.wellness-footer-legal {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.55;
}

.wellness-footer-copyright a,
.wellness-footer-legal a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wellness-footer-copyright a:hover,
.wellness-footer-legal a:hover {
    color: var(--footer-accent);
}


/* ==========================================================================
   WELLNESS FOOTER - RESPONSIVE
   ========================================================================== */

@media (max-width: 1300px) {

    .wellness-footer-grid {
        grid-template-columns:
            minmax(260px, 1.3fr)
            repeat(2, minmax(150px, 0.75fr))
            minmax(230px, 1fr);
    }

    .wellness-footer-grid > .wellness-footer-column:nth-child(4) {
        grid-column: 2 / 3;
    }
}

@media (max-width: 1000px) {

    .wellness-footer-main {
        padding-top: 62px;
    }

    .wellness-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 50px;
    }

    .wellness-footer-grid > .wellness-footer-column:nth-child(4) {
        grid-column: auto;
    }

    .wellness-footer-about {
        grid-column: 1 / -1;
    }

    .wellness-footer-about-text {
        max-width: 600px;
    }
}

@media (max-width: 680px) {

    .wellness-footer-main {
        padding: 52px 0 32px;
    }

    .wellness-footer-container,
    .wellness-footer-divider {
        width: 88%;
    }

    .wellness-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .wellness-footer-about,
    .wellness-footer-connect {
        grid-column: 1 / -1;
    }

    .wellness-footer-logo img {
        max-width: 190px;
    }

    .wellness-footer-title {
        font-size: 20px;
    }

    .wellness-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wellness-footer-legal {
        text-align: left;
    }
}

@media (max-width: 440px) {

    .wellness-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }

    .wellness-footer-about,
    .wellness-footer-connect {
        grid-column: 1 / -1;
    }
}
/* ==========================================================================
   WELLNESS THEME
   Homepage Hero
   Proven slider/responsive mechanics with new Wellness styling
   ========================================================================== */

.wellness-home-hero {
    position: relative;
    width: 100%;
    min-height: 540px;
    overflow: hidden;
    isolation: isolate;
    background: #030817;
    color: #ffffff;
}


/* ==========================================================================
   Background images
   ========================================================================== */

.wellness-home-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wellness-home-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;
    transform: scale(1.025);

    transition:
        opacity 1.1s ease,
        transform 6s ease;
}

.wellness-home-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================================================
   Cosmic overlays
   ========================================================================== */

.wellness-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(2, 7, 19, 0.94) 0%,
            rgba(3, 9, 24, 0.86) 22%,
            rgba(4, 11, 27, 0.58) 36%,
            rgba(3, 8, 20, 0.16) 48%,
            rgba(2, 6, 15, 0.03) 60%,
            transparent 72%
        );
}

.wellness-home-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    box-shadow:
        inset 0 100px 110px rgba(0, 0, 0, 0.18),
        inset 0 -130px 130px rgba(0, 0, 0, 0.48);
}

.wellness-home-hero-glow {
    position: absolute;
    z-index: 2;
    top: 18%;
    left: 7%;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(59, 105, 193, 0.15) 0%,
            rgba(42, 76, 148, 0.07) 38%,
            transparent 70%
        );

    filter: blur(15px);
    pointer-events: none;
}

.wellness-home-hero-stars {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    opacity: 0.18;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,0.9) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle,
            rgba(255,255,255,0.6) 1px,
            transparent 1px
        );

    background-size:
        120px 120px,
        190px 190px;

    background-position:
        30px 20px,
        80px 60px;
}


/* ==========================================================================
   Main content container
   ========================================================================== */

.wellness-home-hero-container {
    position: relative;
    z-index: 5;

    width: min(90%, 1440px);
    min-height: 540px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.wellness-home-hero-content {
    width: min(680px, 55%);
    padding: 80px 0 100px;
}


/* ==========================================================================
   Eyebrow
   ========================================================================== */

.wellness-home-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 23px;

    color: #d8bc75;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wellness-home-hero-eyebrow-line {
    width: 46px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(216,188,117,0.2),
            rgba(216,188,117,0.95)
        );
}


/* ==========================================================================
   Main title
   ========================================================================== */

.wellness-home-hero-title {
    max-width: 680px;

    margin: 0;

    color: var(--wellness-hero-title-colour);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 64px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;

    text-wrap: balance;

    text-shadow:
        0 3px 25px rgba(0, 0, 0, 0.28);
}


/* ==========================================================================
   Roles
   ========================================================================== */

.wellness-home-hero-roles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.5;
    text-transform: uppercase;
}

.wellness-home-hero-roles i {
    color: #d8bc75;
    font-size: 8px;
    font-style: normal;

    text-shadow:
        0 0 10px rgba(216, 188, 117, 0.55);
}


/* ==========================================================================
   Caption
   ========================================================================== */

.wellness-home-hero-caption {
    max-width: 590px;

    margin: 31px 0 0;

    color: var(--wellness-hero-caption-colour);

    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.88;

    text-shadow:
        0 2px 16px rgba(0, 0, 0, 0.22);
}


/* ==========================================================================
   CTA
   ========================================================================== */

.wellness-home-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 34px;
}

.wellness-home-hero-primary {
    position: relative;
    overflow: hidden;

    min-height: 50px;

    padding: 0 25px;

    border: 1px solid rgba(241, 215, 157, 0.5);
    border-radius: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    background:
        linear-gradient(
            135deg,
            #d4b466 0%,
            #f0d89e 52%,
            #b98f42 100%
        );

    color: var(--button-text);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.025em;

    text-decoration: none;

    box-shadow:
        0 7px 25px rgba(206, 167, 78, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.wellness-home-hero-primary::before {
    content: "";

    position: absolute;

    top: -80%;
    left: -65%;

    width: 40%;
    height: 260%;

    background: rgba(255, 255, 255, 0.25);

    transform: rotate(24deg);

    transition: left 0.55s ease;
}

.wellness-home-hero-primary:hover {
    color: var(--button-text);

    transform: translateY(-2px);

    box-shadow:
        0 11px 32px rgba(206, 167, 78, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.wellness-home-hero-primary:hover::before {
    left: 130%;
}

.wellness-home-hero-primary span,
.wellness-home-hero-primary i {
    position: relative;
    z-index: 1;
}

.wellness-home-hero-primary i {
    font-size: 13px;
}


/* ==========================================================================
   Right-hand vertical detail
   ========================================================================== */

.wellness-home-hero-side-detail {
    position: absolute;

    z-index: 5;

    right: 26px;
    top: 50%;

    display: flex;
    align-items: center;
    gap: 18px;

    transform:
        translateY(-50%)
        rotate(90deg);

    transform-origin: center;

    color: rgba(255, 255, 255, 0.46);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;

    white-space: nowrap;
}

.wellness-home-hero-side-line {
    display: block;

    width: 45px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216, 188, 117, 0.65)
        );
}


/* ==========================================================================
   Slide navigation
   ========================================================================== */

.wellness-home-hero-navigation {
    position: absolute;

    z-index: 6;

    left: 5%;
    bottom: 42px;

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

.wellness-home-hero-nav {
    position: relative;

    width: 34px;
    height: 18px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.wellness-home-hero-nav span {
    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.28);

    transform: translateY(-50%);

    transition:
        background 0.25s ease,
        width 0.25s ease;
}

.wellness-home-hero-nav.is-active {
    width: 56px;
}

.wellness-home-hero-nav.is-active span {
    background:
        linear-gradient(
            90deg,
            #d8bc75,
            rgba(216, 188, 117, 0.35)
        );
}


/* ==========================================================================
   Scroll detail
   ========================================================================== */

.wellness-home-hero-scroll {
    position: absolute;

    z-index: 6;

    left: 50%;
    bottom: 20px;

    width: 1px;
    height: 38px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.12);

    transform: translateX(-50%);
}

.wellness-home-hero-scroll span {
    position: absolute;

    top: -20px;
    left: 0;

    width: 1px;
    height: 20px;

    background:
        linear-gradient(
            180deg,
            transparent,
            #d8bc75
        );

    animation:
        wellnessHeroScroll 2.1s ease-in-out infinite;
}

@keyframes wellnessHeroScroll {

    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateY(58px);
        opacity: 0;
    }
}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 1100px) {

    .wellness-home-hero,
    .wellness-home-hero-container {
        min-height: 650px;
    }

    .wellness-home-hero-container {
        width: 88%;
    }

    .wellness-home-hero-content {
        width: min(650px, 68%);
    }

    .wellness-home-hero-title {
        font-size: clamp(52px, 7vw, 76px);
    }

    .wellness-home-hero-side-detail {
        display: none;
    }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 760px) {

    .wellness-home-hero {
        min-height: 690px;
    }

    .wellness-home-hero-container {
        width: 86%;
        min-height: 690px;

        align-items: flex-end;
    }

    .wellness-home-hero-content {
        width: 100%;

        padding:
            120px
            0
            92px;
    }

    .wellness-home-hero-slide {
        background-position: center top;
    }

    .wellness-home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 7, 19, 0.15) 0%,
                rgba(3, 8, 21, 0.26) 28%,
                rgba(3, 8, 21, 0.72) 58%,
                rgba(2, 6, 16, 0.97) 100%
            );
    }

    .wellness-home-hero-vignette {
        box-shadow:
            inset 0 60px 80px rgba(0, 0, 0, 0.1),
            inset 0 -100px 100px rgba(0, 0, 0, 0.48);
    }

    .wellness-home-hero-glow {
        width: 280px;
        height: 280px;

        left: -60px;
        top: 42%;
    }

    .wellness-home-hero-eyebrow {
        gap: 10px;

        margin-bottom: 16px;

        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .wellness-home-hero-eyebrow-line {
        width: 28px;
    }

    .wellness-home-hero-title {
        max-width: 100%;

        font-size: clamp(45px, 13vw, 64px);
        line-height: 1;
    }

    .wellness-home-hero-roles {
        gap: 7px;

        margin-top: 18px;

        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .wellness-home-hero-caption {
        margin-top: 18px;

        font-size: 16px;
        line-height: 1.55;
    }

    .wellness-home-hero-actions {
        margin-top: 25px;
    }

    .wellness-home-hero-primary {
        min-height: 48px;

        padding: 0 21px;

        font-size: 13px;
    }

    .wellness-home-hero-navigation {
        left: 7%;
        bottom: 32px;
    }

    .wellness-home-hero-scroll {
        display: none;
    }
}


/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 480px) {

    .wellness-home-hero,
    .wellness-home-hero-container {
        min-height: 560px;
    }

    .wellness-home-hero-container {
        width: 92%;
    }

    .wellness-home-hero-content {
        width: 96%;
        padding-bottom: 40px;
        transform: translateX(4px);
    }

    .wellness-home-hero-title {
        max-width: 290px;

        font-size: clamp(30px, 10.8vw, 36px);
        line-height: 1.08;
    }

    .wellness-home-hero-roles {
        max-width: 380px;

        gap: 5px;

        font-size: 10px;
        letter-spacing: 0.07em;
        line-height: 1.65;
    }

    .wellness-home-hero-caption {
        max-width: 305px;

        font-size: 15px;
        line-height: 1.5;
    }

    .wellness-home-hero-primary {
        padding: 0 19px;

        font-size: 12px;
    }
}

/* ==========================================================================
   WELLNESS HERO
   Visual design layer
   ========================================================================== */

.wellness-home-hero {
    background: #f5f0e6;
    color: #273832;
}

.wellness-home-hero-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wellness-home-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(246, 241, 231, 0.98) 0%,
            rgba(246, 241, 231, 0.92) 24%,
            rgba(246, 241, 231, 0.55) 36%,
            rgba(246, 241, 231, 0.12) 56%,
            rgba(246, 241, 231, 0.00) 76%
        );
}

.wellness-home-hero-vignette {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.55),
        inset 0 -80px 100px rgba(39,56,50,0.08);
}

.wellness-home-hero-glow {
    width: 420px;
    height: 420px;
    left: 14%;
    top: 50%;
    background:
        radial-gradient(
            circle,
            rgba(198, 168, 107, 0.18) 0%,
            rgba(198, 168, 107, 0.08) 34%,
            rgba(198, 168, 107, 0.00) 72%
        );
    filter: blur(8px);
}

.wellness-home-hero-stars {
    opacity: 0.28;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(79,118,107,0.22) 0 1px, transparent 1.5px),
        radial-gradient(circle at 72% 24%, rgba(198,168,107,0.20) 0 1px, transparent 1.5px),
        radial-gradient(circle at 38% 72%, rgba(79,118,107,0.14) 0 1px, transparent 1.5px);
    background-size: 160px 160px, 220px 220px, 190px 190px;
}

.wellness-home-hero-container {
    width: min(88%, 1500px);
}

.wellness-home-hero-content {
    width: min(650px, 48%);
    padding-top: 42px;
}

.wellness-home-hero-eyebrow {
    color: #4f766b;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.wellness-home-hero-eyebrow-line {
    background: #c6a86b;
}

.wellness-home-hero-title {
    max-width: 690px;
    color: var(--title-colour, #273832);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: none;
}

.wellness-home-hero-roles {
    color: #4f766b;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.wellness-home-hero-roles i {
    color: #c6a86b;
    font-size: 8px;
}

.wellness-home-hero-caption {
    max-width: 590px;
    color: var(--caption-colour, #52635d);
    font-size: 18px;
    line-height: 1.7;
    text-shadow: none;
}

.wellness-home-hero-primary {
    min-height: 52px;
    padding: 0 27px;
    border: 1px solid rgba(39,56,50,0.08);
    border-radius: 999px;
    background: var(--button_bg, #4f766b);
    color: var(--button-text, #ffffff);
    box-shadow: 0 12px 30px rgba(39,56,50,0.16);
}

.wellness-home-hero-primary::before {
    background: var(--button-hover-bg, #3f6259);
}

.wellness-home-hero-primary:hover {
    color: var(--hero-button-text, #ffffff);
    box-shadow: 0 16px 34px rgba(39,56,50,0.22);
}

.wellness-home-hero-side-detail {
    color: #4f766b;
}

.wellness-home-hero-side-line {
    background: linear-gradient(
        180deg,
        rgba(198,168,107,0.00),
        rgba(198,168,107,0.95),
        rgba(198,168,107,0.00)
    );
}

.wellness-home-hero-side-text {
    color: #4f766b;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.wellness-home-hero-nav {
    border-color: rgba(79,118,107,0.28);
}

.wellness-home-hero-nav span {
    background: #4f766b;
}

.wellness-home-hero-nav.is-active {
    border-color: #c6a86b;
}

.wellness-home-hero-nav.is-active span {
    background: #c6a86b;
}

.wellness-home-hero-scroll {
    border-color: rgba(79,118,107,0.34);
}

.wellness-home-hero-scroll span {
    background: #4f766b;
}


/* ==========================================================================
   WELLNESS HERO
   Responsive visual adjustments
   ========================================================================== */

@media (max-width: 1100px) {
    .wellness-home-hero-content {
        width: min(620px, 60%);
    }

    .wellness-home-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(246,241,231,0.98) 0%,
                rgba(246,241,231,0.90) 43%,
                rgba(246,241,231,0.45) 65%,
                rgba(246,241,231,0.04) 100%
            );
    }
}

@media (max-width: 760px) {
    .wellness-home-hero-slide {
        background-position: center top;
    }

    .wellness-home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(246,241,231,0.04) 0%,
                rgba(246,241,231,0.14) 34%,
                rgba(246,241,231,0.82) 62%,
                rgba(246,241,231,0.98) 100%
            );
    }

    .wellness-home-hero-vignette {
        box-shadow:
            inset 0 40px 70px rgba(39,56,50,0.05),
            inset 0 -90px 110px rgba(39,56,50,0.10);
    }

    .wellness-home-hero-content {
        width: 100%;
        padding-bottom: 86px;
    }

    .wellness-home-hero-title {
        color: #273832 !important;
    }

    .wellness-home-hero-caption {
        color: #52635d !important;
    }

    .wellness-home-hero-roles {
        color: #4f766b;
    }

    .wellness-home-hero-navigation {
        bottom: 28px;
    }
}

@media (max-width: 480px) {
    .wellness-home-hero-content {
        width: 100%;
        transform: none;
        padding-bottom: 72px;
    }

    .wellness-home-hero-title {
        max-width: 330px;
    }

    .wellness-home-hero-caption {
        max-width: 330px;
    }
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Overlay main header over hero
   ========================================================================== */

body:has(#wellness-homepage) .wellness-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

body:has(#wellness-homepage) .wellness-header-main {
    background: var(--wellness-navigation-bg);
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Header overlay spacing
   ========================================================================== */

body:has(#wellness-homepage) .wellness-home-hero-content {
    padding-top: 260px;
}

/* ==========================================================================
   WELLNESS HERO
   Horizontal slide transition
   ========================================================================== */

.wellness-home-hero-slide {
    will-change: transform;
    transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wellness-home-hero-slide.is-active {
    transform: translateX(0);
    z-index: 1;
}

.wellness-home-hero-slide.is-entering {
    transform: translateX(100%);
    z-index: 2;
}

.wellness-home-hero-slide.is-leaving {
    transform: translateX(-100%);
    z-index: 1;
}


/* ==========================================================================
   WELLNESS HERO
   Text reveal during slide change
   ========================================================================== */

.wellness-home-hero-content {
    transition:
        transform 420ms ease,
        opacity 420ms ease;
}

.wellness-home-hero-content.is-content-visible {
    transform: translateY(0);
    opacity: 1;
}

.wellness-home-hero-content.is-content-changing {
    transform: translateY(18px);
    opacity: 0;
}


/* ==========================================================================
   WELLNESS HERO
   Reduced motion accessibility
   ========================================================================== */

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

    .wellness-home-hero-slide,
    .wellness-home-hero-content {
        transition: none;
    }
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Quick Link Banner
   ========================================================================== */

.wellness-banner {
    position: relative;
    z-index: 2;
    background: var(--wellness-header-bg, #ffffff);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wellness-banner-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.wellness-banner-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}

.wellness-banner-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 150px;
    padding: 24px 18px;

    text-align: center;
    text-decoration: none;

    color: var(--wellness-menu-colour, #273832);

    transition:
        color 320ms ease,
        background 320ms ease;
}

.wellness-banner-item:hover,
.wellness-banner-item:focus {
    color: var(--wellness-hover-colour, #4f766b);
    text-decoration: none;
}

.wellness-banner-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 12px;

    color: var(--wellness-hover-colour, #4f766b);

    transition:
        color 750ms ease,
        filter 750ms ease,
        text-shadow 750ms ease;
}

.wellness-banner-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}

.wellness-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wellness-banner-title {
    display: block;

    margin-bottom: 5px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;

    color: var(--menu-colour, #273832);

    transition:
        color 420ms ease,
        text-shadow 420ms ease;
}

.wellness-banner-text {
    display: block;

    max-width: 170px;

    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;

    color: var(--menu-colour, #273832);
    opacity: 0.72;

    transition:
        color 420ms ease,
        opacity 420ms ease;
}


/* ==========================================================================
   WELLNESS HOMEPAGE
   Sequential banner glow state
   ========================================================================== */

.wellness-banner-item.is-glowing .wellness-banner-icon {
    color: var(--hover-colour, #4f766b);

    filter:
        drop-shadow(
            0 0 14px
            color-mix(
                in srgb,
                var(--hover-colour, #4f766b) 75%,
                transparent
            )
        )
        drop-shadow(
            0 0 10px
            color-mix(
                in srgb,
                var(--hover-colour, #4f766b) 30%,
                transparent
            )
        );
}

.wellness-banner-item.is-glowing .wellness-banner-title {
    color: var(--hover-colour, #4f766b);

    text-shadow:
        0 0 12px
        color-mix(
            in srgb,
            var(--hover-colour, #4f766b) 18%,
            transparent
        );
}

.wellness-banner-item.is-glowing .wellness-banner-text {
    opacity: 0.92;
}


/* ==========================================================================
   WELLNESS HOMEPAGE
   Banner responsive
   ========================================================================== */

@media (max-width: 1100px) {

    .wellness-banner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wellness-banner-item {
        min-height: 140px;
    }
}

@media (max-width: 760px) {

    .wellness-banner-container {
        width: min(100% - 24px, 680px);
    }

    .wellness-banner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wellness-banner-item {
        min-height: 130px;
        padding: 20px 12px;
    }

    .wellness-banner-title {
        font-size: 16px;
    }

    .wellness-banner-text {
        max-width: 145px;
        font-size: 11px;
    }
}

@media (max-width: 420px) {

    .wellness-banner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wellness-banner-icon {
        width: 42px;
        height: 42px;
    }

    .wellness-banner-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Dual Service Promo
   ========================================================================== */

.wellness-promo {
    position: relative;
    padding: 34px 0 42px;
}

.wellness-promo-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.wellness-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* ==========================================================================
   Promo card
   ========================================================================== */

.wellness-promo-card {
    position: relative;
    min-height: 360px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 16px;

    text-decoration: none;

    isolation: isolate;
}

.wellness-promo-image,
.wellness-promo-placeholder {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.wellness-promo-placeholder {
    background: var(--background-color);
}


/* ==========================================================================
   Overlay
   ========================================================================== */

.wellness-promo-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.20) 38%,
            rgba(0, 0, 0, 0.52) 72%,
            rgba(0, 0, 0, 0.66) 100%
        );
}


/* ==========================================================================
   Content
   ========================================================================== */

.wellness-promo-content {
    position: relative;
    z-index: 2;

    width: min(390px, 54%);
    margin-left: auto;

    padding: 48px 42px;

    color: #ffffff;
}

.wellness-promo-title {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 2.8vw, 46px);
    line-height: 1.04;
    font-weight: 400;

    color: inherit;
}

.wellness-promo-description {
    margin: 0 0 26px;

    font-size: 15px;
    line-height: 1.65;

    color: inherit;
}


/* ==========================================================================
   Promo Button
   ========================================================================== */

.wellness-promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;
    min-height: 46px;
    padding: 11px 22px;

    background: var(--button_bg, #4f766b);
    color: var(--button-text, #ffffff);

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.wellness-promo-button i {
    font-size: 13px;
    transition: transform 250ms ease;
}

.wellness-promo-card:hover .wellness-promo-button {
    background: var(--button-hover-bg);
    color: var(--accent-text);
    transform: translateY(-2px);
}

.wellness-promo-card:hover .wellness-promo-button i {
    transform: translateX(4px);
}


/* ==========================================================================
   Image hover
   ========================================================================== */

.wellness-promo-image {
    transition: transform 900ms ease;
}

.wellness-promo-card:hover .wellness-promo-image,
.wellness-promo-card:focus .wellness-promo-image {
    transform: scale(1.025);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {

    .wellness-promo-grid {
        grid-template-columns: 1fr;
    }

    .wellness-promo-card {
        min-height: 340px;
    }
}

@media (max-width: 760px) {

    .wellness-promo {
        padding: 24px 0 32px;
    }

    .wellness-promo-container {
        width: min(100% - 24px, 680px);
    }

    .wellness-promo-card {
        min-height: 420px;
        align-items: flex-end;
    }

    .wellness-promo-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.02) 0%,
                rgba(0, 0, 0, 0.20) 48%,
                rgba(0, 0, 0, 0.72) 100%
            );
    }

    .wellness-promo-content {
        width: 100%;
        margin-left: 0;

        padding: 28px 24px 30px;
    }

    .wellness-promo-title {
        font-size: 32px;
    }
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Welcome + Signature + Video + Testimonial Slider + Counters
   ========================================================================== */

.wellness-welcome {
    padding: 30px 0 42px;
    background: #fff;
}

.wellness-welcome-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.wellness-welcome-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.45fr 0.65fr;
    gap: 24px;
    align-items: stretch;
}


/* ==========================================================================
   LEFT / WELCOME
   ========================================================================== */

.wellness-welcome-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 6px;
}

.wellness-welcome-kicker {
    margin-bottom: 4px;
    color: var(--menu-colour);

    font-family: "Brush Script MT", "Segoe Script", cursive !important;
    font-size: clamp(29px, 3vw, 52px);
    font-weight: 100;
    line-height: 1.05;
}

.wellness-welcome-title {
    margin: 0 0 14px;
    color: var(--menu-colour);

    font-family: "Brush Script MT", "Segoe Script", cursive !important;
    font-size: clamp(29px, 3vw, 52px);
    font-weight: 100;
    line-height: 1.1;
}

.wellness-welcome-text {
    max-width: 430px;

    color: rgba(31, 44, 39, 0.76);

    font-size: 15px;
    line-height: 1.65;
}


/* SIGNATURE */

.wellness-welcome-signature {
    margin-top: 14px;
}

.wellness-welcome-signature img {
    display: block;

    width: auto;
    max-width: 145px;
    max-height: 58px;

    object-fit: contain;
    object-position: left center;
}


/* OUR STORY BUTTON */

.wellness-welcome-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;
    min-height: 42px;

    margin-top: 16px;
    padding: 9px 20px;

    border-radius: 999px;

    background: var(--button-bg);
    color: var(--button-text);

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.wellness-welcome-button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-text);

    transform: translateY(-2px);
}

.wellness-welcome-button i {
    font-size: 13px;

    transition: transform 250ms ease;
}

.wellness-welcome-button:hover i {
    transform: translateX(4px);
}


/* ==========================================================================
   CENTRE / STATIC IMAGE
   ========================================================================== */

.wellness-welcome-feature {
    position: relative;

    min-height: 320px;

    overflow: hidden;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.55);
}

.wellness-welcome-image {
    position: absolute;
    inset: 0;

    z-index: 1;
}

.wellness-welcome-image img {
    display: block;

    width: 112%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: left center;

    transform: translateX(-6%);
}


/* ==========================================================================
   VIDEO PLAY BUTTON
   ========================================================================== */

.wellness-welcome-video-button {
    position: absolute;

    left: 8%;
    bottom: 14px;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    padding: 0;

    border: 6px solid rgba(252, 226, 106);
    border-radius: 50%;

    background: var(--button-bg);
    color: #000;

    box-shadow:
        0 10px 30px rgba(31, 44, 39, 0.38);

    cursor: pointer;

    transition:
        transform 250ms ease,
        background 250ms ease,
        color 250ms ease;
}

.wellness-welcome-video-button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-text);

    transform: scale(1.08);
}

.wellness-welcome-video-button i {
    margin-left: 0px;

    font-size: 17px;
}


/* ==========================================================================
   TESTIMONIAL CARD
   The image behind this remains completely static.
   ========================================================================== */

.wellness-welcome-testimonial {
    position: absolute;
    color: inherit;
    text-decoration: none;
    cursor: pointer;

    top: 50%;
    right: 20px;

    z-index: 3;

    width: min(260px, calc(100% - 40px));
    min-height: 215px;

    transform: translateY(-50%);

    overflow: hidden;

    padding: 0;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 14px 34px rgba(27, 39, 35, 0.10);

    backdrop-filter: blur(8px);
}

.wellness-welcome-testimonial:hover {
    color: inherit;
    text-decoration: none;

    box-shadow:
        0 18px 42px rgba(27, 39, 35, 0.16);
}

.wellness-welcome-testimonial-slide {
    position: absolute;

    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    min-height: 215px;

    padding: 20px 18px;

    text-align: center;

    opacity: 0;

    transform: translateX(45px);

    pointer-events: none;

    transition:
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 450ms ease;
}

.wellness-welcome-testimonial-slide.is-active {
    opacity: 1;

    transform: translateX(0);

    pointer-events: auto;
}

.wellness-welcome-testimonial-slide.is-leaving {
    opacity: 0;

    transform: translateX(-45px);
}

.wellness-welcome-testimonial-quote {
    height: 30px;

    color: rgba(86, 118, 102, 0.22);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 0.75;
}

.wellness-welcome-testimonial blockquote {
    margin: 0 0 10px;

    color: rgba(31, 44, 39, 0.82);

    font-size: 14px;
    line-height: 1.45;
}

.wellness-welcome-testimonial-stars {
    margin-bottom: 7px;

    color: #d7a835;

    font-size: 13px;
    letter-spacing: 2px;
}

.wellness-welcome-testimonial-name {
    color: rgba(31, 44, 39, 0.74);

    font-size: 13px;
    font-weight: 700;
}

.wellness-welcome-testimonial-service {
    margin-top: 3px;

    color: rgba(31, 44, 39, 0.50);

    font-size: 11px;
    line-height: 1.3;
}


/* ==========================================================================
   RIGHT / COUNTERS
   ========================================================================== */

.wellness-welcome-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 4px 0;
}

.wellness-welcome-stat {
    display: grid;

    grid-template-columns: 54px 1fr;

    gap: 14px;
    align-items: center;

    padding: 14px 0;

    border-bottom:
        1px solid rgba(31, 44, 39, 0.08);
}

.wellness-welcome-stat:last-child {
    border-bottom: 0;
}

.wellness-welcome-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(214, 197, 166, 0.23);
    color: #9b7440;

    font-size: 20px;
}

.wellness-welcome-stat-copy {
    display: flex;
    flex-direction: column;
}

.wellness-welcome-stat-number {
    color: var(--menu-colour);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.05;

    font-variant-numeric: tabular-nums;
}

.wellness-welcome-stat-label {
    margin-top: 4px;

    color: rgba(31, 44, 39, 0.64);

    font-size: 13px;
    line-height: 1.35;
}


/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */

.wellness-welcome-video-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(15, 22, 19, 0.88);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}

.wellness-welcome-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.wellness-welcome-video-modal-inner {
    position: relative;

    width: min(960px, 92vw);
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 18px;

    background: #000;

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.35);
}

.wellness-welcome-video-modal iframe,
.wellness-welcome-video-modal video {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    object-fit: contain;
}

.wellness-welcome-video-close {
    position: fixed;

    top: 24px;
    right: 28px;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition:
        background 250ms ease,
        transform 250ms ease;
}

.wellness-welcome-video-close:hover {
    background: rgba(255, 255, 255, 0.22);

    transform: rotate(90deg);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {

    .wellness-welcome-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .wellness-welcome-stats {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 14px;

        padding-top: 8px;
    }

    .wellness-welcome-stat {
        grid-template-columns: 1fr;

        justify-items: center;

        padding: 12px;

        border-bottom: 0;

        text-align: center;
    }
}


@media (max-width: 760px) {

    .wellness-welcome {
        padding: 24px 0 38px;
    }

    .wellness-welcome-container {
        width: min(100% - 28px, 1380px);
    }

    .wellness-welcome-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .wellness-welcome-copy {
        padding: 10px 0;
    }

    .wellness-welcome-feature {
        min-height: 500px;
    }

    .wellness-welcome-testimonial {
        top: auto;
        right: 18px;
        bottom: 18px;
        left: 18px;

        width: auto;
        min-height: 205px;

        transform: none;
    }

    .wellness-welcome-testimonial-slide {
        min-height: 205px;
    }

    .wellness-welcome-video-button {
        left: 24px;
        bottom: 24px;
    }

    .wellness-welcome-stats {
        grid-column: auto;

        grid-template-columns: repeat(2, 1fr);
    }

    .wellness-welcome-video-modal {
        padding: 18px;
    }

    .wellness-welcome-video-close {
        top: 14px;
        right: 14px;
    }
}


@media (max-width: 520px) {

    .wellness-welcome-kicker {
        font-size: 32px;
    }

    .wellness-welcome-feature {
        min-height: 440px;
    }

    .wellness-welcome-testimonial {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .wellness-welcome-video-button {
        top: 20px;
        bottom: auto;
        left: 20px;

        width: 52px;
        height: 52px;
    }

.wellness-welcome-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wellness-welcome-stat {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 12px 8px;
}

    .wellness-welcome-signature img {
        max-width: 125px;
        max-height: 52px;
    }
}


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

    .wellness-welcome-testimonial-slide,
    .wellness-welcome-video-button,
    .wellness-welcome-video-modal {
        transition: none;
    }
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Services Carousel + Finder + Quote
   ========================================================================== */

.wellness-services {
    padding: 36px 0 42px;
    background: #f8f6f1;
}

.wellness-services-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.wellness-services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.wellness-services-heading {
    max-width: 720px;
}

.wellness-services-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 9px;

    color: var(--menu-colour);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wellness-services-eyebrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(214, 197, 166, 0.25);
    color: #9b7440;

    font-size: 12px;
}

.wellness-services-heading h2 {
    margin: 0 0 16px;

    color: var(--menu-colour);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 500;
    line-height: 1.05;
}

.wellness-services-description {
    max-width: 670px;

    color: rgba(31, 44, 39, 0.68);

    font-size: 15px;
    line-height: 1.65;
}

.wellness-services-header-actions {
    flex-shrink: 0;
}

.wellness-services-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(31, 44, 39, 0.22);

    color: var(--menu-colour);

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition:
        gap 250ms ease,
        border-color 250ms ease;
}

.wellness-services-view-all:hover {
    gap: 15px;

    color: var(--menu-colour);
    border-color: var(--menu-colour);
}


/* ==========================================================================
   MAIN LAYOUT
   Three service cards + fixed action card
   ========================================================================== */

.wellness-services-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
    gap: 6px;
    align-items: start;
}


/* ==========================================================================
   SERVICE CAROUSEL
   ========================================================================== */

.wellness-services-carousel-wrap {
    position: relative;
    min-width: 0;
}

.wellness-services-carousel {
    width: 100%;
    overflow: hidden;

    cursor: grab;

    touch-action: pan-y;

    user-select: none;
}

.wellness-services-carousel.is-dragging {
    cursor: grabbing;
}

.wellness-services-track {
    display: flex;
    gap: 22px;

    width: max-content;

    transform: translate3d(0, 0, 0);

    will-change: transform;
}


/* ==========================================================================
   SERVICE CARD
   Three visible on desktop
   ========================================================================== */

.wellness-service-card {
    flex: 0 0 calc((100vw - 48px - 250px - 80px) / 4);
    width: calc((100vw - 48px - 250px - 80px) / 4);
    min-width: 0;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 4px 10px rgba(31, 44, 39, 0.12);

    transition:
        transform 300ms ease,
        box-shadow 300ms ease;
}

@media (min-width: 1429px) {

    .wellness-service-card {
        flex-basis: calc((1034px - 44px) / 3);
        width: calc((1034px - 44px) / 3);
    }
}

.wellness-service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 16px rgba(31, 44, 39, 0.19);
}


/* IMAGE */

.wellness-service-card-image {
    position: relative;

    display: block;

    height: 220px;

    overflow: hidden;

    background: #eeeae2;

    text-decoration: none;
}

.wellness-service-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    pointer-events: none;

    transition:
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wellness-service-card:hover
.wellness-service-card-image img {
    transform: scale(1.055);
}

.wellness-service-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: rgba(31, 44, 39, 0.28);

    font-size: 32px;
}


/* FLOATING ARROW */

.wellness-service-card-arrow {
    position: absolute;

    top: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);
    color: var(--menu-colour);

    box-shadow:
        0 6px 20px rgba(31, 44, 39, 0.10);

    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.wellness-service-card:hover
.wellness-service-card-arrow {
    background: var(--button-bg);
    color: var(--button-text);

    transform: rotate(45deg);
}


/* CARD BODY */

.wellness-service-card-body {
    display: flex;
    flex-direction: column;

    min-height: 190px;

    padding: 20px 20px 19px;
}

.wellness-service-card-body h3 {
    margin: 0 0 9px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.wellness-service-card-body h3 a {
    color: var(--menu-colour);
    text-decoration: none;
}

.wellness-service-card-body p {
    margin: 0 0 16px;

    color: rgba(31, 44, 39, 0.66);

    font-size: 13px;
    line-height: 1.55;
}

.wellness-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;
    
    margin-top: auto;
    padding: 8px 16px;
    border: 0;
    border-radius: 999px;
    color: var(--button-text);
    background: var(--btn-primary-bg);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    transition: gap 250ms ease;
}

.wellness-service-card-link:hover {
    gap: 12px;
    color: var(--menu-colour);
}


/* ==========================================================================
   CAROUSEL CONTROLS
   ========================================================================== */

.wellness-services-carousel-nav {
    position: absolute;

    top: -55px;
    right: 0;

    z-index: 5;

    display: flex;
    gap: 8px;
}

.wellness-services-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid rgba(31, 44, 39, 0.12);
    border-radius: 50%;

    background: #fff;
    color: var(--menu-colour);

    cursor: pointer;

    transition:
        background 250ms ease,
        color 250ms ease,
        border-color 250ms ease,
        transform 250ms ease;
}

.wellness-services-nav-button:hover {
    border-color: var(--button-bg);

    background: var(--button-bg);
    color: var(--button-text);

    transform: translateY(-2px);
}

.wellness-services-drag-hint {
    display: flex;
    align-items: center;
    gap: 7px;

    width: fit-content;

    margin-top: 13px;

    color: rgba(31, 44, 39, 0.45);

    font-size: 11px;
}

.wellness-services-drag-hint i {
    font-size: 12px;
}


/* ==========================================================================
   FIXED ACTION CARD
   ========================================================================== */

.wellness-services-actions-card {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;

    min-width: 0;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 4px 6px rgba(31, 44, 39, 0.09);
}

.wellness-services-action {
    position: relative;

    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 28px;
    align-items: start;

    padding: 20px 20px;
 

    overflow: hidden;
}
.wellness-services-action:first-child {
    border-bottom:
        1px solid rgba(31, 44, 39, 0.08);
}


/* SOFT BACKGROUND DETAIL */

.wellness-services-action::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    pointer-events: none;
}

.wellness-services-action-finder::after {
    top: -80px;
    right: -70px;

    background:
        rgba(86, 118, 102, 0.09);
}

.wellness-services-action-quote::after {
    right: -60px;
    bottom: -90px;

    background:
        rgba(214, 197, 166, 0.18);
}


/* ACTION ICON */

.wellness-services-action-icon {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin: 0;

    border-radius: 50%;

    background: rgba(214, 197, 166, 0.25);
    color: #9b7440;

    font-size: 18px;
}

/* ACTION COPY */

.wellness-services-action-content {
    position: relative;
    z-index: 1;

    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wellness-services-action-small {
    display: block;

    margin-bottom: 5px;

    color: rgba(31, 44, 39, 0.52);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.wellness-services-action-content h3 {
    margin: 0 0 6px;

    color: var(--menu-colour);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.15;
}

.wellness-services-action-content p {
    margin: 0 0 12px;

    color: rgba(31, 44, 39, 0.62);

    font-size: 12px;
    line-height: 1.45;
}


/* ACTION BUTTON */

.wellness-services-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: fit-content;
    min-height: 40px;

    margin-top: 2px;
    padding: 8px 16px;

    border: 0;
    border-radius: 999px;

    background: var(--theme-card-bg);
    color: var(--button-text);

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.wellness-services-action-button:hover {
    background: var(--theamHoverColor);
    color: var(--button-hover-text);

    transform: translateY(-2px);
}

.wellness-services-action-button i {
    transition: transform 250ms ease;
}

.wellness-services-action-button:hover i {
    transform: translateX(4px);
}


/* ==========================================================================
   TABLET
   Two services + action card
   ========================================================================== */

@media (max-width: 1100px) {

    .wellness-services-layout {
        grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
    }

    .wellness-service-card {
        flex: 0 0 calc((100% - 22px) / 2);
        width: calc((100% - 22px) / 2);
    }

    .wellness-service-card-image {
        height: 235px;
    }

    .wellness-services-carousel-nav {
        top: -50px;
    }
}


/* ==========================================================================
   MOBILE
   One service + action card underneath
   ========================================================================== */

@media (max-width: 760px) {

    .wellness-services {
        padding: 50px 0 54px;
    }

    .wellness-services-container {
        width: min(100% - 28px, 1380px);
    }

    .wellness-services-header {
        display: block;
        margin-bottom: 72px;
    }

    .wellness-services-header-actions {
        margin-top: 17px;
    }

    .wellness-services-layout {
        display: block;
    }

    .wellness-service-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .wellness-service-card-image {
        height: 280px;
    }

    .wellness-service-card-body {
        min-height: 0;
    }

    .wellness-services-carousel-nav {
        top: -52px;
        right: 0;
    }

    .wellness-services-actions-card {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;

        margin-top: 4px;
    }

    .wellness-services-action:first-child {
        border-right:
            1px solid rgba(31, 44, 39, 0.08);

        border-bottom: 0;
    }
}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 520px) {

    .wellness-service-card-image {
        height: 180px;
    }

    .wellness-service-card {
        height: auto;
        min-height: 0;
    }

    .wellness-service-card-body {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        overflow: visible;
        box-sizing: border-box;
    }

    .wellness-service-card-body p {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .wellness-service-card-body h3 {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }

    .wellness-services-actions-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .wellness-services-action:first-child {
        border-right: 0;

        border-bottom:
            1px solid rgba(31, 44, 39, 0.08);
    }

    .wellness-services-action {
        padding: 22px 20px;
    }

    .wellness-services-action-button {
        width: 100%;
    }
}

/* ==========================================================================
   WELLNESS SERVICES
   Final card alignment + action panel polish
   ========================================================================== */

/* Give the carousel edges enough breathing room */
.wellness-services-carousel {
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 12px;

    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: -12px;
}


/* Correct the three-card width on large screens */
@media (min-width: 1429px) {

    .wellness-service-card {
        flex-basis: calc((1018px - 44px) / 3);
        width: calc((1018px - 44px) / 3);
    }

}


/* Remove the decorative circles that are now fighting the photographs */
.wellness-services-action::after {
    display: none;
}


/* Make the centre divider deliberate */
.wellness-services-action:first-child {
    border-bottom: 3px solid rgba(155, 116, 64, 0.18);
}


/* Keep the Finder photograph on the right, away from the text */
.wellness-services-action-finder {
    background:
        linear-gradient(
            90deg,
            rgba(248, 246, 241, 1) 0%,
            rgba(248, 246, 241, 1) 55%,
            rgba(248, 246, 241, 0.97) 68%,
            rgba(248, 246, 241, 0.78) 80%,
            rgba(248, 246, 241, 0.38) 100%
        ),
        url('/uploadfiles/wellness/find-service-image.jpg') center right / cover no-repeat;
}


/* Keep the Quote photograph on the right, away from the text */
.wellness-services-action-quote {
    background:
        linear-gradient(
            90deg,
            rgba(248, 246, 241, 1) 0%,
            rgba(248, 246, 241, 1) 55%,
            rgba(248, 246, 241, 0.97) 68%,
            rgba(248, 246, 241, 0.76) 80%,
            rgba(248, 246, 241, 0.34) 100%
        ),
        url('/uploadfiles/wellness/service-quote-image.jpg') center right / cover no-repeat;
}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Newsletter
   ========================================================================== */

.wellness-newsletter {
    padding: 26px 0 70px;
    background: #fff;
}

.wellness-newsletter-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.wellness-newsletter-panel {
    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 246, 241, 0.96) 58%,
            rgba(238, 241, 236, 0.96) 100%
        );

    box-shadow:
        0 10px 34px rgba(31, 44, 39, 0.07);
}


/* MAIN ROW */

.wellness-newsletter-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;

    padding: 30px 34px 26px;
}

.wellness-newsletter-intro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.wellness-newsletter-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: rgba(214, 197, 166, 0.28);
    color: #9b7440;

    font-size: 21px;
}

.wellness-newsletter-copy {
    max-width: 760px;
}

.wellness-newsletter-kicker {
    display: block;

    margin-bottom: 5px;

    color: rgba(31, 44, 39, 0.56);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.wellness-newsletter-copy h2 {
    margin: 0 0 7px;

    color: var(--menu-colour);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 500;
    line-height: 1.14;
}

.wellness-newsletter-copy p {
    max-width: 680px;
    margin: 0;

    color: rgba(31, 44, 39, 0.64);

    font-size: 14px;
    line-height: 1.6;
}


/* BUTTON */

.wellness-newsletter-action {
    flex-shrink: 0;
}

.wellness-newsletter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 46px;

    padding: 11px 22px;

    border: 0;
    border-radius: 999px;

    background: var(--button-bg);
    color: var(--button-text);

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 7px 20px rgba(31, 44, 39, 0.10);

    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease,
        box-shadow 250ms ease;
}

.wellness-newsletter-button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-text);

    transform: translateY(-2px);

    box-shadow:
        0 10px 26px rgba(31, 44, 39, 0.14);
}

.wellness-newsletter-button i {
    transition: transform 250ms ease;
}

.wellness-newsletter-button:hover i {
    transform: translateX(4px);
}


/* BENEFITS ROW */

.wellness-newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top:
        1px solid rgba(31, 44, 39, 0.08);
}

.wellness-newsletter-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 66px;

    padding: 14px 20px;

    color: var(--menu-colour);

    font-size: 12px;
    font-weight: 700;
}

.wellness-newsletter-benefit + .wellness-newsletter-benefit {
    border-left:
        1px solid rgba(31, 44, 39, 0.08);
}

.wellness-newsletter-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(214, 197, 166, 0.22);
    color: #9b7440;

    font-size: 13px;
}


/* TABLET */

@media (max-width: 900px) {

    .wellness-newsletter-main {
        grid-template-columns: 1fr;
    }

    .wellness-newsletter-action {
        padding-left: 76px;
    }

}


/* MOBILE */

@media (max-width: 640px) {

    .wellness-newsletter {
        padding: 22px 0 50px;
    }

    .wellness-newsletter-container {
        width: min(100% - 28px, 1380px);
    }

    .wellness-newsletter-main {
        padding: 24px 22px 22px;
    }

    .wellness-newsletter-intro {
        gap: 14px;
    }

    .wellness-newsletter-icon {
        width: 48px;
        height: 48px;

        font-size: 18px;
    }

    .wellness-newsletter-action {
        padding-left: 62px;
    }

    .wellness-newsletter-benefits {
        grid-template-columns: 1fr;
    }

    .wellness-newsletter-benefit {
        justify-content: flex-start;

        padding-left: 22px;
    }

    .wellness-newsletter-benefit + .wellness-newsletter-benefit {
        border-left: 0;

        border-top:
            1px solid rgba(31, 44, 39, 0.08);
    }

}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Products + Special Offers
   Boutique Vertical Showcase
   ========================================================================== */

.wellness-shop-showcase {
    padding: 62px 0 68px;
    background: #fff;
}

.wellness-shop-showcase-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.wellness-shop-showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 28px;
}

.wellness-shop-showcase-header > div:first-child {
    max-width: 760px;
}

.wellness-shop-showcase-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: var(--menu-colour);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wellness-shop-showcase-eyebrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(214, 197, 166, 0.24);
    color: #9b7440;
    font-size: 12px;
}

.wellness-shop-showcase-header h2 {
    margin: 0 0 9px;
    color: var(--menu-colour);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 500;
    line-height: 1.05;
}

.wellness-shop-showcase-header p {
    max-width: 700px;
    margin: 0;
    color: rgba(31, 44, 39, 0.64);
    font-size: 14px;
    line-height: 1.65;
}

.wellness-shop-showcase-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(31, 44, 39, 0.22);
    color: var(--menu-colour);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        gap 250ms ease,
        border-color 250ms ease;
}

.wellness-shop-showcase-view-all:hover {
    gap: 14px;
    color: var(--menu-colour);
    border-color: var(--menu-colour);
}


/* MAIN GRID */

.wellness-shop-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}


/* PRODUCTS PANEL */

.wellness-shop-products-panel {
    padding: 26px;
    border-radius: 20px;
    background: #f8f6f1;
    box-shadow: 0 6px 12px rgba(31, 44, 39, 0.12);
    min-width: 0;
}

.wellness-shop-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.wellness-shop-panel-kicker {
    display: block;
    margin-bottom: 5px;
    color: rgba(31, 44, 39, 0.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.wellness-shop-panel-heading h3 {
    margin: 0;
    color: var(--menu-colour);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
}

.wellness-shop-products-controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.wellness-shop-products-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(31, 44, 39, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--menu-colour);
    cursor: pointer;
    transition:
        background 250ms ease,
        color 250ms ease,
        border-color 250ms ease,
        transform 250ms ease;
}

.wellness-shop-products-arrow:hover {
    border-color: var(--button-bg);
    background: var(--button-bg);
    color: var(--button-text);
    transform: translateY(-2px);
}

.wellness-shop-products-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}


/* VERTICAL PRODUCT WINDOW */

.wellness-shop-products-viewport {
    position: relative;
    height: 430px;
    overflow: hidden;
    touch-action: pan-y;
}

.wellness-shop-products-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wellness-shop-product-row {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px;
    min-height: 108px;
    padding: 10px;
    border: 1px solid rgba(31, 44, 39, 0.07);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255) 100%
        );
    transition:
        transform 250ms ease,
        box-shadow 250ms ease,
        border-color 250ms ease;
}

.wellness-shop-product-row:hover {
    transform: translateY(-2px);
    border-color: rgba(155, 116, 64, 0.18);
    box-shadow: 0 8px 22px rgba(31, 44, 39, 0.07);
}

.wellness-shop-product-image {
    display: block;
    width: 108px;
    height: 108px;
    overflow: hidden;
    border-radius: 13px;
    background: #f0ede7;
    text-decoration: none;
}

.wellness-shop-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 450ms ease;
}

.wellness-shop-product-row:hover .wellness-shop-product-image img {
    transform: scale(1.05);
}

.wellness-shop-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 4px 4px 4px 0;
}

.wellness-shop-product-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(31, 44, 39, 0.46);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wellness-shop-product-content h4 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
}

.wellness-shop-product-content h4 a {
    color: var(--menu-colour);
    text-decoration: none;
}

.wellness-shop-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.wellness-shop-product-bottom strong {
    color: var(--menu-colour);
    font-size: 14px;
}

.wellness-shop-product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--menu-colour);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 250ms ease;
}

.wellness-shop-product-link:hover {
    gap: 11px;
    color: var(--menu-colour);
}

.wellness-shop-products-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: 15px;
    color: rgba(31, 44, 39, 0.42);
    font-size: 11px;
}


/* SPECIAL OFFER */

.wellness-shop-offer-panel {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(31, 44, 39, 0.12);
}

.wellness-shop-offer-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #eeeae3;
}

.wellness-shop-offer-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wellness-shop-offer-panel:hover .wellness-shop-offer-image img {
    transform: scale(1.045);
}

.wellness-shop-offer-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(31, 44, 39, 0.20) 0%,
            rgba(31, 44, 39, 0) 58%
        );
    pointer-events: none;
}

.wellness-shop-offer-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--menu-colour);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(31, 44, 39, 0.08);
}

.wellness-shop-offer-body {
    padding: 24px;
}

.wellness-shop-offer-kicker {
    display: block;
    margin-bottom: 5px;
    color: #9b7440;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.wellness-shop-offer-body h3 {
    margin: 0 0 9px;
    color: var(--menu-colour);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.12;
}

.wellness-shop-offer-body > p {
    margin: 0 0 16px;
    color: rgba(31, 44, 39, 0.62);
    font-size: 13px;
    line-height: 1.55;
}

.wellness-shop-offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.wellness-shop-offer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f8f6f1;
    color: rgba(31, 44, 39, 0.72);
    font-size: 10px;
    font-weight: 700;
}

.wellness-shop-offer-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 44, 39, 0.08);
}

.wellness-shop-offer-price-row > div {
    display: flex;
    flex-direction: column;
}

.wellness-shop-offer-price-row span {
    margin-bottom: 2px;
    color: rgba(31, 44, 39, 0.46);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wellness-shop-offer-price-row strong {
    color: var(--menu-colour);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.wellness-shop-offer-price-row del {
    color: rgba(31, 44, 39, 0.38);
    font-size: 13px;
}

.wellness-shop-offer-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}

.wellness-shop-offer-view {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--menu-colour);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.wellness-shop-offer-view:hover {
    color: var(--menu-colour);
}

.wellness-shop-offer-form {
    margin: 0;
}

.wellness-shop-offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    padding: 10px 15px;
    border: 0;
    border-radius: 999px;
    background: var(--theme-card-bg);
    color: var(--button-text);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(31, 44, 39, 0.10);
    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease,
        box-shadow 250ms ease;
}

.wellness-shop-offer-button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(31, 44, 39, 0.14);
}


/* EMPTY */

.wellness-shop-empty {
    padding: 28px;
    border-radius: 14px;
    background: #f8f6f1;
    color: rgba(31, 44, 39, 0.56);
    text-align: center;
    font-size: 13px;
}


/* TABLET */

@media (max-width: 1050px) {

    .wellness-shop-showcase-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
    }

    .wellness-shop-product-row {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .wellness-shop-product-image {
        width: 92px;
        height: 92px;
    }

}


/* STACK */

@media (max-width: 820px) {

    .wellness-shop-showcase-grid {
        grid-template-columns: 1fr;
    }

    .wellness-shop-products-viewport {
        height: auto;
        overflow: visible;
    }

    .wellness-shop-products-track {
        transform: none !important;
    }

    .wellness-shop-products-controls,
    .wellness-shop-products-hint {
        display: none;
    }

    .wellness-shop-product-row:nth-child(n+4) {
        display: none;
    }

    .wellness-shop-offer-panel {
        display: grid;
        grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    }

    .wellness-shop-offer-image {
        height: 100%;
        min-height: 330px;
    }

}


/* MOBILE */

@media (max-width: 640px) {

    .wellness-shop-showcase {
        padding: 50px 0 54px;
    }

    .wellness-shop-showcase-container {
        width: min(100% - 28px, 1380px);
    }

    .wellness-shop-showcase-header {
        display: block;
    }

    .wellness-shop-showcase-view-all {
        margin-top: 18px;
    }

    .wellness-shop-products-panel {
        padding: 18px;
    }

    .wellness-shop-product-row {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
    }

    .wellness-shop-product-image {
        width: 82px;
        height: 82px;
    }

    .wellness-shop-product-content h4 {
        font-size: 17px;
    }

    .wellness-shop-product-link span {
        display: none;
    }

    .wellness-shop-offer-panel {
        display: block;
    }

    .wellness-shop-offer-image {
        height: 210px;
        min-height: 0;
    }

    .wellness-shop-offer-actions {
        grid-template-columns: 1fr;
    }

    .wellness-shop-offer-view {
        justify-content: center;
    }

}

/* ==========================================================================
   WELLNESS HOMEPAGE
   Latest Section
   Live / Blog / Event
   ========================================================================== */

.wellness-latest {
    padding: 64px 0 70px;
    background: #f8f6f1;
}

.wellness-latest-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.wellness-latest-header {
    margin-bottom: 28px;
}

.wellness-latest-header > div {
    max-width: 760px;
}

.wellness-latest-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: var(--menu-colour);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wellness-latest-eyebrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(214, 197, 166, 0.24);
    color: #9b7440;
    font-size: 12px;
}

.wellness-latest-header h2 {
    margin: 0 0 9px;
    color: var(--menu-colour);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 500;
    line-height: 1.05;
}

.wellness-latest-header p {
    max-width: 690px;
    margin: 0;
    color: rgba(31, 44, 39, 0.64);
    font-size: 14px;
    line-height: 1.65;
}


/* GRID */

.wellness-latest-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: stretch;
}


/* LARGE FEATURE CARD */

.wellness-latest-feature {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #f8f6f1;
    box-shadow: 0 10px 34px rgba(31, 44, 39, 0.07);
}

.wellness-latest-feature-image {
    position: relative;
    height: 345px;
    overflow: hidden;
    background: #ece8e1;
}

.wellness-latest-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wellness-latest-feature:hover .wellness-latest-feature-image img {
    transform: scale(1.04);
}

.wellness-latest-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(31, 44, 39, 0.28) 0%,
            rgba(31, 44, 39, 0.02) 58%
        );
    pointer-events: none;
}


/* LIVE / NEXT BADGES */

.wellness-latest-live-badge,
.wellness-latest-next-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--menu-colour);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(31, 44, 39, 0.10);
}

.wellness-latest-live-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--button-bg);
    box-shadow: 0 0 0 4px rgba(31, 44, 39, 0.08);
}


/* FEATURE BODY */

.wellness-latest-feature-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}

.wellness-latest-category {
    display: block;
    margin-bottom: 7px;
    color: #9b7440;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.wellness-latest-feature-body h3 {
    margin: 0 0 10px;
    color: var(--menu-colour);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 2.3vw, 36px);
    font-weight: 500;
    line-height: 1.1;
}

.wellness-latest-feature-body p {
    max-width: 620px;
    margin: 0 0 20px;
    color: rgba(31, 44, 39, 0.63);
    font-size: 13px;
    line-height: 1.6;
}

.wellness-latest-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}


/* BUTTONS */

.wellness-latest-primary-button,
.wellness-latest-payment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.wellness-latest-primary-button {
    background: var(--button-bg);
    color: var(--button-text);
}

.wellness-latest-primary-button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-text);
    transform: translateY(-2px);
}

.wellness-latest-payment-button {
    border: 1px solid rgba(31, 44, 39, 0.14);
    background: #fff;
    color: var(--menu-colour);
}

.wellness-latest-payment-button:hover {
    border-color: var(--button-bg);
    background: var(--button-bg);
    color: var(--button-text);
    transform: translateY(-2px);
}


/* RIGHT SIDE */

.wellness-latest-side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* SMALL CARD */

.wellness-latest-card {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 44, 39, 0.07);
    transition:
        transform 280ms ease,
        box-shadow 280ms ease;
}

.wellness-latest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(31, 44, 39, 0.10);
}

.wellness-latest-card-image {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    background: #eeeae3;
}

.wellness-latest-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.wellness-latest-card:hover .wellness-latest-card-image img {
    transform: scale(1.05);
}

.wellness-latest-card-type {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--menu-colour);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 5px 14px rgba(31, 44, 39, 0.08);
}


/* SMALL CARD BODY */

.wellness-latest-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
}

.wellness-latest-card-body h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.18;
}

.wellness-latest-card-body h3 a {
    color: var(--menu-colour);
    text-decoration: none;
}

.wellness-latest-card-body p {
    margin: 0 0 14px;
    color: rgba(31, 44, 39, 0.60);
    font-size: 12px;
    line-height: 1.55;
}

.wellness-latest-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(31, 44, 39, 0.07);
}

.wellness-latest-card-footer > span {
    color: rgba(31, 44, 39, 0.46);
    font-size: 10px;
}

.wellness-latest-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--menu-colour);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 250ms ease;
}

.wellness-latest-card-footer a:hover {
    gap: 11px;
    color: var(--menu-colour);
}


/* TABLET */

@media (max-width: 1050px) {

    .wellness-latest-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .wellness-latest-card {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .wellness-latest-feature-image {
        height: 310px;
    }

}


/* STACK */

@media (max-width: 820px) {

    .wellness-latest-grid {
        grid-template-columns: 1fr;
    }

    .wellness-latest-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .wellness-latest-card {
        display: block;
    }

    .wellness-latest-card-image {
        height: 210px;
    }

}


/* MOBILE */

@media (max-width: 640px) {

    .wellness-latest {
        padding: 50px 0 54px;
    }

    .wellness-latest-container {
        width: min(100% - 28px, 1380px);
    }

    .wellness-latest-feature-image {
        height: 240px;
    }

    .wellness-latest-feature-body {
        padding: 22px;
    }

    .wellness-latest-side {
        grid-template-columns: 1fr;
    }

    .wellness-latest-card-image {
        height: 205px;
    }

    .wellness-latest-card-body {
        padding: 18px;
    }

    .wellness-latest-feature-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

}

/* ==========================================================================
   WELLNESS LATEST
   Up Next Compact Layout
   ========================================================================== */

.wellness-latest-next-date-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--menu-colour);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(31, 44, 39, 0.10);
}

.wellness-latest-next-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wellness-latest-next-title-row h3 {
    margin: 0;
}

.wellness-latest-next-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--menu-colour);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 250ms ease;
}

.wellness-latest-next-link:hover {
    gap: 12px;
    color: var(--menu-colour);
}

.wellness-latest-next-description {
    max-width: 680px;
    margin: 12px 0 0 !important;
    color: rgba(31, 44, 39, 0.63);
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 640px) {

    .wellness-latest-next-title-row {
        align-items: flex-start;
        gap: 14px;
    }

    .wellness-latest-next-link span {
        display: none;
    }

    .wellness-latest-next-date-badge {
        left: 14px;
        bottom: 14px;
    }

}

/* ==========================================================================
   WELLNESS LATEST
   Live Now Indicator
   ========================================================================== */

.wellness-latest-live-badge {
    background: #d92d20;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 6px 18px rgba(217, 45, 32, 0.22),
        0 0 0 0 rgba(217, 45, 32, 0.30);
    animation: wellnessLiveBadgePulse 2s ease-in-out infinite;
}

.wellness-latest-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
    animation: wellnessLiveDotPulse 1.4s ease-in-out infinite;
}

@keyframes wellnessLiveBadgePulse {

    0%,
    100% {
        box-shadow:
            0 6px 18px rgba(217, 45, 32, 0.22),
            0 0 0 0 rgba(217, 45, 32, 0.30);
    }

    50% {
        box-shadow:
            0 6px 18px rgba(217, 45, 32, 0.28),
            0 0 0 7px rgba(217, 45, 32, 0);
    }
}

@keyframes wellnessLiveDotPulse {

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

    50% {
        opacity: 0.55;
        transform: scale(0.75);
    }
}

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

    .wellness-latest-live-badge,
    .wellness-latest-live-dot {
        animation: none;
    }

}

/* LIVE TITLE + WATCH LIVE LINK */

.wellness-latest-live-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wellness-latest-live-title-row h3 {
    margin: 0;
}

.wellness-latest-live-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--menu-colour);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 250ms ease;
}

.wellness-latest-live-link:hover {
    gap: 12px;
    color: var(--menu-colour);
}

@media (max-width: 640px) {

    .wellness-latest-live-title-row {
        align-items: flex-start;
        gap: 14px;
    }

    .wellness-latest-live-link span {
        display: none;
    }

}
.wellness-latest-card-description {
    margin: 0 0 14px;
    color: rgba(31, 44, 39, 0.60);
    font-size: 12px;
    line-height: 1.55;
}

.wellness-latest-card-description p {
    margin: 0 0 8px;
}

.wellness-latest-card-description p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   WELLNESS LATEST
   Instant Live Payment
   ========================================================================== */

.wellness-latest-payment-button {
    background: var(--button-bg);
    color: var(--button-text);
    border-color: transparent;
    box-shadow: 0 5px 16px rgba(31, 44, 39, 0.10);
    animation: wellnessInstantPaymentGlow 6s ease-in-out infinite;
}

.wellness-latest-payment-button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-text);
    border-color: transparent;
    transform: translateY(-1px);
    animation-play-state: paused;
}

@keyframes wellnessInstantPaymentGlow {

    0%,
    100% {
        filter: brightness(1);
        box-shadow: 0 5px 16px rgba(31, 44, 39, 0.10);
    }

    50% {
        filter: brightness(1.12);
        box-shadow:
            0 7px 20px rgba(31, 44, 39, 0.15),
            0 0 0 5px rgba(254, 212, 146, 0.70);
    }

}

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

    .wellness-latest-payment-button {
        animation: none;
    }

}

/* ==========================================================================
   WELLNESS SERVICES
   MOBILE TRACK WIDTH FIX
   ========================================================================== */

@media (max-width: 520px) {

    .wellness-services-carousel-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .wellness-services-carousel {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;

        margin-left: 0;
        margin-right: 0;

        padding-left: 0;
        padding-right: 0;
    }

    .wellness-services-track {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 22px;
    }

    .wellness-service-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .wellness-service-card-body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

}

/* ==========================================================================
   WELLNESS LATEST
   Mobile Blog + Event Card Fix
   ========================================================================== */

@media (max-width: 640px) {

    .wellness-latest-side {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 18px;
    }

    .wellness-latest-card {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .wellness-latest-card-image {
        display: block;
        width: 100%;
        height: 205px;
        min-height: 205px;
        overflow: hidden;
    }

    .wellness-latest-card-body {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        padding: 18px;
        box-sizing: border-box;
        overflow: visible;
    }

    .wellness-latest-card-body h3,
    .wellness-latest-card-body p,
    .wellness-latest-card-description {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .wellness-latest-card-footer {
        width: 100%;
        margin-top: 8px;
    }
    
    .wellness-latest-card-body h3 {
    font-size: 24px;
    line-height: 1.2;
}

.wellness-latest-card-body p,
.wellness-latest-card-description {
    font-size: 14px;
    line-height: 1.65;
}

.wellness-latest-card-footer > span {
    font-size: 12px;
}

.wellness-latest-card-footer a {
    font-size: 12px;
}

}

/* ==========================================================================
   WELLNESS MOBILE - DISABLE MINI CART POPUP
   Keep basket icon/link, prevent popup opening
   ========================================================================== */

@media (max-width: 767px) {

    .wellness-mini-cart {
        display: none !important;
    }

}

/* ==========================================================================
   WELLNESS MOBILE - SPACE CART AWAY FROM HAMBURGER
   ========================================================================== */

@media (max-width: 767px) {

    .wellness-header-cart-wrap {
        margin-right: 14px !important;
    }

}

@media (max-width: 420px) {

    .wellness-header-cart {
        margin-right: 24px !important;
    }

}

/* ==========================================================================
   WELLNESS MOBILE MENU - ALWAYS ABOVE STICKY HEADER
   ========================================================================== */

.wellness-mobile-menu {
    z-index: 6000 !important;
}

.offcanvas-backdrop {
    z-index: 5990 !important;
}

/* ==========================================================================
   WELLNESS TABLET - STICKY HEADER ALIGNMENT
   Push sticky actions / hamburger to far right
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1200px) {

    .wellness-sticky-inner {
        width: 100%;
    }

    .wellness-sticky-logo {
        flex: 1 1 auto !important;
        min-width: 0;
    }

    .wellness-sticky-actions {
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }
    

}

/* ==========================================================================
   OTHERS
   ========================================================================== */

.wishlist-icon i {

    color: var(--wishlist-heart-color) #dc3545 !important;
    font-size: 14px;
}

.wellness-wishlist-count {
    font-size: 16px !important;
    color: var(--wishlist-count-bg-color) #dc3545 !important;
}   
.wishlist-count {
     font-size: 16px !important;
    color: var(--wishlist-count-bg-color) #dc3545 !important;

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

    .wellness-services-carousel {
        touch-action: pan-y;
        overscroll-behavior-x: contain;
    }

    .wellness-services-track {
        touch-action: pan-y;
    }
    

.wellness-mobile-basket .wellness-mobile-wishlist-count {
    color: #fff !important;
;
}
@media (max-width: 767px) {
    .wellness-sticky-header .wellness-header-wishlist i

 {
        color: var(--wishlist-heart-color) #dc3545 !important;
    }
}

/* ==========================================================================
   WELLNESS TABLET - STICKY HEADER FINAL POSITION
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1200px) {

    .wellness-sticky-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .wellness-sticky-navigation {
        display: none !important;
    }

    .wellness-sticky-logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .wellness-sticky-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }

    .wellness-sticky-actions .wellness-booking-btn {
        display: none !important;
    }

    .wellness-sticky-actions .wellness-mobile-toggle {
        display: inline-flex !important;
        flex: 0 0 auto !important;
    }
    
}

/* ==========================================================================
   WELLNESS TABLET - GAP BEFORE HAMBURGER
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1200px) {

    .wellness-sticky-actions .wellness-mobile-toggle {
        margin-left: 80px !important;
    }

}

/* ==========================================================================
   WELLNESS MOBILE HEADER - NORMAL / STICKY ALIGNMENT TEST
   ========================================================================== */

@media (max-width: 767px) {

    /* Both header states use the same horizontal boundary */
    .wellness-header-container,
    .wellness-sticky-header .wellness-header-container {
        width: calc(100% - 28px) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Normal header actions */
    .wellness-header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
        gap: 5px !important;
    }

    /* Sticky header actions */
    .wellness-sticky-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
        gap: 5px !important;
    }

    /* Reset old spacing hacks */
    .wellness-header-cart-wrap {
        margin-right: 0 !important;
    }

    .wellness-header-cart {
        margin-right: 0 !important;
    }

    /* Hamburger gets a real fixed box */
    .wellness-mobile-toggle,
    .wellness-sticky-actions .wellness-mobile-toggle {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;

        gap: 5px !important;
        box-sizing: border-box !important;
    }

    .wellness-mobile-toggle span {
        width: 24px !important;
        margin: 0 !important;
    }
}