/* ==========================================================
   STEPHANIES® LUXURY SPAS — CORE THEME STYLES
   Bootstrap 5.3 Compatible | Designed for Mobile → 4K
   ========================================================== */

/* ---------- Brand Color Palette ---------- */
:root {
    --rose-blush: #f8ecea;         /* Light pink hue for accents */
    --rose-gold: #c89f9c;          /* Elegant rose gold tone */
    --stone-grey: #dcd7d3;         /* Subtle neutral for dividers */
    --charcoal: #2b2b2b;           /* Body text color */
    --cream: #f9f7f6;              /* Background neutral */
    --white: #ffffff;
    --black: #000000;

    --accent-hover: #b3827e;
    --transition-speed: 0.25s;
}

/* ---------- Base Body ---------- */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    /* color: var(--charcoal); */
   /* color: #fefdfb;*/
    font-weight: 600;
    letter-spacing: -0.015em;
}

p, li {
    line-height: 1.7;
}

a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
a:hover {
    color: var(--accent-hover);
}

/* ---------- Top Banner ---------- */
.bg-rose-50 {
    background-color: var(--rose-blush);
    color: var(--charcoal);
    letter-spacing: 0.02em;
    font-size: 0.85rem;
}

/* ---------- Navbar ---------- */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--stone-grey);
}
.navbar-brand img {
    height: 42px;
    transition: opacity var(--transition-speed);
}
.navbar-brand:hover img {
    opacity: 0.8;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    color: var(--charcoal) !important;
}
.nav-link:hover {
    color: var(--accent-hover) !important;
}
.btn-outline-dark {
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Hero Section ---------- */
.hero-section,
.parallax-section {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section,
    .parallax-section {
        height: 75vh;
    }
}
.hero-section picture img,
.parallax-section {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.35);
    color: var(--white);
    text-align: center;
    transition: background var(--transition-speed);
}
.hero-overlay h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: lowercase;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}
.hero-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.hero-overlay .btn {
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 0;
    letter-spacing: 0.05em;
    transition: all var(--transition-speed);
}
.hero-overlay .btn:hover {
    background-color: var(--white);
    color: var(--charcoal);
}

/* ---------- Cards / Image Tiles ---------- */
.card, .rounded {
    border-radius: 12px !important;
}
.card {
    border: none;
    background-color: var(--white);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.card img {
    border-radius: 12px 12px 0 0;
}

/* ---------- Destination Grid ---------- */
#destinations h6 {
    font-weight: 600;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
#destinations img {
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}
#destinations a:hover img {
    transform: scale(1.02);
    opacity: 0.9;
}

/* ---------- Newsletter ---------- */
section.bg-dark {
    background-color: var(--charcoal) !important;
}
section.bg-dark .btn {
    background-color: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--white);
}
section.bg-dark .btn:hover {
    background-color: var(--white);
    color: var(--charcoal);
}

/* ---------- Footer ---------- */
/* Footer styles are self-contained in partials/footer.php */

/* ---------- Buttons ---------- */
.btn-outline-dark:hover {
    background-color: var(--charcoal);
    color: var(--white);
}
.btn-outline-dark {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Utilities ---------- */
.text-shadow {
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.bg-cream {
    background-color: var(--cream);
}
/* ---------- mySpa Rewards Link ---------- */
.text-rose {
    color: var(--rose-gold) !important;
}
.text-rose:hover {
    color: var(--charcoal) !important;
    text-decoration: underline;
}
/* Rewards Modal Styling */
#mySpaRewardsModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}
#mySpaRewardsModal .nav-tabs .nav-link {
    border: none;
    color: #a56f74
    font-weight: 500;
}
#mySpaRewardsModal .nav-tabs .nav-link.active {
    border-bottom: 2px solid #a56f74;
    color: #000;
}
#mySpaRewardsModal input.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}
/* ---------- mySpa Rewards Modal ---------- */
#mySpaRewardsModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}
#mySpaRewardsModal .nav-tabs .nav-link {
    border: none;
    color: #a56f74;
    font-weight: 500;
}
#mySpaRewardsModal .nav-tabs .nav-link.active {
    border-bottom: 2px solid #a56f74;
    color: #000;
}
#mySpaRewardsModal input.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}
#mySpaRewardsModal .btn-dark {
    background-color: #000;
    border: none;
}
#mySpaRewardsModal .btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}
/* ---------- mySpa Rewards Modal ---------- */
#mySpaRewardsModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}
#mySpaRewardsModal .nav-tabs .nav-link {
    border: none;
    color: #a56f74;
    font-weight: 500;
}
#mySpaRewardsModal .nav-tabs .nav-link.active {
    border-bottom: 2px solid #a56f74;
    color: #000;
}
#mySpaRewardsModal input.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}
#mySpaRewardsModal .btn-dark {
    background-color: #000;
    border: none;
}
#mySpaRewardsModal .btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}
.text-rose {
    color: #a56f74 !important;
}

