/* ==========================================================================
   Design System & Global Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #FAF8F5;
    /* Warm Soft Cream */
    --color-bg-secondary: #FFFFFF;
    /* Pure White */
    --color-bg-tertiary: #F3ECE8;
    /* Soft Peach-Rose */

    --color-text-primary: #2C2A29;
    /* Dark Charcoal */
    --color-text-secondary: #5C5856;
    /* Muted Warm Gray */
    --color-text-muted: #736C68;
    /* Darkened Muted Gray for accessibility contrast */

    --color-accent: #947852;
    /* Accessible Bronze-Gold */
    --color-accent-hover: #7E6543;
    /* Darker Gold on hover */
    --color-accent-light: #F7EFE9;
    /* Very light gold/beige tint */
    --color-rose: #E8D3C9;
    /* Dusty Rose */

    --color-border: #E8E2DD;
    /* Subtle warm gray border */
    --color-success: #8BA88F;
    /* Sage Green */
    --color-whatsapp: #25D366;
    /* Official WhatsApp Green */

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout Variables */
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-subtle: 0 4px 20px rgba(74, 71, 69, 0.04);
    --shadow-medium: 0 10px 30px rgba(74, 71, 69, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(74, 71, 69, 0.08);
}

/* Gold Header Top Accent Line */
.header-top-accent {
    height: 3px;
    background: linear-gradient(to right, var(--color-accent), var(--color-rose), var(--color-accent));
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

/* Micro Accent Dot for Section Headers */
.dot-accent {
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    transition: var(--transition-smooth);
}

/* CTA hover micro-animations & shadows */
.btn-primary:hover,
.btn-header-appointment:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(148, 120, 82, 0.2) !important;
}

.btn-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(148, 120, 82, 0.1);
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 500;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg.icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    display: inline-block;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-bg-white {
    background-color: var(--color-bg-secondary);
}

