/* ==========================================================================
   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-header-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(--wellness-menu-colour);
    opacity: 0.65;
}

.wellness-search-form input:focus {
    border-color: var(--wellness-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(--wellness-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(--wellness-register-bg);
    color: var(--wellness-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(--wellness-accent-bg);
    color: var(--wellness-accent-text);
    font-size: 10px;
}


/* Mobile social */

.wellness-mobile-social-title,
.wellness-mobile-language-title {
    margin-bottom: 12px;
    color: var(--wellness-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(--wellness-social-colour);
    text-decoration: none;
}

.wellness-mobile-social-links a:hover {
    color: var(--wellness-social-hover);
    border-color: var(--wellness-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-container {
        width: calc(100% - 28px);
    }

    .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;
    }

    .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: var(--wellness-dropdown-text) !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: var(--wellness-accent-text);
    font-size: 10px;
    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(--wellness-hover-colour);
    font-size: 16px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.wellness-header-wishlist:hover {
    color: var(--wellness-menu-colour);
    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(--wellness-accent-bg);
    color: var(--wellness-accent-text);
    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: 20px !important;
    height: 20px !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: #000 !important;

    font-size: 10px !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(--wellness-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);
}

.wellness-header-icon-btn:hover,
.wellness-header-cart:hover,
.wellness-header-account:hover,
.wellness-header-wishlist:hover {
    color: var(--wellness-hover-colour);
    background: rgba(79, 118, 107, 0.08);
    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(--wellness-menu-colour);
}

.wellness-mini-cart-count {
    color: var(--wellness-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(--wellness-accent-bg);
    color: var(--wellness-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:
        radial-gradient(
            circle at 8% 15%,
            rgba(191, 211, 197, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(198, 168, 107, 0.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            var(--wellness-footer-bg) 0%,
            #182823 100%
        );
    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(--wellness-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(--wellness-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(--wellness-footer-accent);
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.22s ease;
}

.wellness-footer-links a:hover {
    color: var(--wellness-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(--wellness-footer-accent);
    border-color: var(--wellness-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(--wellness-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(--wellness-footer-accent);
    border-color: var(--wellness-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(--wellness-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(--wellness-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(--wellness-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(--wellness-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: 1fr;
        gap: 30px;
    }

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

/* ==========================================================================
   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(--wellness-hero-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(--wellness-hero-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) 34%,
            rgba(246, 241, 231, 0.58) 52%,
            rgba(246, 241, 231, 0.08) 72%,
            rgba(246, 241, 231, 0.00) 100%
        );
}

.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(--wellness-hero-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(--wellness-hero-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(--wellness-hero-button-bg, #4f766b);
    color: var(--wellness-hero-button-text, #ffffff);
    box-shadow: 0 12px 30px rgba(39,56,50,0.16);
}

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

.wellness-home-hero-primary:hover {
    color: var(--wellness-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;
    }
}