/* ---------- mySpa Rewards Modal ---------- */
#mySpaRewardsModal .modal-content {border-radius:1rem;overflow:hidden;}
#mySpaRewardsModal .nav-tabs .nav-link {border:none;color:#a56f74;font-weight:500;}
#mySpaRewardsModal .nav-tabs .nav-link.active {border-bottom:2px solid #a56f74;color:#000;}
#mySpaRewardsModal input.form-control {border:1px solid #ddd;padding:0.75rem 1rem;}
#mySpaRewardsModal .btn-dark {background-color:#000;border:none;}
#mySpaRewardsModal .btn-outline-dark:hover {background-color:#000;color:#fff;}
.text-rose {color:#a56f74!important;}
/* ---------- Navbar Dropdown Styling ---------- */
.navbar .dropdown-menu {
    background-color: #fff;
    min-width: 180px;
    font-size: 0.875rem;
}
.navbar .dropdown-item {
    color: #333;
    transition: background-color 0.2s ease;
}
.navbar .dropdown-item:hover {
    background-color: #f9f3f2;
    color: #000;
}
.navbar .dropdown-item.text-danger:hover {
    background-color: #fce6e6;
}
.text-rose { color: #a56f74 !important; }
.navbar .dropdown-menu { background-color: #fff; min-width: 180px; font-size: 0.875rem; }
.navbar .dropdown-item:hover { background-color: #f9f3f2; color: #000; }
.navbar .dropdown-item.text-danger:hover { background-color: #fce6e6; }

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        position: static;
        float: none;
        background: #fff;
        margin-top: 0;
        box-shadow: none;
    }
    .navbar .dropdown-item {
        padding-left: 1.5rem;
    }
}
.navbar .nav-link,
.navbar .dropdown-item {
    transition: color 0.3s ease, background-color 0.3s ease;
}
.btn, a.btn {
    transition: all 0.3s ease;
}
.navbar.scroll-down { transform: translateY(-100%); transition: transform 0.4s ease; }
.navbar.scroll-up { transform: translateY(0); transition: transform 0.4s ease; }
.section {
    padding: 80px 0;
}
.section-light {
    background-color: #fafafa;
}
.location-card:hover img {
    transform: scale(1.03);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.location-card:hover h5 {
    color: var(--rose);
}
.btn-rose {
    background-color: #b57f84;
    border: none;
    color: #fff;
    transition: background 0.3s ease;
}
.btn-rose:hover {
    background-color: #a66f74;
    color: #fff;
}
/* Compact Top Bar Styling */
.bg-rose-50 {
    background-color: #f9f3f4;
}

.text-rose {
    color: #b57f84 !important;
}
.text-rose:hover { color: #a66f74 !important; }

.dropdown-menu {
    border-radius: 0.75rem;
    min-width: 210px;
    padding: 0.5rem 0;
}

.dropdown-item wa-icon {
    --wa-size: 1rem;
    --wa-color: #b57f84;
}

wa-icon {
    vertical-align: middle;
    --wa-color: #b57f84;
    transition: transform 0.25s ease;
}
wa-icon:hover { transform: scale(1.1); }
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}
/* Ensure all cards in the row have equal height */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > [class*='col-'] {
    display: flex;
}

.row.g-4 .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.row.g-4 .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.bg-rose {
    background-color: #b57f84 !important;
    color: #fff !important;
}

.badge.bg-rose {
    background-color: #b57f84 !important;
    color: #fff !important;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    font-size: 0.75rem;
}
.spa-shop-favourites {
    padding: 60px 0;
}
.spa-shop-favourites h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 36px;
}
.spa-shop-favourites .ssf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.spa-shop-favourites .ssf-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    padding: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.spa-shop-favourites .ssf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.spa-shop-favourites .ssf-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.spa-shop-favourites .ssf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spa-shop-favourites .ssf-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 16px;
    flex-grow: 1;
}
.spa-shop-favourites .ssf-brand {
    font-weight: 600;
    margin-bottom: 6px;
}
.spa-shop-favourites .ssf-name {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 10px;
}
.spa-shop-favourites .ssf-price {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 14px;
}
.spa-shop-favourites .ssf-btn {
    background-color: #b7ada3;
    color: #fff;
    border: none;
    padding: 10px 0;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}
.spa-shop-favourites .ssf-btn:hover {
    background-color: #a89f96;
}

/* Responsive */
@media (max-width: 992px) {
    .spa-shop-favourites .ssf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .spa-shop-favourites .ssf-grid {
        grid-template-columns: 1fr;
    }
}

/* Spa Shop Favourites Section */
.spa-shop-favourites {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.spa-shop-favourites h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #333;
}

.ssf-grid {
    display: -ms-grid; /* IE 11 support */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
    .ssf-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .ssf-card {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 calc(25% - 1.5rem);
        flex: 0 1 calc(25% - 1.5rem);
        min-width: 250px;
    }
}

.ssf-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.ssf-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ssf-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.ssf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Safari-specific image rendering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ssf-info {
    padding: 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.ssf-brand {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
}

.ssf-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    min-height: 2.8em;
}

.ssf-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b57f84;
    margin-top: auto;
    padding-top: 0.5rem;
}

.ssf-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    /* Safari button fixes */
    -webkit-appearance: none;
    appearance: none;
}