.section-bg-rose {
    background-color: var(--color-accent-light);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-wrapper h2 {
    margin-bottom: 12px;
    font-weight: 400;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 8px;
    display: block;
}

/* ==========================================================================
   Utility Top Bar
   ========================================================================== */
.top-utility-bar {
    background-color: var(--color-text-primary);
    color: var(--color-bg-primary);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-info {
    display: flex;
    gap: 24px;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-item a:hover {
    color: var(--color-accent);
}

.utility-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-social a {
    display: flex;
    align-items: center;
    color: var(--color-bg-primary);
}

.utility-social a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* Logo Design */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

/* Nav Menu */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    padding: 24px;
    width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 110;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-category-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 6px;
    margin-bottom: 2px;
}

.mega-menu-category-title a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mega-menu-category-title a:hover {
    color: var(--color-text-primary);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-item {
    display: block;
    font-size: 13.5px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    line-height: 1.4;
}

.mega-menu-item:hover {
    color: var(--color-text-primary);
    padding-left: 4px;
}

/* Burger Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

/* Burger Active States */
.mobile-nav-toggle.active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-whatsapp-theme {
    background-color: var(--color-whatsapp);
    color: #FFFFFF;
    border: none;
}

.btn-whatsapp-theme:hover {
    background-color: #20ba59;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Side Info Panel
   ========================================================================== */
.side-info-panel {
    position: fixed;
    top: 50%;
    right: -320px;
    /* Hidden initially offscreen */
    transform: translateY(-50%);
    width: 320px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    box-shadow: var(--shadow-glass);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-info-panel.active {
    right: 0;
}

.side-panel-toggle {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    background-color: var(--color-text-primary);
    color: var(--color-bg-primary);
    border: 1px solid var(--color-text-primary);
    border-right: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.05);
}

.toggle-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.panel-toggle-icon {
    width: 16px;
    height: 16px;
}

.side-panel-content {
    padding: 30px;
}

.panel-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.panel-header h3 {
    margin-bottom: 4px;
    font-weight: 400;
}

.micro-greeting {
    font-size: 13px;
    color: var(--color-accent);
    font-style: italic;
}

.opening-hours-list {
    margin-bottom: 24px;
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border);
}

.opening-hours-list li:last-child {
    border-bottom: none;
}

.opening-hours-list .hours {
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Home Hero Carousel Slider
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
    background-color: var(--color-text-primary);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 7s ease-out;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 650px;
    color: var(--color-bg-primary);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, opacity 1.2s ease 0.6s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: 500;
    display: block;
}

.slide-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.slide-title span {
    font-style: italic;
    font-family: var(--font-heading);
    color: #ffffff;
}

.slide-content p {
    color: #ffffff;
}

.slide-buttons {
    display: flex;
    gap: 16px;
}

/* Slider navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.slider-arrow-prev {
    left: 24px;
}

.slider-arrow-next {
    right: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
}

.service-card h3 {
    font-weight: 400;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14.5px;
    margin-bottom: 20px;
}

.service-card .read-more {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    display: inline-block;
}

.service-card .read-more::after {
    content: ' →';
    transition: var(--transition-fast);
}

.service-card:hover .read-more::after {
    padding-left: 4px;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.trust-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: calc(var(--border-radius-lg) - 10px);
    pointer-events: none;
}

.trust-content h2 {
    font-weight: 400;
    margin-bottom: 24px;
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    margin-bottom: 4px;
    font-weight: 500;
}

.feature-text p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ==========================================================================
   Price List Section
   ========================================================================== */
.prices-layout {
    max-width: 900px;
    margin: 0 auto;
}

.price-category {
    margin-bottom: 50px;
}

.price-category-title {
    font-weight: 400;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

.price-row-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-border);
}

.price-item-info {
    max-width: 75%;
}

.price-item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.price-item-desc {
    font-size: 13.5px;
    color: var(--color-text-secondary);
    margin-top: 4px;
    margin-bottom: 0;
}

.price-item-cost {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
.gallery-grid {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    animation: gallery-scroll 40s linear infinite;
}

.gallery-grid:hover .gallery-track {
    animation-play-state: paused;
}

@keyframes gallery-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .gallery-track {
        animation-duration: 80s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-track {
        animation: none;
    }
}

.gallery-item {
    position: relative;
    flex: 0 0 280px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 42, 41, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.gallery-hover-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-hover-icon {
    transform: scale(1);
}

/* ==========================================================================
   Gallery Lightbox
   ========================================================================== */
#gallery-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(18, 16, 15, 0.92);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.25s ease;
}

#gallery-lightbox.open {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 9001;
}

.lightbox-close:hover {
    background-color: rgba(255,255,255,0.25);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 9001;
}

.lightbox-arrow:hover {
    background-color: rgba(255,255,255,0.28);
}

.lightbox-arrow-prev { left: 20px; }
.lightbox-arrow-next { right: 20px; }

.lightbox-caption {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 0.08em;
    z-index: 9001;
    white-space: nowrap;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-accent-light);
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-style: italic;
    font-size: 14.5px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.author-details h5 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

.author-details span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   About Page Specific
   ========================================================================== */
.about-hero {
    padding: 100px 0;
    text-align: center;
    background-color: var(--color-accent-light);
}

.about-hero h1 {
    font-weight: 300;
    margin-bottom: 16px;
}

.about-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-accent);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.about-stat-box {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Treatments Directory (Parent)
   ========================================================================== */
.treatments-results {
    transition: opacity 0.25s ease;
}

.treatments-results.is-switching {
    opacity: 0;
}

.treatments-category-block {
    margin-bottom: 80px;
}

.treatments-category-block:last-child {
    margin-bottom: 0;
}

.treatment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.treatment-detail-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 490px;
}

.treatment-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.treatment-detail-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 6px 14px;
    border-radius: 20px;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-weight: 400;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body p {
    font-size: 14px;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-top: auto;
}

/* Hidden on desktop, where the price already shows over the image;
   the compact mobile card layout swaps to this instead (see the
   576px breakpoint below). */
.card-price-inline {
    display: none;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
}

/* ==========================================================================
   Treatment Detail Page
   ========================================================================== */
.treatment-hero {
    height: 45vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.treatment-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.treatment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 42, 41, 0.6);
    z-index: 2;
}

.treatment-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.treatment-hero-content h1 {
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 12px;
}

.treatment-breadcrumbs {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 8px;
    display: block;
}

.treatment-breadcrumbs a:hover {
    color: #FFFFFF;
}

.treatment-info-tag {
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.treatment-details-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    margin-top: 60px;
}

.treatment-main-desc h2 {
    font-weight: 400;
    margin-bottom: 20px;
}

.treatment-main-desc p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Sidebar Widget */
.treatment-sidebar-widget {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 110px;
    height: fit-content;
}

.widget-title {
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

.widget-price-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.widget-price-label {
    font-size: 15px;
    color: var(--color-text-secondary);
}

.widget-price-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
}

.widget-meta-list {
    margin-bottom: 30px;
}

.widget-meta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 14.5px;
}

.widget-meta-list li:last-child {
    border-bottom: none;
}

.widget-meta-list svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Process section (How it works) */
.price-table-section {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
}

.price-table-title {
    font-weight: 400;
    margin-bottom: 20px;
}

.price-table-group {
    margin-bottom: 24px;
}

