/* == TABLE OF CONTENTS ==
   I.      GLOBAL VARIABLES AND BASE STYLES
   II.     HEADER & NAVIGATION STYLES
   III.    HERO CAROUSEL STYLES
   IV.     DYNAMIC CONTENT & MAIN SECTIONS
   V.      MODAL STYLES (REWRITTEN & FIXED)
   VI.     PAGE-SPECIFIC CONTENT BLOCKS
   VII.    MEDIA QUERIES (Mobile)
*/

/* ------------------------------------------- */
/* I. GLOBAL VARIABLES AND BASE STYLES         */
/* ------------------------------------------- */
:root {
    --navy: #0a192f; 
    --black: #111111; 
    --gold: #d4af37; 
    --gold-dark: #B78E46;
    --white: #ffffff; 
    --light-grey: #f8f9fa;
    --team-avatar-size: 78px;
    --team-avatar-size-mobile: 60px;
    --team-detail-photo-size: 140px;
    --team-detail-photo-size-mobile: 100px;
    --team-intro-max-width: 520px;
    --shared-widget-height: 200px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0;
    background-color: #f0f0f0;
    color: var(--black);
}
.site-wrapper {
    max-width: 1200px; 
    margin: 0 auto; 
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.container { padding: 0 15px; }
a { text-decoration: none; color: var(--navy); cursor: pointer; }
@keyframes fadeIn { from {opacity: 0} to {opacity: 1} }

/* ------------------------------------------- */
/* II. HEADER & NAVIGATION STYLES              */
/* ------------------------------------------- */
.top-header-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background-color: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.logo-info { display: flex; align-items: center; gap: 10px; }
.header-logo { width: 60px; height: 60px; object-fit: contain; border: 2px solid var(--gold); border-radius: 50%; }
.site-title { text-align: left; font-size: 1.2em; font-weight: 600; color: var(--white); margin: 0; }
.site-address { font-size: 0.9em; color: var(--white); margin: 0; text-align: center }
.header-actions { display: flex; align-items: center; gap: 20px; }
.site-nav-list { display: flex; gap: 20px; }
.nav-link { 
    color: var(--white);
    text-align: center;
    font-size: 1em; 
    font-weight: 500; 
    padding: 5px 0;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.phone-number-box {
    padding: 10px 15px;
    border: 1px solid var(--white);
    border-radius: 6px;
    color: var(--white);
    font-size: 1.1em;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s;
}
.phone-number-box:hover {
    background-color: var(--gold);
    color: var(--navy);
}
.book-now-header-btn {
    padding: 10px 10px;
    background: linear-gradient(145deg, var(--white) 10%, var(--gold) 60%, var(--gold-dark) 100%); 
    color: var(--navy); 
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
    transition: opacity 0.2s, transform 0.2s;
    border: 1px solid var(--gold-dark); 
}
.book-now-header-btn:hover {
    background: var(--gold-dark); 
    color: var(--navy);
    opacity: 1;
    transform: translateY(-1px);
}
.main-nav { 
    padding-top: 20px; 
    background-color: var(--navy); 
}
.category-button {
    background: linear-gradient(145deg, var(--white) 10%, var(--gold) 60%, var(--gold-dark) 100%); 
    color: var(--navy); 
    padding: 5px; 
    width: 100%; 
    margin: 0 auto; 
    display: block; 
    border: 2px solid var(--gold-dark);
    border-radius: 8px; 
    text-align: center; 
    font-size: 1.2em; 
    font-weight: 700; 
    cursor: pointer; 
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}
.category-button:hover,
.category-button.active {
    background: var(--gold-dark); 
    color: var(--navy); 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4); 
    opacity: 1;
}
.category-button::after { 
    content: '+'; 
    position: absolute; 
    right: 20px; 
    color: var(--navy); 
}
.category-button:hover::after,
.category-button.active::after { color: var(--navy); }
.category-button.active::after { content: '−'; }
.subcategory-panel { 
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; 
    background-color: var(--light-grey);
}
.subcategory-list { list-style: none; padding: 0; margin: 0; }
.subcategory-list li a { 
    display: block; padding: 15px 35px; color: var(--black);
    border-bottom: 1px solid #ddd;
}
.subcategory-group { padding: 10px 0; }
.subcategory-title {
    font-weight: bold; color: var(--black); padding: 10px 20px;
    font-size: 1.1em; background-color: #eee; margin: 0;
}
.subcategory-list.level-3 li a { padding-left: 50px; }

.category-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.category-title {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  border: none;
  background: none;
}
.category-collapse-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-collapse-btn:hover {
  background: var(--navy);
  color: var(--gold);
}
.category-section.collapsed .category-services-list {
  display: none;
}
.category-section.collapsed .category-collapse-btn::after {
  content: '+';
  font-size: 1.5em;
  color: var(--navy);
}
.category-collapse-btn::after {
  content: '−';
  font-size: 1.5em;
  color: var(--navy);
}

/* ------------------------------------------- */
/* III. HERO CAROUSEL STYLES                   */
/* ------------------------------------------- */
.hero-carousel-container { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; overflow: hidden; aspect-ratio: 1200 / 475; }
.hero-carousel-slider { position: relative; width: 100%; height: 100%; }
.hero-carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-main-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-promo-slide img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; transform-origin: center center; transform: scale(1.0); transition: transform 9s ease-out; }
.hero-main-banner { z-index: 1; opacity: 1; }
.hero-promo-slide { z-index: 2; opacity: 0; transition: opacity 1.5s ease-in-out; width: 35%; display: flex; align-items: center; justify-content: center; }
.hero-promo-slide::after { content:none; }
.hero-promo-slide img { -webkit-mask-image: linear-gradient(90deg, #000 89%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(90deg, #000 88%, rgba(0,0,0,0) 100%);}
.promo-image-wrapper { width: 100%; height: 100%; overflow: hidden; position: relative; }
.hero-promo-slide.hero-slide-active { opacity: 1; }
.hero-promo-slide.effect-zoom-in img { transform: scale(1.0); }
.hero-promo-slide.effect-zoom-in.hero-slide-active img { transform: scale(1.15); }
.hero-promo-slide.effect-zoom-out img { transform: scale(1.15); }
.hero-promo-slide.effect-zoom-out.hero-slide-active img { transform: scale(1.0); }
.hero-carousel-nav, .hero-carousel-dots { z-index: 5; }

/* ------------------------------------------- */
/* IV. DYNAMIC CONTENT & MAIN SECTIONS         */
/* ------------------------------------------- */
.dynamic-rich-text-block { padding: 20px 30px; font-size: 1.1em; line-height: 1.7; }
.dynamic-rich-text-block .ql-container.ql-snow { border: none; }
.dynamic-rich-text-block .ql-editor { padding: 0; font-size: inherit; }
.dynamic-rich-text-block .ql-editor h1, .dynamic-rich-text-block .ql-editor h2, .dynamic-rich-text-block .ql-editor h3 { color: var(--navy); }
.services-menu-wrapper { max-width: 1200px; margin: 0 auto; background-color: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.services-menu-container { max-height: 0; overflow: hidden; transition: max-height 0.7s ease-in-out; padding: 0 30px; background: #fff; border-top: 1px solid #eee; }
.services-menu-container.services-menu-visible { max-height: 20000px; padding-top: 20px; padding-bottom: 50px; }
.services-menu-container .page-title { font-size: 3em; font-weight: 300; text-align: center; color: var(--navy); margin: 40px 0; }
.services-menu-container .category-section { margin-bottom: 50px; }
.services-menu-container .category-title { font-size: 2.2em; font-weight: 400; color: var(--black); padding-bottom: 10px; margin-bottom: 30px; border-bottom: 3px solid var(--gold); }
.services-menu-container .service-item { display: flex; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 30px; }
.services-menu-container .service-item:last-child { border-bottom: none; }
.services-menu-container .service-image { width: 200px; height: 200px; object-fit: cover; border-radius: 8px; margin-right: 25px; flex-shrink: 0; }
.services-menu-container .service-details { flex-grow: 1; }
.services-menu-container .service-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.services-menu-container .service-name { font-size: 1.8em; font-weight: 600; color: var(--navy); margin: 0; }
.services-menu-container .service-price { font-size: 1.6em; font-weight: 600; color: var(--gold); flex-shrink: 0; margin-left: 20px; }
.services-menu-container .service-duration { font-size: 1.1em; font-style: italic; color: #555; margin-top: -5px; margin-bottom: 15px; }
.services-menu-container .service-description { font-size: 1em; line-height: 1.6; color: #333; margin-bottom: 15px; }
.services-menu-container .service-employees { font-size: 0.9em; font-style: italic; color: #555; }
.services-menu-container .service-footer { text-align: right; margin-top: 20px; }
.services-menu-container .book-now-btn { width: 150px; padding: 10px 15px; font-size: 1em; text-align: center; }
.services-menu-container, .store-container, .other-menu-container, .info-menu-container, .search-results-container { position: relative; }
.store-wrapper { max-width: 1200px; margin: 0 auto; background-color: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.store-container { max-height: 0; overflow: hidden; transition: max-height 0.7s ease-in-out; padding: 0 30px; background: var(--light-grey); }
.store-container.store-visible { max-height: 5000px; padding-top: 20px; padding-bottom: 50px; }
.store-page-title { font-size: 3em; font-weight: 300; text-align: center; color: var(--navy); margin: 40px 0 10px; }
.store-description { text-align: center; font-size: 1.2em; color: #555; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.product-item { background: var(--white); border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.2s; }
.product-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.product-image { width: 100%; height: 125px; object-fit: cover; }
.product-details { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.product-name { font-size: 1.5em; color: var(--navy); margin: 0 0 10px 0; }
.product-description { font-size: 0.95em; color: #333; line-height: 1.5; flex-grow: 1; margin-bottom: 15px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid #eee; }
.product-price { font-size: 1.4em; font-weight: 700; color: var(--gold); }
.add-to-cart-btn { padding: 8px 15px; background-color: var(--gold); color: var(--navy); border: none; border-radius: 4px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; }
.add-to-cart-btn:hover { background-color: var(--gold-dark); }
.product-carousel { position: relative; width: 100%; height: 300px; overflow: hidden; }
.product-carousel-img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease-in-out; position: absolute; top: 0; left: 0; }
.carousel-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(10, 25, 47, 0.7); color: var(--white); border: none; padding: 10px 12px; cursor: pointer; z-index: 5; font-size: 1.2em; opacity: 0.8; transition: background 0.2s, opacity 0.2s; }
.carousel-nav-btn:hover { background: rgba(10, 25, 47, 0.9); opacity: 1; }
.carousel-nav-btn.prev-btn { left: 10px; border-radius: 50%; }
.carousel-nav-btn.next-btn { right: 10px; border-radius: 50%; }
.search-result-head { display:flex; align-items:center; gap:12px; justify-content:space-between; }
.search-result-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto 1fr;
    column-gap: 10px;
    row-gap: 4px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    width: auto !important;
}

.search-thumb-wrap {
    grid-row: 1 / span 2;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}
.search-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }

.search-result-head { display:flex; align-items:flex-start; gap:8px; justify-content:flex-start; }
.search-result-body { grid-column: 2; min-width: 0; }
.search-result-desc { grid-column: 2; grid-row: 2; color:#333; margin-top: 2px; }

.search-result-action {
    grid-column: 3;
    grid-row: 1 / span 2;
    white-space: nowrap;
    padding: 6px 10px;
    font-size: 0.9em;
    min-width: 110px;
    width: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: flex-start;
}

/* ------------------------------------------- */
/* V. MODAL STYLES (REWRITTEN & FIXED)         */
/* ------------------------------------------- */

/* 1. Base Modal Overlay & Content */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.9); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    width: 95%;
    max-width: 650px;
    height: 85vh; 
    max-height: 800px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column; 
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gold);
}

/* 2. Global Close & Logo */
.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #f4f4f4;
    border: 1px solid #ccc;
    color: var(--navy);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.2s;
    padding-bottom: 4px;
}
.modal-close-btn:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--gold);
}
.modal-logo {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: #fff;
    z-index: 50;
}

/* 3. BOOKING WIZARD STRUCTURE */
#booking-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.wizard-viewport {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.modal-wizard-steps {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal-step {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* Fixed Header */
.modal-step h2 {
    flex: 0 0 auto;
    margin: 0;
    padding: 15px 15px 10px;
    padding-top: 70px; 
    text-align: center;
    font-size: 1.5rem;
    color: var(--navy);
    border-bottom: 1px solid #f0f0f0;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: #fff;
}
/* Scrollable Middle */
.step-content-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}
/* Fixed Footer */
.modal-footer, .modal-nav-buttons {
    flex: 0 0 auto;
    padding: 5px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

/* 4. Booking Content Components */
/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.category-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
    height: 90px;
}
.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.category-card.active {
    background: var(--navy);
    border-color: var(--navy);
}
.category-card.active span { color: #fff; }
.category-card img, .cat-icon-placeholder {
    width: 36px; 
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.category-card span {
    font-size: 0.8rem;
    text-align: center;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Service List */
.service-list-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-select-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
    min-height: 70px;
}
.service-select-card:hover { border-color: var(--gold); background: #fffbf0; }
.service-card-thumb {
    width: 60px; height: 60px;
    border-radius: 6px; object-fit: cover; flex-shrink: 0;
    background: #eee; border: 1px solid #f0f0f0;
}
.service-card-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.service-card-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.2; }
.service-card-meta { font-size: 0.85rem; color: #666; display: flex; align-items: center; gap: 6px; }

/* Selected Service Preview */
#service-details-display { animation: fadeIn 0.3s; text-align: center; }
#modal-image {
    width: 100%;
    max-height: 220px;
    height: auto !important;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.modal-details {
    display: flex; justify-content: center; gap: 20px;
    margin-bottom: 15px; padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
}
.modal-duration, .modal-price {
    font-weight: 600; color: var(--navy); font-size: 1rem;
    display: flex; align-items: center; gap: 6px;
}
#modal-description { font-size: 0.95rem; line-height: 1.5; color: #444; margin-bottom: 15px; text-align: left; }
#change-service-link { display: inline-block; margin-bottom: 10px; font-size: 0.9rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; }

/* Form & Buttons */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: var(--navy); }
select, input {
    width: 100%; padding: 12px; border: 1px solid #ccc;
    border-radius: 6px; font-size: 16px; background: #fff;
    box-sizing: border-box;
}
select:focus, input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1); }

.book-now-btn, .modal-back-btn {
    padding: 12px 0; width: 100%; text-align: center; border-radius: 6px;
    font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: transform 0.1s;
}
.book-now-btn { background: var(--gold); color: var(--navy); text-decoration: none; display: inline-block; box-sizing: border-box; }
.book-now-btn:disabled { background: #e0e0e0; color: #999; cursor: not-allowed; }
.modal-back-btn { background: #f0f0f0; color: #333; }
.book-now-btn:active, .modal-back-btn:active { transform: scale(0.98); }

/* Calendar & Slots */
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.calendar-nav-btn { background: none; border: none; color: var(--navy); font-size: 1.5em; cursor: pointer; }
#calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin: 8px 0 14px; width: 100%; }
#calendar div { padding: 10px 5px; text-align: center; border-radius: 6px; cursor: pointer; border: 1px solid #eee; }
#calendar div.header { background: transparent; font-weight: 600; cursor: default; border: none; }
#calendar div.selected { background: var(--navy); color: var(--white); font-weight: bold; }
#calendar div.disabled { color: #ccc; pointer-events: none; }
#timeSlots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; min-height: 40px; }
.time-slot { padding: 8px 14px; background: #f2f2f2; border: 1px solid #ddd; border-radius: 6px; cursor: pointer; }
.time-slot.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.stripe-element { border: 1px solid #ddd; padding: 12px; border-radius: 6px; margin-bottom: 15px; background: white; }
#card-errors { color: #b00020; margin-top: 8px; min-height: 20px; font-size: 14px; font-weight: 600; }

/* 5. Preserved Helper Classes (Chat, Close Buttons, Other Modals) */
.chat-fab {
    position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold); color: var(--navy); border: 2px solid var(--gold-dark);
    display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.35); z-index: 1600;
    transition: transform .15s ease, background .15s ease;
}
.chat-fab:hover { transform: translateY(-2px); background: var(--gold-dark); }

.inquiry-modal .modal-content { max-width: 520px; padding: 25px; }
.inquiry-modal textarea { width: 100%; min-height: 120px; resize: vertical; box-sizing: border-box; }

.container-close-btn {
    position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid #fff; background: #4f5963; color: #ffd84d; font-size: 22px; font-weight: 800;
    display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 3px 12px rgba(0,0,0,.25); z-index: 10;
}
.services-menu-container.services-menu-visible .container-close-btn,
.services-menu-container.is-visible .container-close-btn,
.store-container.store-visible .container-close-btn,
.store-container.is-visible .container-close-btn,
.other-menu-container.other-menu-visible .container-close-btn,
.other-menu-container.is-visible .container-close-btn,
.info-menu-container.info-menu-visible .container-close-btn,
.info-menu-container.is-visible .container-close-btn,
.search-results-container.is-visible .container-close-btn { display: flex; }

#contactModal .modal-content, #aboutModal .modal-content { max-width: 850px; padding: 30px; overflow-y: auto; max-height: 90vh; }

/* --- 3-DAY HORIZONTAL GRID STYLES --- */
.modern-slots-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;                     
    overflow-x: auto; 
    padding-bottom: 10px;
    justify-content: flex-start; 
    position: relative;
    min-height: 250px;
    transition: opacity 0.3s ease;   
}

/* Slide Animations */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-next {
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-prev {
    animation: slideInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Fade out effect when loading */
.slots-loading {
    opacity: 0.3;
    pointer-events: none;
}

.day-column {
    flex: 0 0 calc(33.33% - 10px); 
    min-width: 120px;               
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slot-column-header {
    text-align: center;
    background: var(--navy);
    color: var(--gold);
    padding: 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 5px;
    position: sticky;
    top: 0;
}

.modern-slot-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.modern-slot-card:hover {
    border-color: var(--gold);
    background: #fffdf5;
}

.modern-slot-card.selected {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold-dark);
}

.load-more-container {
    margin-top: 20px;
    text-align: center;
}

.btn-next-days {
    padding: 10px 20px;
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-next-days:hover {
    background: var(--gold);
    color: var(--navy);
}

.cart-icon-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 6px 10px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95em;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.cart-icon-btn i { font-size: 1em; }
.cart-icon-btn:hover { background: var(--gold-dark); }

#cart-toggle { padding: 10px 16px; }
#cart-panel .cart-remove { border:none; background:none; color:#c00; font-weight:700; cursor:pointer; }
#cart-panel input.cart-qty { width:56px; }

.cart-icon-btn,
#app-bar-cart-btn { position: relative; }
.cart-count-badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 12px;
  background: #d9534f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.checkout-modal { max-width:80vw; max-height: 90vh; overflow: auto; padding: 20px 22px 24px; }
.checkout-subtext { margin: 4px 0 14px; color:#555; }
.checkout-columns { display:grid; grid-template-columns: 1fr 1fr; gap:18px;  max-height: 70vh; overflow-y: auto; }
.checkout-form .form-group { margin-bottom:14px; }
.checkout-summary-panel { background:#f9f9f9; border:1px solid #eee; border-radius:10px; padding:14px; }
.checkout-summary-panel h3 { margin:0 0 10px; color:var(--navy); }
.checkout-list { max-height: 260px; overflow:auto; display:flex; flex-direction:column; gap:10px; }
.checkout-item { display:flex; gap:10px; align-items:center; padding:8px; background:#fff; border:1px solid #eee; border-radius:8px; }
.checkout-item img { width:52px; height:52px; object-fit:cover; border-radius:6px; border:1px solid #eee; }
.checkout-item .meta { flex:1; }
.checkout-item .name { font-weight:700; color:#111; }
.checkout-item .qty { color:#666; font-size:0.9em; }
.checkout-item .price { font-weight:700; color:var(--gold); }
.checkout-totals { margin-top:12px; border-top:1px solid #e5e5e5; padding-top:10px; display:flex; flex-direction:column; gap:6px; }
.checkout-totals .row { display:flex; justify-content:space-between; font-weight:600; color:#222; }
.checkout-totals .total { font-size:1.05em; color:var(--navy); }
.checkout-error { color:#b00020; min-height:18px; font-size:0.9em; }

.footer-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  font-size: 0.7em;
}
.footer-bar a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 6px;
}
.footer-bar a:hover { text-decoration: underline; }
.footer-bar .sep { color: #eee; font-size: 0.7em; }

/* ------------------------------------------- */
/* VI. PAGE-SPECIFIC CONTENT BLOCKS            */
/* ------------------------------------------- */
.team-container { display: flex; gap: 25px; justify-content: space-around; flex-wrap: wrap; margin-top: 10px; }
.team-member { background: var(--light-grey, #f8f9fa); border: 1px solid rgba(0,0,0,0.04); border-radius: 14px; padding: 25px; flex: 1; min-width: 300px; max-width: 500px; box-shadow: 0 8px 26px rgba(0,0,0,0.05); }
.team-member-info { text-align: center; }
.team-member img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 4px solid var(--gold, #d4af37); flex-shrink: 0; }

/* About Modal Scoped */
#aboutModal { --about-avatar: 64px; --about-avatar-m: 56px; --about-photo: 140px; --about-photo-m: 90px; --about-intro-w: 520px; --about-intro-w-m: 200px; }
#aboutModal .modal-content { max-width: 1100px; width: min(1100px, 92vw); padding: 28px 32px; box-sizing: border-box; }
#aboutModal .section-title { text-align: left; margin: 6px 0 12px; padding-right: 48px; color: var(--navy); font-weight: 700; font-size: 1.9rem; }
#aboutModal .team-help { background: linear-gradient(90deg, var(--navy), #142b4a); color: var(--gold); font-size: .72rem; font-weight: 600; padding: 8px 14px; border-radius: 40px; display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; box-shadow: 0 4px 14px rgba(0,0,0,.25); }   

.virtual-tour-slideshow-container { position: relative; width: 100%; height: calc(100vh - 100px); overflow: hidden; margin: 20px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.1); background: #000; }
#virtualTourModal .modal-content { display: flex; flex-direction: column; height: 85vh; max-height: 85vh; padding: 0 !important; overflow: hidden; width: 95vw; max-width: 900px; }
#virtualTourModal .modal-title { flex-shrink: 0; padding: 15px 0 10px; margin: 0; font-size: 1.8em; background: #fff; z-index: 10; }
#virtualTourModal .slideshow-controls { flex-shrink: 0; padding: 10px 0; background: #fff; z-index: 10; }
.virtual-tour-slideshow-container { flex-grow: 1; height: auto !important; width: 100%; margin: 0; background: #000; overflow: hidden; }
.slideshow-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
#virtualTourModal .modal-close-btn { z-index: 20; top: 10px; right: 10px; }

.slideshow-track { width: 100%; height: 100%; position: relative; }
.slideshow-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; justify-content: center; background: #000; }
.slideshow-slide.active { opacity: 1; }
.slideshow-slide img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; background: transparent; }
.slideshow-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(10, 25, 47, 0.7); color: var(--gold); border: none; padding: 15px 18px; cursor: pointer; z-index: 5; font-size: 1.5em; border-radius: 50%; transition: background 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.slideshow-nav-btn:hover { background: var(--navy); }
.slideshow-nav-btn.prev { left: 15px; }
.slideshow-nav-btn.next { right: 15px; }
.slideshow-controls { text-align: center; padding: 10px 0 20px; }

.mobile-app-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--navy); border-top: 1px solid var(--gold-dark); z-index: 1500; box-shadow: 0 -2px 10px rgba(0,0,0,0.4); }
.mobile-app-bar-nav { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 5px 4px; gap: 0; }
.app-bar-btn { flex: 1 1 0; min-width: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: none; border: none; color: var(--gold); font-size: 0.75em; font-weight: 500; padding: 6px 0; cursor: pointer; }
.app-bar-btn i { font-size: 1.5em; margin-bottom: 4px; }

.other-menu-wrapper, .info-menu-wrapper { max-width: 1200px; margin: 0 auto; background-color: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.other-menu-container, .info-menu-container { max-height: 0; overflow: hidden; transition: max-height 0.7s ease-in-out; padding: 0 30px; background: var(--light-grey); position: relative; }
.other-menu-container.other-menu-visible, .info-menu-container.info-menu-visible { max-height: 5000px; padding-top: 20px; padding-bottom: 50px; }
.other-menu-content, .info-menu-content { padding-top: 20px; display: flex; flex-direction: column; gap: 15px; }
.other-item-link { display: flex; align-items: center; background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); font-size: 1.3em; color: var(--navy); font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }
.other-item-link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.other-item-link i { color: var(--gold); margin-right: 15px; font-size: 1.2em; }

.promotions-container { display: flex; justify-content: center; align-items: center; margin: 20px auto; max-width: 1200px; width: 100%; }
.promotions-strip { padding: 10px 15px; }
.promotions-list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; margin: 0 auto; }
.promotions-item { flex: 0 1 auto; border: none !important; box-shadow: none !important; border-radius: 0; overflow: visible; background: transparent; position: relative; }
.promotions-item img { display: block; width: 100%; height: auto; object-fit: contain; }
.promotions-strip-mobile { display: none; }
.promotions-strip-desktop { display: block; position: relative; z-index: 1; }
.promotions-header { display: block; font-weight: 700; font-size: 2.5em; font-family: 'Brush Script MT', cursive; color: var(--gold); margin: 6px 0 10px; text-align: center; }
.promotions-item[hidden] { display: none !important; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact-details-container .contact-info-block { margin-bottom: 16px; }
.contact-subtitle { margin: 0 0 6px; }
.contact-social-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.social-icon-link { width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); color: var(--gold); border: 2px solid var(--gold); font-size: 26px; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease; }
.social-icon-link:hover { transform: translateY(-2px) scale(1.05); background: var(--gold); color: var(--navy); box-shadow: 0 6px 16px rgba(0,0,0,.15); }

.reviews-widget-desktop { display: none; }
.reviews-widget-heading { margin-bottom: 8px; }
.reviews-viewport { position: relative; height: var(--shared-widget-height) !important; max-height: var(--shared-widget-height) !important; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.review-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; display: flex; flex-direction: column; }
.review-slide.active { opacity: 1; }
.review-head { display:flex; justify-content:space-between; align-items:center; gap:8px; }
.review-author { color: var(--navy); font-weight: 700; }
.review-stars { color: var(--gold); letter-spacing: 1px; }
.review-text { margin-top: 8px; color:#333; font-size:.95em; line-height:1.5; display:-webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow:hidden; }
.reviews-controls { display:flex; justify-content:center; gap:12px; margin-top: 8px; }
.reviews-nav-btn { background: rgba(10,25,47,0.08); color: var(--navy); border: 1px solid rgba(10,25,47,0.15); padding: 6px 12px; border-radius: 16px; cursor: pointer; }
.reviews-nav-btn:hover { background: rgba(10,25,47,0.15); }
.reviews-inline-desktop { display: none; margin-top: 8px; width: 100%; z-index: 10;}
#main-reviews-button { position: relative; z-index: 40; }
#desktop-reviews-inline { position: absolute; top:100%; left:0; z-index: 10; }

.bio-list { margin: 0 0 0 18px; padding: 0; list-style: disc; }
.bio-list li { position: relative; padding-left: 5px; margin-bottom: 8px; color: #222; font-size: 1em; line-height: 1.2; word-break: break-word; }
.bio-list li::before { position: absolute; left: 0; top: 0; color: var(--navy); font-weight: bold; font-size: 1.2em; }

/* ------------------------------------------- */
/* VII. MEDIA QUERIES (Mobile)                 */
/* ------------------------------------------- */
@media (min-width: 768px) {
  .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }
  .mobile-header, .mobile-app-bar, .mobile-menu-modal { display: none !important; }
  .top-header-bar { display: flex; }
  .main-nav { padding-top: 0; margin-bottom: 0 !important; padding-bottom: 0 !important; border-bottom: 0 !important; }
  .main-nav .container { margin-bottom: 0 !important; padding-bottom: 0 !important; }
  .main-nav .service-grid { margin-bottom: 0 !important; padding-bottom: 0 !important; }
  .service-grid { row-gap: 0 !important; column-gap: 24px !important; display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; padding: 15px 0; width: 100%; flex-wrap: nowrap; }
  .service-grid > .category-item:last-child { position: relative; }
  .service-grid > .category-item:last-child .reviews-inline-desktop { display: block; position: absolute; top: calc(100% + 8px); left: 0; width: 100%; z-index: 3; }
  .category-item { flex-grow: 1; flex-shrink: 1; min-width: 0; position: relative; }
  .category-button::after { content: ''; } 
  .category-item:hover .subcategory-panel { display: block; }
  .subcategory-list li a:hover { background-color: var(--gold); color: var(--white); padding-left: 35px; }
  .category-item:nth-child(2) .subcategory-panel { display: none !important; }
  .category-item.reviews-only .subcategory-panel, .category-item.reviews-only:hover .subcategory-panel { display: none !important; }
  .subcategory-panel { max-height: none; overflow: visible; display: none; position: absolute; top: 100%; left: 0; right: 0; width: auto; min-width: 100%; z-index: 100; box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
  .promotions-item img { max-height:200px; }
  .services-menu-container .service-meta-row .service-price, .services-menu-container .service-meta-row .service-duration { display: none !important; }
  .service-employees-duplicate { display: block !important; font-size: 1em; font-style: italic; color: #555; margin-bottom: 10px; margin-top: 0; font-weight: 600; }
  .services-menu-wrapper { max-width: 1200px; margin: 0 auto; background-color: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
  .services-menu-container { padding: 0 30px; background: #fff; border-top: 1px solid #eee; }
  .services-menu-container .page-title { font-size: 3em; font-weight: 300; text-align: center; color: var(--navy); margin: 40px 0; }
  .services-menu-container .category-section { margin-bottom: 50px; }
  .services-menu-container .category-title { font-size: 2.2em; font-weight: 400; color: var(--black); padding-bottom: 10px; margin-bottom: 30px; border-bottom: 3px solid var(--gold); }
  .services-menu-container .service-item { position: relative; display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 40px; background: #fff; min-height: 240px; }
  .services-menu-container .service-header-row { display: flex; flex-direction: row; align-items: flex-start; gap: 0; margin-bottom: 0; }
  .services-menu-container .service-image { width: 200px; height: 200px; object-fit: cover; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); margin-right: 0; flex-shrink: 0; }
  .services-menu-container .service-name-meta { display: flex; flex-direction: column; align-items: flex-start; min-width: 300px; max-width: 375px; margin-left: 20px; }
  .services-menu-container .service-name { max-width: 250px; font-size: 1.5em; font-weight: 700; color: var(--navy); margin: 0 0 8px 0; line-height: 1.1; word-break: break-word; }
  .services-menu-container .service-employees { display: none; }
  .services-menu-container .service-description { flex: 1; font-size: 1.08em; color: #222; margin-bottom: 18px; margin-top: 0; line-height: 1.6; max-width: 600px; margin-right: 220px; }
  .services-menu-container .service-meta-row { display: flex; flex-direction: row; gap: 18px; margin-bottom: 0px; margin-top: 0; }
  .services-menu-container .service-duration { font-size: 1.1em; font-style: italic; color: #555; margin-bottom: 8px; margin-top: 0; text-align: left; display: block; }
  .services-menu-container .service-footer { position: absolute; right: 20px; bottom: 20px; display: flex; flex-direction: column; align-items: flex-end; min-width: 220px; margin-top: 0; z-index: 2; }
  .services-menu-container .service-price-duplicate { font-size: 1.5em; color: var(--gold); font-weight: 700; margin-bottom: 8px; text-align: right; display: block; order: -2; }
  .services-menu-container .service-duration-duplicate { font-size: 1.1em; font-style: italic; color: #555; margin-bottom: 8px; text-align: right; display: block; order: -1; }
  .services-menu-container .book-now-btn { width: 180px; padding: 10px 0; font-size: 1.0em; font-weight: bold; background: var(--gold); color: var(--navy); border-radius: 8px; border: none; box-shadow: 0 4px 8px rgba(0,0,0,0.08); transition: background 0.2s, color 0.2s, transform 0.2s; margin-top: 10px; }
  .services-menu-container .book-now-btn:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }
  .service-meta-right { position: absolute; top: 20px; right: 20px; display: flex; flex-direction: column; align-items: flex-end; z-index: 2; width: 200px; background: #fff; padding-left: 10px; }
  .contact-grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
  #aboutModal .team-layout { display: grid; grid-template-columns: 0.42fr 1fr; grid-template-areas: "list detail"; gap: 22px; align-items: start; }
  #aboutModal .team-list  { grid-area: list; }
  #aboutModal .team-detail{ grid-area: detail; }
  #aboutModal .team-detail { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 16px; box-sizing: border-box; }
  #aboutModal .team-detail .team-detail-photo { width: var(--about-photo); height: var(--about-photo); border-radius: 50%; object-fit: cover; border: 4px solid var(--gold); flex-shrink: 0; }
  #aboutModal .team-detail .team-intro-img { width: 100%; max-width: var(--about-intro-w); height: auto; border-radius: 12px; object-fit: cover; border: 4px solid var(--gold); box-shadow: 0 6px 18px rgba(0,0,0,.15); display: block; margin: 0 auto; }
  #aboutModal .team-detail img[alt="Our Team"] { max-width: var(--about-intro-w) !important; width: 100% !important; height: auto !important; border-radius: 12px; border: 4px solid var(--gold); box-shadow: 0 6px 18px rgba(0,0,0,.15); display: block; margin: 0 auto; }
  #aboutModal .team-list { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
  #aboutModal .team-list .team-member { position: relative; background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 10px 12px; margin: 0; cursor: pointer; transition: box-shadow .2s, transform .2s, border-color .2s; box-shadow: none; outline: none; }
  #aboutModal .team-list .team-member:hover { box-shadow: 0 6px 18px rgba(0,0,0,.10); transform: translateY(-2px); }
  #aboutModal .team-list .team-member.selected { border-color: var(--gold); box-shadow: 0 8px 22px rgba(212,175,55,.25); }
  #aboutModal .team-member-header { display: flex !important; flex-direction: row !important; align-items: center; gap: 12px; margin: 0; }
  #aboutModal .team-list .team-member img { width: var(--about-avatar); height: var(--about-avatar); border-radius: 50%; object-fit: cover; border: 4px solid var(--gold); flex-shrink: 0; transition: box-shadow .25s, transform .25s; }
  #aboutModal .team-list .team-member:hover img, #aboutModal .team-list .team-member:focus img, #aboutModal .team-list .team-member.selected img { box-shadow: 0 0 0 3px var(--gold), 0 6px 16px rgba(0,0,0,.18); transform: scale(1.02); }
  #aboutModal .team-list .team-member .team-member-info { text-align: left; }
  #aboutModal .team-list .team-member .team-member-info h3 { margin: 0; font-size: 1.06rem; line-height: 1.2; color: var(--navy); font-weight: 700; }
  #aboutModal .team-list .team-member .team-member-info h4 { margin: 2px 0 0; font-size: .95rem; color: #555; font-weight: 600; }
  #aboutModal .team-list .team-member .specialty { margin-top: 4px; font-size: .9rem; color: var(--gold); font-weight: 700; }
  #aboutModal .team-list .team-member hr, #aboutModal .team-list .team-member h5, #aboutModal .team-list .team-member .bio { display: none !important; }
  #aboutModal .team-list .click-hint { position: absolute; top: 8px; right: 10px; background: var(--navy); color: var(--gold); font-size: .6em; font-weight: 700; padding: 4px 9px; border-radius: 30px; letter-spacing: .3px; opacity: 0; transform: translateY(-4px); transition: .2s; pointer-events: none; }
  #aboutModal .team-list .team-member:hover .click-hint, #aboutModal .team-list .team-member:focus .click-hint { opacity: 1; transform: translateY(0); }
  #aboutModal .team-list .team-member:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
  .promotions-strip, .promotions-strip-desktop { width: 100%; padding-top: 0px; padding-bottom: 0px; padding-left: 0; padding-right: 0; background: transparent !important; box-sizing: border-box; }
  #promos-desktop.container, #promos-desktop > .container, .promotions-strip-desktop.container, .promotions-strip-desktop > .container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 15px; padding-bottom: 10px; background: var(--navy) !important; box-sizing: border-box; padding-top: 0 !important; display: flow-root; }
  .main-nav + .promotions-strip, .main-nav + .promotions-strip-desktop, .main-nav + #promos-desktop, .main-nav + .promotions-bar { margin-top: 0 !important; }
  .promotions-strip, .promotions-strip-desktop { padding-top: 0 !important; }
  #promos-desktop.container, #promos-desktop > .container, .promotions-strip-desktop.container, .promotions-strip-desktop > .container { padding-top: 0 !important; }
  .promotions-strip-desktop.container .promotions-header, .promotions-strip-desktop > .container .promotions-header { margin-top: 10px !important; }
  .reviews-widget-heading { margin-bottom: 8px; }
  .reviews-viewport { height: calc(var(--promo-h, 200px) * 0.875); max-height: calc(var(--promo-h, 200px) * 0.875); background: #fff; }
  .review-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; display: flex; flex-direction: column; }
  .review-slide.active { opacity: 1; }
  .review-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
  .review-author { color: var(--navy); font-weight: 700; }
  .review-stars { color: var(--gold); letter-spacing: 1px; }
  .review-text { margin-top: 8px; color: #333; font-size: .95em; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
  .reviews-controls { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
  .reviews-nav-btn { background: transparent; color: var(--gold); border: 1px solid rgba(10,25,47,0.15); padding: 6px 12px; border-radius: 16px; cursor: pointer; }
  .reviews-nav-btn:hover { background: rgba(10,25,47,0.15); }
  #desktop-reviews-inline .reviews-controls { gap: 16px; }
  #desktop-reviews-inline .reviews-nav-btn { width: 36px; height: 36px; padding: 0; font-size: 30px; line-height: 1; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--gold); color: var(--gold); background: rgba(10,25,47,0.12); }
  #desktop-reviews-inline .reviews-nav-btn:hover { background: rgba(10,25,47,0.22); transform: translateY(-1px); }
}
#promos-desktop > .container {
  padding-right: 15px !important;
  background: var(--navy) !important;
  min-height: 290px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0px;
}

#promotionModal .modal-content {
  width: fit-content !important; 
  max-width: 95vw !important;
  margin: 10px auto !important;
  padding: 20px !important;
}

#promotionModal #promotion-modal-img {
  height: auto !important;
  max-height: 65vh !important; 
  width: auto !important;      
  max-width: 100% !important;  
  display: block;
  margin: 0 auto;
  object-fit: contain !important; 
}

/* MOBILE QUERY */
@media (max-width: 768px) {
  body { background-color: var(--navy) !important; padding-bottom: 70px; }
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .site-wrapper { background-color: transparent !important; box-shadow: none !important; }
  .top-header-bar { display: none; }
  .promotions-strip-desktop { display: none !important; }
  .mobile-header { display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1001; box-shadow: 0 2px 8px rgba(0,0,0,0.4); padding: 0 10px; height: 60px; }
  .mobile-header-logo { display: block; position: static; transform: none; height: 45px; width: 45px; object-fit: contain; border: 2px solid var(--gold); border-radius: 50%; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-left: 5px; }
  .mobile-header-logo:active { transform: scale(0.95); box-shadow: 0 0 5px var(--gold); }
  .mobile-header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .mobile-slide-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; padding: 16px 14px 18px; background: linear-gradient(180deg, rgba(10,25,47,0.97) 0%, rgba(10,25,47,0.94) 100%); border-bottom: 1px solid rgba(212,175,55,0.35); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; box-shadow: 0 14px 28px rgba(0,0,0,0.45); z-index: 1002; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  body.nav-open .mobile-slide-nav { display: block; transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav-list-mobile { list-style: none; margin: 0; padding: 4px; }
  .site-nav-list-mobile li { margin: 8px 0; }
  .site-nav-list-mobile a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.35); color: var(--gold); font-weight: 600; letter-spacing: 0.2px; text-decoration: none; transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease; }
  .site-nav-list-mobile a::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.9; }
  .site-nav-list-mobile a:hover { background: rgba(212,175,55,0.15); color: #ffffff; border-color: var(--gold); transform: translateY(-1px); }
  .site-nav-list-mobile a:active { transform: translateY(0); }
  .mobile-action-btn { background: none; border: none; color: var(--gold); font-size: 1.5em; cursor: pointer; padding: 5px; }
  .mobile-book-now-btn { position: static; transform: none; padding: 8px 10px; font-size: 0.85em; white-space: nowrap; }
  .main-nav { display: none; }
  .mobile-app-bar { display: flex !important; justify-content: space-around; position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; }
  .mobile-app-bar-hidden { display: none !important; }
  .hero-carousel-container { aspect-ratio: auto; margin-top: 10px; }
  .hero-carousel-slider { height: auto; }
  .hero-carousel-slide { position: static; opacity: 1 !important; height: auto; width: 100%; }
  .hero-carousel-slide.hero-promo-slide { display: none; }
  .hero-carousel-nav, .hero-carousel-dots { display: none !important; }
  .hero-main-banner img { aspect-ratio: 1200 / 475; }
  .hero-mobile-slideshow { position: absolute; top: 0; bottom: 0; left: 0; width: 33.333%; height: 100%; z-index: 3; isplay: block; background: transparent; order-radius: 0; box-shadow: none; overflow: hidden; }
  .hero-mobile-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
  .hero-mobile-slide.active { opacity: 1; }
  .hero-mobile-slideshow img { width: 100%; height: 98%; object-fit: cover; }
  .hero-mobile-dots { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
  .hero-mobile-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .3s; }
  .hero-mobile-dot.active { background: var(--gold); }
  .promotions-strip-mobile { display: block; }
  .promotions-list { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px; flex-wrap: nowrap; }
  .promotions-header { display: block; text-align: center; margin-bottom: 10px; }
  .promotions-item { display: none !important; }
  .promotions-item.active { display: block !important; }
  .promo-arrow { pointer-events: auto; background: var(--gold); color: var(--navy); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 2em; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: background 0.2s, color 0.2s; display: flex !important; align-items: center; justify-content: center; }
  .promo-arrow:disabled { opacity: 0.5; cursor: not-allowed; }
  .promo-arrow:hover { background: var(--navy); color: var(--gold); }
  .promotions-item.active img { width: 80vw; max-width: 220px; min-width: 0; height: auto; max-height: calc(100vh - 200px - 160px - 40px); object-fit: contain; flex-shrink: 1; margin: 0 4px; display: block; }
  #promotionModal .modal-content { background: #fff !important; max-width: 90vw; max-height: 95vh; padding: 10px 8px 16px; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
  #promotion-modal-img { max-width: 90vw; max-height: 80vh; width: auto; height: auto; object-fit: contain; margin-bottom: 10px; border-radius: 6px; }
  #promotion-code-wrap { margin: 8px 0 6px; font-size: 1.1em; text-align: center; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; background: none !important; width: 100%; }
  #promotion-code-wrap strong { color: var(--gold); }
  #promotion-book-wrap { margin-top: 4px; text-align: center; background: none !important; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }
  #promotion-book-btn, #copy-promo-btn { padding: 8px 18px; font-size: 1em; border-radius: 5px; margin: 0 4px; }
  .services-menu-wrapper, .store-wrapper, .other-menu-wrapper, .info-menu-wrapper { background: transparent !important; box-shadow: none !important; position: relative; z-index: 100; background-color: var(--white);}
  .services-menu-container, .store-container, .other-menu-container, .info-menu-container { background: transparent !important; border-top: none !important; position: relative; max-height: 0 !important; overflow: hidden !important; visibility: hidden; padding: 0 30px 0; margin: 0 !important; }
  .services-menu-container.is-visible { background: #fff !important; }
  .store-container.is-visible { background: var(--light-grey) !important; }
  .other-menu-container.is-visible, .info-menu-container.is-visible { background: var(--light-grey) !important; }
  .container-close-btn { top: 10px; right: 10px; }
  .services-menu-container.is-visible, .store-container.is-visible, .other-menu-container.is-visible, .info-menu-container.is-visible { max-height: 10000px !important; visibility: visible; padding: 0 30px 50px !important; margin: 0 !important; }
  .services-menu-container.is-visible .page-title, .store-container.is-visible .store-page-title, .other-menu-container.is-visible .page-title, .info-menu-container.is-visible .page-title { margin: 10px 0 24px !important; }
  .service-price-duplicate, .service-duration-duplicate, .service-employees-duplicate { display: none !important; }
  .services-menu-container .category-title { font-size: 1.4em !important; }
  .services-menu-container .service-item { display: flex; flex-direction: column; align-items: stretch; padding-top: 8px !important; padding-bottom: 18px !important; margin-bottom: 10px !important; border-bottom: 1px solid #eee; background: #fff; }
  .services-menu-container .service-header-row { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; margin-bottom: 6px; }
  .services-menu-container .service-image { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; flex-shrink: 0; margin: 0; }
  .services-menu-container .service-name-meta { display: flex; flex-direction: column; justify-content: flex-start; flex: 1; min-width: 0; }
  .services-menu-container .service-name { font-size: 1.08em; font-weight: 700; color: var(--navy); margin: 0 0 2px 0; line-height: 1.2; word-break: break-word; }
  .services-menu-container .service-meta-row { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 0 !important; margin-bottom: 2px !important; margin-top: 0; }
  .services-menu-container .service-duration-wrap { flex: 1 1 auto; min-width: 0; }
  .services-menu-container .service-price-wrap { flex: 0 0 auto; text-align: right; }
  .services-menu-container .service-duration { white-space: nowrap; display: inline-block !important; margin-right: 8px; font-size: 0.98em; color: #555; margin: 0; font-style: italic; }
  .services-menu-container .service-price { font-size: 1.5em; color: var(--gold); font-weight: 700; margin: 0; }
  .services-menu-container .service-description { font-size: 0.98em; color: #333; margin-bottom: 10px; margin-top: 2px; }
  .services-menu-container .service-employees { display: block !important; font-size: 0.92em; font-style: italic; color: #555; margin-bottom: 4px; margin-top: 0 !important; }
  .services-menu-container .service-footer { text-align: center; margin-top: 10px; }
  .services-menu-container .book-now-btn { width: 70%; min-width: 140px; max-width: 220px; margin: 0 auto; display: block; padding: 5px 0; font-size: 1.08em; border-radius: 6px; }
  .service-description-toggle { margin-top: 2px !important; margin: 8px 0 0 0; text-align: left; }
  .desc-toggle-btn { background: none; border: none; color: var(--navy); font-size: 1em; font-weight: 600; display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 0; }
  .desc-toggle-arrow { font-size: 1.2em; transition: transform 0.2s; }
  .desc-toggle-btn[aria-expanded="true"] .desc-toggle-arrow { transform: rotate(180deg); }
  .desc-toggle-hint { font-size: 1em; color: var(--gold); font-weight: 500; }
  .service-description { margin-top: 8px; font-size: 0.98em; color: #333; display: none; animation: fadeIn 0.3s; }
  .services-menu-container .category-services-list { margin-top: 0 !important; }
  .service-meta-right { display: none !important; }
  .team-member-header { flex-direction: column; }
  .mobile-menu-modal { display: none !important; position: fixed; bottom: 70px; background-color: var(--navy); border: 2px solid var(--gold); border-radius: 12px; z-index: 2000; box-shadow: 0 -8px 25px rgba(0,0,0,0.4); max-height: 60vh; overflow-y: auto; animation: slideUp 0.3s ease-out; }
  .mobile-menu-modal.is-visible { display: block !important; }
  .mobile-menu-content { padding: 15px; background-color: var(--navy); border-radius: 10px; }
  .mobile-menu-list { list-style: none; padding: 0; margin: 0; }
  .mobile-menu-item { margin-bottom: 8px; }
  .mobile-menu-link { display: block; padding: 15px 20px; background-color: rgba(255, 255, 255, 0.08); color: var(--gold); border-radius: 8px; font-size: 1.1em; font-weight: 500; transition: all 0.3s ease; border: 1px solid rgba(212, 175, 55, 0.3); text-align: center; }
  .mobile-menu-link:hover { background-color: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3); }
  .app-bar-btn.active { color: var(--white); background: linear-gradient(145deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1)); border-radius: 10px; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2); }
  
  #bookingModal .modal-content { overflow: hidden; }

  .product-image { height: 110px; object-fit: contain; object-position: top center; background: #fff; padding: 4px; }
  .product-carousel { height: 180px; background: #fff; }
  .product-carousel-img { width: 100%; height: 100%; object-fit: contain; object-position: top center; position: absolute; top: 0; left: 0; }
  .chat-fab { bottom: 75px; }
  #inquiryModal .modal-content { max-height: calc(100vh - 40px); padding: 28px 22px 34px; }
  #inquiryModal .form-group { margin-bottom: 14px; }
  #inquiryModal .form-group label { margin-bottom: 4px; font-size: .95em; }
  #inquiryModal input, #inquiryModal textarea { padding: 10px 12px; }
  #aboutModal .modal-content { max-height: calc(100vh - 40px); padding: 14px 14px 18px; overflow-y: auto; }
  #aboutModal .section-title { margin-top: 0; margin-bottom: 10px; font-size: 1.6rem; }
  #aboutModal .team-layout { display: flex; flex-direction: column; gap: 14px; }
  #aboutModal .team-detail { position: static; top: auto; z-index: 1; background: #fff; padding: 12px; border-bottom: 1px solid #eee; }
  #aboutModal .team-detail .team-detail-photo { width: var(--about-photo-m); height: var(--about-photo-m); }
  #aboutModal .team-list .team-member{ padding: 8px 10px; margin: 6px 0; }
  #aboutModal .team-detail .team-intro-img, #aboutModal .team-detail img[alt="Our Team"] { max-width: var(--about-intro-w-m) !important; }
  #aboutModal .team-member-header{ display: flex !important; flex-direction: row !important; align-items: center; gap: 10px; min-height: var(--about-avatar-m); }
  #aboutModal .team-list .team-member img{ width: var(--about-avatar-m); height: var(--about-avatar-m); border-width: 3px; flex-shrink: 0; }
  #aboutModal .team-list .team-member .team-member-info{ display: flex; flex-direction: column; justify-content: center; }
  #aboutModal .team-list .team-member .team-member-info h3{ margin: 0 0 2px 0; font-size: 0.98rem; line-height: 1.12; }
  #aboutModal .team-list .team-member .team-member-info h4{ margin: 0; font-size: 0.88rem; line-height: 1.1; color: #555; }
  #aboutModal .team-list .team-member .specialty{ margin: 2px 0 0; font-size: 0.84rem; line-height: 1.1; color: var(--gold); }
  #aboutModal .team-help { font-size: .65rem; padding: 6px 12px; margin-bottom: 10px; }
  #aboutModal .team-detail-header { display: flex; align-items: center; gap: 10px; }
  #aboutModal .team-detail-header .team-detail-photo { flex-shrink: 0; }
  #aboutModal .team-detail-header .team-detail-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
  #contactModal .modal-content { max-height: calc(100vh - 40px); padding: 16px 14px 18px; }
  #contactModal .contact-map-container iframe { height: 200px !important; }
  #contactModal .contact-info-block { margin-bottom: 5px; }
  #contactModal .modal-title { font-size: 1.5em !important; margin-bottom: 5px !important; }
  #contactModal .contact-social-icons { margin-top: 6px; }
  .gallery-link-mobile i { font-size: 2em; color: var(--gold); margin-right: 12px; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; background: #fff; border-radius: 12px; max-height: 80vh; overflow-y: auto; }
  .gallery-thumb img { width: 100%; height: 90px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); cursor: pointer; transition: transform 0.2s; }
  .gallery-thumb img:hover { transform: scale(1.04); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
  #galleryImageModal .modal-content { max-width: 98vw !important; width: 98vw !important; height: 90vh !important; max-height: 90vh !important; padding: 0 !important; display: flex; align-items: center; justify-content: center; box-sizing: border-box; }
  #galleryImageModal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); align-items: center; justify-content: center; }
  #galleryLargeImg { max-width: 90vw !important; max-height: 90vh !important; width: 90vw !important; height: 90vh !important; object-fit: contain !important; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.12); display: block; margin: 0 auto; }
  
  .step-content-scrollable { padding: 15px 8px !important;  }
  .modern-slots-wrapper { gap: 6px !important; justify-content: space-between; }
  .day-column { flex: 0 0 calc(33.33% - 4px) !important; min-width: 0 !important; }
  .slot-column-header { font-size: 0.75rem !important; padding: 6px 2px !important; }
  .modern-slot-card { padding: 8px 2px !important; font-size: 0.8rem !important; }
  .search-result-item { grid-template-columns: 64px 1fr; grid-template-rows: auto auto auto; }
  .search-result-action { grid-column: 1 / -1; grid-row: 3; justify-self: flex-start; margin-left: 76px; }
  .cart-icon-btn { padding: 6px 9px; font-size: 0.9em; }
  .checkout-columns { grid-template-columns: 1fr; }
  .checkout-modal { max-width: 95vw; }
  .footer-bar { display: none; }
}

@media (max-width: 420px) {
  #modal-logo { width: 44px; height: 44px; top: 8px; left: 10px; }
}
@media (max-width: 768px){ .mobile-app-bar{display:flex !important;} .mobile-app-bar-hidden {display: none !important;} }
/* ========================================= */
/* STRICT FLEXBOX CHAIN FOR MODAL SCROLLING  */
/* ========================================= */

/* 1. Modal Content acts as a strict boundary */
#bookingModal .modal-content {
    display: flex !important;
    flex-direction: column !important;
    height: 85vh !important;
    max-height: 800px !important;
    overflow: hidden !important;
}

/* 2. The Form takes remaining space but CANNOT stretch */
#booking-form {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-height: 0 !important; /* CRITICAL */
}

/* 3. Viewport and Track */
.wizard-viewport {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-height: 0 !important; /* CRITICAL */
    overflow: hidden !important;
}

.modal-wizard-steps {
    display: flex !important;
    height: 100% !important;
    min-height: 0 !important; /* CRITICAL */
}

/* 4. Each step is exactly the size of the viewport */
.modal-step {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 100% !important;
    height: 100% !important;
    min-height: 0 !important; /* CRITICAL */
}

/* 5. The scrolling content safely scrolls inside the step */
.step-content-scrollable {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    min-height: 0 !important; /* CRITICAL: Forces scrollbar instead of stretching */
    padding: 20px !important;
}

/* 6. Footers sit naturally at the bottom */
.modal-nav-buttons,
.modal-footer {
    position: static !important; /* Kills the broken absolute positioning */
    flex: 0 0 auto !important; /* Don't grow, don't shrink */
    border-top: 1px solid #eee !important;
    background: #fff !important;
    z-index: 10 !important;
}