.ssf-btn:hover {
    background-color: #b57f84;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ssf-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    @supports (-webkit-appearance: none) {
        .ssf-card {
            -webkit-flex: 0 1 calc(50% - 1rem);
            flex: 0 1 calc(50% - 1rem);
        }
    }
}

@media (max-width: 768px) {
    .spa-shop-favourites {
        padding: 3rem 0;
    }

    .ssf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    @supports (-webkit-appearance: none) {
        .ssf-card {
            -webkit-flex: 0 1 calc(50% - 0.5rem);
            flex: 0 1 calc(50% - 0.5rem);
            min-width: 0;
        }
    }
}

@media (max-width: 480px) {
    .ssf-grid {
        grid-template-columns: 1fr;
    }

    @supports (-webkit-appearance: none) {
        .ssf-grid {
            display: block;
        }

        .ssf-card {
            margin-bottom: 1rem;
            width: 100%;
        }
    }
}
.p60px {
    padding-top: 60px;
    padding-bottom: 60px;
   }
.pb60px {
    padding-bottom: 60px;
   }
/* Align product cards so Add to Bag sits on the same baseline */
.spa-shop-favourites .ssf-card{display:flex;flex-direction:column}
.spa-shop-favourites .ssf-info{flex:1 1 auto;display:flex;flex-direction:column}
.spa-shop-favourites .ssf-btn{margin-top:auto}
/* Footer NAP — replaced by site-footer in partials/footer.php */
/* Mobile CTA Bar */
.mobile-cta-bar{
    position:fixed;left:0;right:0;bottom:0;z-index:1200;
    display:flex;gap:8px;justify-content:center;align-items:center;
    padding:10px 12px;background:#ffffff;border-top:1px solid rgba(0,0,0,0.08);
}
.mobile-cta-bar .mcta-btn{
    flex:1 1 0; text-align:center; padding:10px 14px; font-size:15px; line-height:1;
    border:1px solid rgba(0,0,0,0.15); background:#f6f5f4; color:#222; text-decoration:none; cursor:pointer;
}
.mobile-cta-bar .mcta-primary{ background:#2a2a2a; color:#fff; border-color:#2a2a2a; }
.mobile-cta-bar .mcta-btn:active{ transform:translateY(1px); }

/* Hide on desktop */
@media (min-width: 768px){
    .mobile-cta-bar{ display:none; }
}

/* Call Sheet */
.mcta-sheet-backdrop{
    position:fixed; inset:0; background:rgba(0,0,0,0.35); z-index:1199;
}
.mcta-call-sheet{
    position:fixed; left:0; right:0; bottom:0; z-index:1200;
    background:#fff; border-top:1px solid rgba(0,0,0,0.08);
    box-shadow:0 -10px 30px rgba(0,0,0,0.15);
    border-top-left-radius:12px; border-top-right-radius:12px;
    padding:12px 16px 16px;
}
.mcta-sheet-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.mcta-sheet-header h3{ font-size:16px; margin:0; font-weight:600; }
.mcta-close{ background:transparent; border:0; font-size:22px; line-height:1; cursor:pointer; }

.mcta-call-list{ list-style:none; margin:8px 0 0; padding:0; display:grid; gap:10px; }
.mcta-call-list li{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.mcta-call-list span{ font-size:14px; color:#2b2b2b; }
.mcta-call-list a{ font-size:15px; color:#222; text-decoration:none; border-bottom:1px dotted rgba(0,0,0,0.25); }
.mcta-call-list a:active{ opacity:0.75; }
/* 3-Tile Block */
.steph-3-tiles { padding: 60px 0; }
.steph-3-tiles .tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.steph-3-tiles .tile {
    text-align: center;
    padding: 0 12px;
}
.steph-3-tiles .tile-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
}
.steph-3-tiles h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.steph-3-tiles p {
    font-size: 15px;
    color: #444;
    margin-bottom: 18px;
}

/* Primary CTA button */
.steph-3-tiles .btn-primary {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 10px 22px;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #2a2a2a;
    transition: background .25s ease;
}
.steph-3-tiles .btn-primary:hover {
    background: #000;
}

/* Secondary text link */
.steph-3-tiles .text-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    text-decoration: underline;
    opacity: 0.85;
}
.steph-3-tiles .text-link:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .steph-3-tiles .tiles-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ========== mySpa Rewards Modal - CONSOLIDATED ========== */
#mySpaRewardsModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}

#mySpaRewardsModal .modal-body {
    padding: 2rem 1.5rem;
}

#mySpaRewardsModal .row {
    margin-left: 0;
    margin-right: 0;
}