.price-table-group:last-child {
    margin-bottom: 0;
}

.price-table-group-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.price-table-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 15px;
}

.price-table-list li:last-child {
    border-bottom: none;
}

.price-table-value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.process-timeline {
    margin-top: 50px;
    margin-bottom: 50px;
}

.process-timeline-title {
    font-weight: 400;
    margin-bottom: 30px;
}

.timeline-steps {
    position: relative;
    padding-left: 30px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background-color: var(--color-border);
}

.timeline-step {
    position: relative;
    margin-bottom: 30px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -30px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-bg-primary);
    z-index: 5;
}

.timeline-step h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text-primary);
}

.timeline-step p {
    font-size: 14px;
    margin-bottom: 0;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 50px;
}

.faq-title {
    font-weight: 400;
    margin-bottom: 30px;
}

.accordion-item {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    padding-right: 20px;
}

.accordion-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    position: relative;
    transition: var(--transition-smooth);
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

/* horizontal bar */
.accordion-icon::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 2px;
}

/* vertical bar */
.accordion-icon::after {
    top: 0;
    left: 5px;
    width: 2px;
    height: 12px;
}

/* Open states */
.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid var(--color-border);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content-inner {
    padding: 24px;
    font-size: 14.5px;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Kontakt Page
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-panel h2 {
    font-weight: 400;
    margin-bottom: 16px;
}

.contact-info-desc {
    font-size: 15px;
    margin-bottom: 35px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text h3 {
    margin-bottom: 4px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.contact-info-text a:hover {
    color: var(--color-accent);
}

/* Form Styling */
.contact-form-panel {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-medium);
}

.contact-form-panel h2 {
    font-weight: 400;
    margin-bottom: 30px;
    /* Was an <h3> visually - keep that size now that it's a semantically
       correct <h2> (parallel to the info column's own h2). */
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-bg-secondary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-accent);
}

.checkbox-label {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 14.5px;
    margin-bottom: 24px;
    display: none;
}

/* Honeypot anti-spam field: invisible to real visitors, present for bots
   that blindly fill every input. */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-message.success {
    display: block;
    background-color: #EBF5EE;
    color: #2F6A4F;
    border: 1px solid #CBE6D6;
}

.form-message.error {
    display: block;
    background-color: #FDF2F2;
    color: #9B1C1C;
    border: 1px solid #FBD5D5;
}

/* ==========================================================================
   Gutschein (Voucher) Placeholder
   ========================================================================== */
.voucher-layout {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-medium);
}

.voucher-badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
}

.voucher-layout h1 {
    font-weight: 400;
    margin-bottom: 16px;
    /* Was an <h2> visually - keep that size now that it's a semantically
       correct (and only) <h1> on this page. */
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.voucher-layout p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
}

.voucher-input-wrapper {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.voucher-input-wrapper input {
    flex-grow: 1;
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.site-footer {
    background-color: #22201F;
    color: #E2DFDD;
    padding: 80px 0 0;
    border-top: 1px solid #2F2D2C;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 44px;
    /* The logo SVG is dark grey - invert it to white so it reads on the
       footer's near-black background instead of disappearing into it. */
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    color: #A6A09C;
    margin-bottom: 24px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2E2B2A;
    color: #E2DFDD;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-secondary);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 400;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #A6A09C;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #A6A09C;
}

.footer-contact-info svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
}

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

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #A6A09C;
    padding: 8px 0;
    border-bottom: 1px dashed #2F2D2C;
}

.footer-hours-list li:last-child {
    border-bottom: none;
}

.footer-bottom {
    border-top: 1px solid #2F2D2C;
    padding: 24px 0;
    font-size: 13px;
    color: #8E8783;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a:hover {
    color: var(--color-accent);
}

.copyright a,
.footer-credit a {
    text-decoration: underline;
}

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

/* ==========================================================================
   Page Transitions & Router Animation Utility
   ========================================================================== */
#main-content {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#main-content.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* Shown briefly while bootstrapAppData() loads content from Firestore. */
#boot-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.boot-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: boot-spin 0.8s linear infinite;
}

@keyframes boot-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Responsive Design & Mobile Overrides
   ========================================================================== */