#mySpaRewardsModal .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

#mySpaRewardsModal .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 1.5rem;
}

#mySpaRewardsModal .nav-tabs .nav-link {
    border: none;
    color: #a56f74;
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-transform: none;
}

#mySpaRewardsModal .nav-tabs .nav-link.active {
    border-bottom: 2px solid #a56f74;
    color: #000;
    background: transparent;
}

#mySpaRewardsModal input.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    border-radius: 50rem;
}

#mySpaRewardsModal .btn-dark {
    background-color: #000;
    border: none;
}

#mySpaRewardsModal .btn-outline-dark {
    border-color: #000;
    color: #000;
}

#mySpaRewardsModal .btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Balance Tab - Fix alignment */
#mySpaRewardsModal #balance .bg-light {
    padding: 2rem 1.5rem;
}

#mySpaRewardsModal #balance .row {
    display: flex;
    align-items: stretch;
}

#mySpaRewardsModal #balance .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
}

/* Image column - fix centering */
#mySpaRewardsModal .col-md-5 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#mySpaRewardsModal .col-md-5 img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* Content column - ensure proper width */
#mySpaRewardsModal .col-md-7 {
    display: flex;
    flex-direction: column;
}

/* Responsive fixes */
@media (max-width: 767px) {
    #mySpaRewardsModal .modal-body {
        padding: 1.5rem 1rem;
    }

    #mySpaRewardsModal #balance .col-12 {
        margin-bottom: 1rem;
    }

    #mySpaRewardsModal #balance .col-12:last-child {
        margin-bottom: 0;
    }
}

/* ---------- Why Guests Choose Stephanies® ---------- */
#why-stephanies h2 {
    color: var(--charcoal);
}

#why-stephanies h2 sup {
    font-size: 0.5em;
    top: -0.8em;
}

#why-stephanies h6 {
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.steph-trust__icon {
    font-size: 1.5rem;
    color: var(--rose-gold);
    transition: color var(--transition-speed) ease;
}

.steph-trust__item:hover .steph-trust__icon {
    color: var(--accent-hover);
}

@media (min-width: 768px) {
    .steph-trust__icon {
        font-size: 3rem;
    }
}

/* ---------- Signature Experiences ---------- */
#experiences h2 {
    color: var(--charcoal);
}

.steph-exp__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--stone-grey);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.steph-exp__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.steph-exp__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.steph-exp__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.steph-exp__card:hover .steph-exp__img img {
    transform: scale(1.03);
}

.steph-exp__body {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.steph-exp__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.steph-exp__locations {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: #9a9a9a;
}

.steph-exp__locations i {
    font-size: 0.65rem;
    margin-right: 0.2em;
}

.steph-exp__cta {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose-gold);
    transition: color var(--transition-speed) ease;
}

.steph-exp__card:hover .steph-exp__cta {
    color: var(--accent-hover);
}

.steph-exp__cta i {
    font-size: 0.7rem;
    transition: transform var(--transition-speed) ease;
}

.steph-exp__card:hover .steph-exp__cta i {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .steph-exp__body {
        padding: 1.5rem 1.25rem;
    }

    .steph-exp__title {
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .steph-exp__img {
        aspect-ratio: 3 / 4;
    }

    .steph-exp__body {
        padding: 1.75rem 1.5rem;
    }

    .steph-exp__title {
        font-size: 1.25rem;
    }

    .steph-exp__cta {
        font-size: 0.85rem;
    }
}

/* ---------- Gift Experience Section ---------- */
#gift-experience h2 {
    color: var(--charcoal);
}

.steph-gift__occasions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.steph-gift__occasions li {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    background: var(--cream);
    border: 1px solid var(--stone-grey);
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    line-height: 1.4;
}

/* ---------- The Ritual Continues — Therapist Recommendations ---------- */
#spa-edit h2,
#spa-edit h3,
#spa-edit h6 {
    color: var(--charcoal);
}

.steph-ritual__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.steph-ritual__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.steph-ritual__brand {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 1rem;
}

.steph-ritual__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--stone-grey);
}

.steph-ritual__benefits li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--stone-grey);
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.steph-ritual__hero-img {
    overflow: hidden;
    border-radius: 0.75rem;
}

.steph-ritual__hero-img img {
    transition: transform 0.5s ease;
}

.steph-ritual__hero-img:hover img {
    transform: scale(1.02);
}

/* Supporting product cards */
.steph-ritual__supporting {
    transition: transform var(--transition-speed) ease;
}

.steph-ritual__supporting:hover {
    transform: translateY(-3px);
}

.steph-ritual__supporting h6 {
    color: var(--charcoal);
    line-height: 1.4;
}

.steph-ritual__supporting-img {
    overflow: hidden;
    border-radius: 0.75rem;
    background: var(--cream);
    aspect-ratio: 1 / 1;
}

.steph-ritual__supporting-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.steph-ritual__supporting:hover .steph-ritual__supporting-img img {
    transform: scale(1.03);
}

.steph-ritual__link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose-gold);
}

.steph-ritual__link i {
    font-size: 0.7rem;
    transition: transform var(--transition-speed) ease;
}

.steph-ritual__supporting:hover .steph-ritual__link i {
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .steph-ritual__name {
        font-size: 1.85rem;
    }
}

/* ==========================================================
   AI SPA CONCIERGE WIDGET
   ========================================================== */

/* ── FAB (Floating Action Button) ── */
.concierge-fab {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 1190;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #d6b6ab 0%, #8e7167 100%);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(142, 113, 103, 0.4);
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.concierge-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(142, 113, 103, 0.5);
}
.concierge-fab[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}
.concierge-fab-label {
    position: absolute;
    right: 64px;
    background: #fff;
    color: var(--charcoal);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.concierge-fab:hover .concierge-fab-label {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .concierge-fab {
        bottom: 72px;
    }
    .concierge-fab-label {
        display: none;
    }
}

/* ── Chat Panel ── */
.concierge-chat-panel {
    position: fixed;
    z-index: 1201;
    background: var(--cream, #f9f7f6);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.concierge-chat-panel[hidden] {
    display: none;
}

@media (max-width: 767px) {
    .concierge-chat-panel {
        left: 0;
        right: 0;
        bottom: 0;
        height: 88vh;
        max-height: 88vh;
        border-radius: 20px 20px 0 0;
    }
}
@media (min-width: 768px) {
    .concierge-chat-panel {
        right: 20px;
        bottom: 24px;
        width: 400px;
        height: 620px;
        max-height: calc(100vh - 48px);
        border-radius: 20px;
        overflow: hidden;
    }
}

/* ── Chat Header ── */
.concierge-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #d6b6ab 0%, #8e7167 100%);
    color: #fff;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .concierge-chat-header {
        border-radius: 20px 20px 0 0;
    }
}
.concierge-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.concierge-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.concierge-chat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
.concierge-chat-status {
    font-size: 0.72rem;
    opacity: 0.85;
}
.concierge-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}
.concierge-reset-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.65;
    transition: opacity 0.2s;
}
.concierge-reset-btn:hover {
    opacity: 1;
}
.concierge-chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.concierge-chat-close:hover {
    opacity: 1;
}