/* Medium Devices (Tablets, 992px and down) */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .trust-layout,
    .about-intro-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-details-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-sidebar-widget {
        position: static;
        width: 100%;
    }

    /* Mobile Header & Navigation */
    .mobile-nav-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-secondary);
        z-index: 150;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
        overflow-y: auto;
        padding: 40px 24px;
        box-shadow: var(--shadow-medium);
        border-top: 1px solid var(--color-border);
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile: "Behandlungen" navigates straight to the treatments page
       (which has its own category filter chips), so the mega-menu submenu
       is unnecessary on small screens and would overflow anyway. */
    .nav-item.dropdown .dropdown-menu.mega-menu {
        display: none;
    }

    .dropdown-arrow {
        display: none;
    }

    .header-cta-wrapper {
        display: none;
        /* Hide top right btn on mobile, it lives inside nav or contact */
    }
}

/* Small Devices (Phones, 576px and down) */
@media (max-width: 576px) {
    .utility-container {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 6px;
        column-gap: 16px;
        text-align: center;
    }

    /* Let the address/phone items join .utility-social as direct flex
       items of .utility-container, instead of being stuck in their own
       row as a group - condenses the bar to two rows (address; phone +
       social icons) instead of three. */
    .utility-info {
        display: contents;
    }

    .utility-item:first-child {
        flex-basis: 100%;
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider-section {
        height: 60vh;
    }

    .slide-content-wrapper {
        justify-content: center;
    }

    .slide-content {
        text-align: center;
    }

    .slide-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .slide-buttons .btn {
        width: auto;
        padding: 10px 20px;
        font-size: 13px;
    }

    /* The prev/next arrows sit over the slide text at this width - the
       dots below still give manual control, so drop the arrows here. */
    .slider-arrow {
        display: none;
    }

    /* Compact horizontal "list row" cards instead of tall stacked ones,
       so the treatments list can be scanned without endless scrolling.
       The description is dropped here - title, duration and price are
       enough to decide whether to tap through to the detail page. */
    .treatment-cards-grid {
        gap: 14px;
        margin-top: 20px;
    }

    .treatment-detail-card {
        flex-direction: row;
        height: auto;
    }

    .treatment-detail-card:hover {
        transform: none;
    }

    .card-img-wrapper {
        width: 110px;
        height: auto;
    }

    /* Duration isn't essential here and the price reads better as plain
       text in the footer than as a small overlay on a now-tiny image. */
    .card-price-tag {
        display: none;
    }

    .card-price-inline {
        display: inline-block;
        font-size: 0.95rem;
    }

    .treatment-info-tag {
        display: none;
    }

    .card-body {
        padding: 14px 16px;
        justify-content: center;
    }

    .card-body h3 {
        font-size: 1rem;
        white-space: normal;
        margin-bottom: 4px;
    }

    .card-body p {
        display: none;
    }

    .card-footer {
        border-top: none;
        padding-top: 0;
        margin-top: 8px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }

    .voucher-input-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    /* Brand intro and opening hours read better full-width; the two short
       link lists pair up side by side. Dividers replace the desktop
       grid's column gutters as the visual separation once everything
       stacks, so the section doesn't just look like one flat block. */
    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 28px;
        border-bottom: 1px solid #2F2D2C;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        text-align: center;
    }

    .hours-col {
        grid-column: 1 / -1;
        padding-top: 28px;
        border-top: 1px solid #2F2D2C;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .side-info-panel {
        display: none;
        /* Collapses on small mobile screens to save space */
    }
}

/* Category Filter Chips */
.filter-chips-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.filter-chip {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-chip:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-1px);
}

.filter-chip.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-secondary) !important;
    box-shadow: 0 4px 12px rgba(148, 120, 82, 0.2);
}

/* ==========================================================================
   Admin Panel (not linked from nav - reached via #/admin)
   ========================================================================== */
.admin-shell {
    min-height: 70vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 30px;
    padding-bottom: 12px;
}

.admin-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
}

.admin-tab.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-secondary);
}

.admin-login-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
}

.admin-login-container h1 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.admin-hint {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-form-grid-full {
    grid-column: 1 / -1;
}

.admin-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.admin-card-actions {
    display: flex;
    gap: 8px;
}

.admin-thumb {
    max-width: 140px;
    height: auto;
    border-radius: 8px;
    margin-top: 8px;
}

.admin-inline-message {
    display: inline-block;
    margin-left: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.admin-treatment-form {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.tf-repeat-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.admin-hero-button-row {
    grid-template-columns: 1fr 1fr 1.4fr;
}

.admin-treatments-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-treatment-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 6px;
}

.admin-muted {
    color: var(--color-text-muted);
    font-size: 13px;
}

.admin-submissions-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-submission-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.admin-submission-row-wide {
    align-items: flex-start;
}

.admin-seed-banner {
    background-color: var(--color-accent-light);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.admin-seed-banner p {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .admin-form-grid,
    .tf-repeat-row,
    .admin-treatment-row {
        grid-template-columns: 1fr;
    }
}