/* ── Messages Area ── */
.concierge-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

/* ── Message Bubbles ── */
.concierge-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    word-wrap: break-word;
}
.concierge-msg p {
    margin: 0 0 0.5em;
}
.concierge-msg p:last-child {
    margin-bottom: 0;
}
.concierge-msg a {
    color: var(--accent-hover, #b3827e);
    text-decoration: underline;
    font-weight: 600;
}
.concierge-msg strong {
    font-weight: 700;
}
.concierge-msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #d6b6ab 0%, #c4a49f 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.concierge-msg-user a {
    color: #fff;
}
.concierge-msg-assistant {
    align-self: flex-start;
    background: #fff;
    color: var(--charcoal, #2b2b2b);
    border: 1px solid rgba(214, 182, 171, 0.2);
    border-bottom-left-radius: 4px;
}

/* ── Typing Indicator ── */
.concierge-typing {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    align-self: flex-start;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(214, 182, 171, 0.2);
    border-bottom-left-radius: 4px;
}
.concierge-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose-gold, #c89f9c);
    animation: concierge-bounce 1.2s infinite ease-in-out;
}
.concierge-typing span:nth-child(2) { animation-delay: 0.15s; }
.concierge-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes concierge-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* ── Chips Tray (inside widget) ── */
.concierge-chips-tray {
    padding: 8px 16px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
}
.concierge-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid rgba(214, 182, 171, 0.5);
    border-radius: 50px;
    background: #fff;
    color: #555;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.concierge-chip-btn:hover {
    background: #d6b6ab;
    color: #fff;
    border-color: #d6b6ab;
}
.concierge-chip-btn i {
    font-size: 0.72rem;
}

/* ── Input Area ── */
.concierge-chat-input-area {
    padding: 10px 16px 12px;
    border-top: 1px solid rgba(214, 182, 171, 0.15);
    flex-shrink: 0;
    background: var(--cream, #f9f7f6);
}
.concierge-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--stone-grey, #dcd7d3);
    border-radius: 24px;
    padding: 6px 8px 6px 16px;
    transition: border-color 0.2s;
}
.concierge-input-wrapper:focus-within {
    border-color: var(--rose-gold, #c89f9c);
}
#concierge-input {
    flex: 1;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
    max-height: 80px;
    background: transparent;
    color: var(--charcoal, #2b2b2b);
}
#concierge-input::placeholder {
    color: #aaa;
}
.concierge-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #d6b6ab 0%, #8e7167 100%);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.concierge-send-btn:disabled {
    opacity: 0.35;
    cursor: default;
}
/* Voice input button */
.concierge-voice-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--stone-grey, #999);
    font-size: 0.95rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.concierge-voice-btn:hover {
    color: var(--rose-gold, #c89f9c);
}
.concierge-voice-btn.listening {
    background: linear-gradient(135deg, #d6b6ab 0%, #8e7167 100%);
    color: #fff;
    animation: concierge-pulse 1.5s ease-in-out infinite;
}
.concierge-voice-btn.processing {
    background: var(--stone-grey, #dcd7d3);
    color: #fff;
}
.concierge-voice-btn[hidden] { display: none; }
@keyframes concierge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 159, 156, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(200, 159, 156, 0); }
}
/* Voice status indicator */
.concierge-voice-status {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--rose-gold, #c89f9c);
    padding: 4px 0;
    display: none;
}
.concierge-voice-status.active { display: block; }
/* TTS Listen button on assistant messages */
.concierge-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 4px 12px;
    border: 1px solid var(--stone-grey, #dcd7d3);
    border-radius: 16px;
    background: transparent;
    color: var(--charcoal, #666);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.concierge-listen-btn:hover {
    color: var(--rose-gold, #c89f9c);
    border-color: var(--rose-gold, #c89f9c);
}
.concierge-listen-btn.playing {
    background: linear-gradient(135deg, #d6b6ab 0%, #8e7167 100%);
    color: #fff;
    border-color: transparent;
}
.concierge-listen-btn.paused {
    background: var(--cream, #f9f7f6);
    color: var(--rose-gold, #c89f9c);
    border-color: var(--rose-gold, #c89f9c);
}
.concierge-listen-btn.ended {
    background: transparent;
    color: var(--rose-gold, #c89f9c);
    border-color: var(--rose-gold, #c89f9c);
}
.concierge-listen-btn i { font-size: 0.8rem; }
/* Voice Concierge mode toggle */
.concierge-voicemode-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 4px;
}
.concierge-voicemode-btn:hover { opacity: 1; }
.concierge-voicemode-btn.active {
    opacity: 1;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
}
/* Voice mode visual state banner */
.concierge-voicemode-banner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--charcoal, #555);
    background: var(--cream, #f9f7f6);
    border-bottom: 1px solid var(--stone-grey, #e8e3e0);
}
.concierge-voicemode-banner.active { display: flex; }
.concierge-voicemode-banner .vm-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose-gold, #c89f9c);
    flex-shrink: 0;
}
.concierge-voicemode-banner.vm-listening .vm-dot { animation: concierge-pulse 1.2s ease-in-out infinite; }
.concierge-voicemode-banner.vm-thinking .vm-dot { animation: concierge-pulse 0.6s ease-in-out infinite; }
.concierge-voicemode-banner.vm-speaking .vm-dot { background: #8e7167; animation: concierge-pulse 1s ease-in-out infinite; }
.concierge-disclaimer {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    color: #999;
    margin: 6px 0 0;
}
.concierge-disclaimer a {
    color: var(--rose-gold, #c89f9c);
    text-decoration: underline;
}
.concierge-journey-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.6rem;
    color: #a09490;
    margin: 6px 0 0;
    padding: 4px 10px;
    background: rgba(200, 159, 156, 0.08);
    border-radius: 12px;
    line-height: 1.3;
}
.concierge-journey-note i {
    color: var(--rose-gold, #c89f9c);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.concierge-clear-memory-btn {
    background: none;
    border: none;
    color: var(--rose-gold, #c89f9c);
    font-size: 0.6rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.concierge-clear-memory-btn:hover {
    opacity: 1;
    color: var(--accent-hover, #b88885);
}

/* ── Human Handoff Overlay ── */
.concierge-handoff {
    position: absolute;
    inset: 0;
    background: var(--cream, #f9f7f6);
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.concierge-handoff[hidden] {
    display: none;
}
.concierge-handoff-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(214, 182, 171, 0.15);
    flex-shrink: 0;
}
.concierge-handoff-header h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
}
.concierge-handoff-back {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--charcoal, #2b2b2b);
    padding: 4px;
}
.concierge-handoff-body {
    padding: 16px 18px;
    flex: 1;
}
.concierge-handoff-body .form-control,
.concierge-handoff-body .form-select {
    border-radius: 12px;
    font-size: 0.88rem;
    border-color: var(--stone-grey, #dcd7d3);
}
.concierge-handoff-body .form-control:focus,
.concierge-handoff-body .form-select:focus {
    border-color: var(--rose-gold, #c89f9c);
    box-shadow: 0 0 0 0.2rem rgba(200, 159, 156, 0.2);
}
.concierge-handoff-body .btn-concierge {
    background: linear-gradient(135deg, #d6b6ab 0%, #8e7167 100%);
    border: none;
    color: #fff;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.concierge-handoff-body .btn-concierge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(214, 182, 171, 0.4);
}
.concierge-handoff-success {
    text-align: center;
    padding: 2rem 1rem;
}
.concierge-handoff-success i {
    font-size: 2.5rem;
    color: #6bab6b;
    margin-bottom: 1rem;
    display: block;
}

/* ── Backdrop (mobile) ── */
.concierge-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1200;
}
.concierge-backdrop[hidden] {
    display: none;
}
@media (min-width: 768px) {
    .concierge-backdrop {
        display: none !important;
    }
}

/* ── Mobile safe area ── */
@media (max-width: 767px) {
    .concierge-chat-input-area {
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}