/* ===== CSS Variables ===== */
:root {
    --primary: #7a8b9a;
    --primary-dark: #5c6d7a;
    --primary-light: #e8eef2;
    --secondary: #8b7355;
    --accent: #b8c4ce;
    --gold: #b8860b;
    --gold-light: #daa520;
    --rose: #e8b4b8;
    --blush: #f5f7f9;
    --cream: #fafbfc;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

/* Anchor scroll offset for all sections */
section[id] {
    scroll-margin-top: 50px;
}

/* Scroll offset for subcategory headings */
h4[id] {
    scroll-margin-top: 135px;
}

/* Special offset for BIAB Nails to align with others */
h4#biab-nails {
    scroll-margin-top: 125px;
}

/* Special offset for Gel Extensions to fully cover text above */
h4#gel-extensions {
    scroll-margin-top: 135px;
}

/* Scroll offset for pedicure, handsandtoes, and waxing main categories */
.price-category#pedicure,
.price-category#handsandtoes,
.price-category#waxing {
    scroll-margin-top: 150px;
}

h4#ladies-body-waxing {
    scroll-margin-top: 180px;
}

/* Scroll offset for manicure main category */
.price-category#manicure {
    scroll-margin-top: 120px;
}

/* Anchor scroll offset for price categories */
.price-category[id] {
    scroll-margin-top: 200px;
}

/* Large screen adjustments for specific subcategories */
@media (min-width: 1024px) {

    h4#polish-manicures,
    h4#shellac-manicures,
    h4#removal-no-cuticle-work-,
    h4#ladies-body-waxing {
        scroll-margin-top: 150px;
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 165, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: env(safe-area-inset-top);
    /* Protect from Notch/Dynamic Island */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 12px 24px;
    position: relative;
    min-height: 80px;
}

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

.logo-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 50px 18px 50px;
    background: var(--primary);
    border-radius: 20px;
    margin-top: 12px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-family: 'Century Gothic', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    transition: all 0.3s ease;
}

.logo-centered:hover .logo-text {
    background: linear-gradient(90deg,
            #ffffff,
            #ff69b4,
            #ffffff,
            #00bcd4,
            #ffffff,
            #e91e63,
            #ffffff,
            #9c27b0,
            #ffffff,
            #ff9800,
            #ffffff,
            #4caf50,
            #ffffff,
            #2196f3,
            #ffffff);
    background-size: 800% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorWaveFlow 30s linear infinite;
}

@keyframes colorWaveFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-links-left {
    flex: 1;
    justify-content: center;
}

.nav-links-right {
    flex: 1;
    justify-content: center;
}

.info-opening-hours h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b8860b;
    position: relative;
}

.nav-links a {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #e6b800;
    /* Eye-catching bright gold */
    text-shadow: 0 0 1px rgba(230, 184, 0, 0.3);
    /* Subtle glow */
}

.nav-links a:hover::after {
    width: 100%;
    background: #e6b800;
}

.nav-links a.active {
    color: #b8860b;
    /* Deep rich gold for active state */
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    background: #b8860b;
}

/* Page sections for standalone pages */
.page-section {
    margin-top: 20px;
}

/* ===== Page Hero Section ===== */
.page-hero {
    margin-top: 180px;
    margin-bottom: 24px;
    padding: 0 24px;
}

.page-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 450px;
    border-radius: 20px;
    overflow: visible;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Hero Carousel Slides */
.hero-carousel-container {
    background: transparent;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* Restore rounded corners */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    /* Restore rounded corners */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px;
    max-width: 600px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #b8860b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.page-hero-content .btn {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.page-hero-content .btn:hover {
    background: var(--white);
    color: var(--gray-900);
}

@media (max-width: 992px) {
    .page-hero {
        margin-top: 190px;
    }

    .page-hero-inner {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 166px;
        padding: 0 12px;
        margin-bottom: 12px;
    }

    .price-item .name {
        flex: 0 0 100%;
        margin-bottom: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .page-hero-inner {
        height: 320px;
        border-radius: 20px;
    }

    .page-hero-content {
        padding: 24px;
    }

    .page-hero-content h1 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .page-hero-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

/* Custom Gray Text for Prices Hero */
.prices-hero-custom .page-hero-content h1,
.prices-hero-custom .page-hero-content p {
    color: #ffffff;
}

@media (max-width: 480px) {
    .page-hero {
        margin-top: 160px;
        padding: 0 8px;
        margin-bottom: 8px;
    }

    .page-hero-inner {
        height: 280px;
        border-radius: 20px;
    }

    .page-hero-content {
        padding: 20px;
    }

    .page-hero-content h1 {
        font-size: 22px;
    }

    .page-hero-content p {
        font-size: 13px;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section.cta-centered {
    justify-content: center;
}

/* Text Link Style - With Border */
.text-link {
    background: transparent;
    border: 1px solid #7a8b9a;
    color: #7a8b9a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
}

.text-link:hover,
.text-link:focus,
.text-link:active {
    color: #b8860b;
    border-color: #b8860b;
    background: transparent;
}

/* Booking Mindmap Style */
/* Booking Mindmap Style - Default/Hero */
.booking-mindmap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* CTA Section Override - Downward */
.cta-section .booking-mindmap {
    flex-direction: column;
}

/* CTA Section Booking Trigger - Match Hero Size but visible colors */
.cta-section .booking-trigger {
    background: transparent;
    border: 2px solid #7a8b9a;
    color: #7a8b9a;
    font-weight: 500;
    /* Match btn font weight */
}

/* CTA Section Branch Items - Match Hero Size but visible colors */
.cta-section .booking-branch {
    background: transparent;
    border: 1px solid #7a8b9a;
    color: #7a8b9a;
    font-weight: 500;
}

.cta-section .booking-branch:hover {
    background: #7a8b9a;
    color: #fff;
}

.booking-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Global active/hover */
.booking-trigger:hover,
.booking-trigger.active {
    color: #b8860b;
    border-color: #b8860b;
}

/* Hero Section Override for Active/Hover State */
/* Add white border to default state */
.page-hero-content .booking-trigger {
    border: 2px solid #ffffff;
}

.page-hero-content .booking-branch {
    padding: 12px 28px;
    font-size: 13px;
}

.page-hero-content .booking-trigger:hover,
.page-hero-content .booking-trigger.active {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff !important;
    color: #fff;
    backdrop-filter: blur(4px);
    box-shadow: none;
}

/* Hero Section Override for Branch Items */
/* Hero Section Override for Branch Items */
.page-hero-content .booking-branch {
    background: transparent;
    border: 1px solid #ffffff !important;
    color: #fff;
    backdrop-filter: blur(4px);
}

.page-hero-content .booking-branch:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ffffff !important;
}

/* Default Branches - Sideways (Hero) */
.booking-branches {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 16px;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

/* CTA Section Override - Downward */
.cta-section .booking-branches {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 8px;
    margin-left: 0;
    flex-direction: row;
    gap: 15px;
}

/* Services section: branches flow inside the container (not absolute) */
.services .booking-mindmap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.services .booking-trigger {
    width: auto;
    white-space: nowrap;
    align-self: center;
}

.services .booking-branches {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 16px;
    margin-left: 0;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
}

.booking-branches.active {
    display: flex;
}

/* Default Branch Item - Hero */
.booking-branch {
    white-space: nowrap;
    position: relative;
    animation: slideInRight 0.3s ease;
}

/* CTA Section Branch Item override */
.cta-section .booking-branch {
    animation: slideDown 0.3s ease;
    padding: 10px 18px;
    /* Match updated style if needed, or revert to btn padding */
    /* We want Hero button size? User said "Our Services... button... to Hero button SIZE" */
    /* Hero defaults to btn padding (14px 32px). */
    /* Let's remove this override so it inherits .btn padding from HTML class */
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Booking Mindmap */
@media (max-width: 768px) {
    .booking-trigger {
        font-size: 13px;
        padding: 10px 18px;
    }

    .booking-branches {
        margin-left: 12px;
        gap: 8px;
    }

    .booking-branches::before {
        width: 12px;
    }

    .booking-branch {
        font-size: 11px;
        padding: 8px 14px;
    }

    .booking-branch::before {
        width: 6px;
    }
}

@media (max-width: 480px) {
    .booking-trigger {
        font-size: 12px;
        padding: 8px 14px;
    }

    .booking-branches {
        margin-left: 10px;
        gap: 6px;
    }

    .booking-branch {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* Keep old dropdown styles for backward compatibility */
.booking-dropdown {
    position: relative;
    display: inline-block;
}

.booking-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px;
    min-width: 240px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: fadeInUp 0.3s ease;
}

.booking-menu.active {
    display: block;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.booking-option:last-child {
    margin-bottom: 0;
}

.booking-option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.booking-option span {
    font-size: 20px;
}

.nav-booking {
    font-size: 11px;
    font-weight: 500 !important;
    color: var(--primary-dark) !important;
    white-space: nowrap;
    margin-top: 6px;
}

/* ===== Logo Wrapper ===== */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Notification Bar ===== */
.notification-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 2px 12px;
    margin-top: 12px;
    background: transparent;
    position: relative;
    height: 20px;
}

.notification-slider {
    position: relative;
    width: 100%;
    height: 20px;
}

.notification-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    animation: fadeInOut 10s infinite;
}

/* Animation delays are now set dynamically via JavaScript */



@keyframes fadeInOut {
    /* Each notification gets 1/N of the total time where N = number of notifications
       With dynamic duration, each notification shows for (100/N)% of the cycle */

    0% {
        opacity: 0;
    }

    2% {
        opacity: 1;
    }

    /* Show for most of the allocated time slot */
    30% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.notification-item {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-item svg {
    flex-shrink: 0;
    vertical-align: middle;
    stroke: #333333;
}

.notification-divider {
    color: var(--gray-300);
    font-size: 10px;
    line-height: 1;
}

.notification-link {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.notification-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.notification-link:hover {
    color: var(--primary-dark);
}

.notification-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: absolute;
    right: 16px;
    top: 16px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-menu-btn:hover span {
    background: #b8860b;
    /* Gold on hover */
}

/* Mobile Menu Dropdown */
.mobile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px 12px;

    /* Animation Initial State (Curtain Effect) */
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top right;
    /* Rolls out from the button area */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;

    z-index: 1001;
    min-width: 90px;
}

/* Show on Click (Active Class) */
.mobile-menu-btn.active .mobile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.mobile-dropdown ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.mobile-dropdown a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    display: inline-block;
    padding: 4px 0;
    transition: var(--transition);
    position: relative;
}

.mobile-dropdown a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-dropdown a:hover {
    color: #b8860b;
    /* Gold on hover */
}

.mobile-dropdown a:hover::after {
    width: 100%;
    background: #b8860b;
    /* Gold underline */
}

/* Responsive Navigation */
@media (max-width: 900px) {

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        padding: 8px 16px 8px 16px;
    }
}

/* ===== Hero Carousel ===== */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 100px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    z-index: 10;
}

.slide-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.carousel-slide.active .slide-badge {
    animation: fadeInDown 0.6s ease 0.1s both;
}

.slide-content h1 {
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.carousel-slide.active .slide-content h1 {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.slide-content h1 span {
    color: var(--primary-dark);
    font-style: italic;
}

.slide-content p {
    font-size: 18px;
    color: var(--gray-800);
    max-width: 600px;
    margin: 0 auto 32px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.carousel-slide.active .slide-content p {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.carousel-slide.active .slide-content .btn {
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 100;
}

.carousel-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Carousel Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .slide-content {
        padding: 0 60px;
    }

    .carousel-dots {
        bottom: 30px;
    }
}

/* ===== Decorative Divider ===== */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    border-radius: 2px;
}

.divider-ornament {
    color: #b8860b;
    font-size: 28px;
    line-height: 1;
}

/* Title with Lines */
.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8860b);
}

.title-line:last-child {
    background: linear-gradient(90deg, #b8860b, transparent);
}

/* Ornament Image */
.ornament-img {
    width: 200px;
    height: auto;
    filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(10deg);
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Customer Reviews Section ===== */
.reviews {
    padding: 60px 0;
    background: var(--white);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.reviews-rating {
    font-size: 18px;
}

.reviews-score {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--gray-900);
}

.reviews-count {
    font-size: 14px;
    color: var(--gray-600);
}

/* Reviews Section Header - Align with Services */
#reviews .section-header {
    padding: 0 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    /* Restore original elastic transition */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
    border: none;
}

/* Pale/Light Gradients for Cards - 8 Color Cycle (Ultra Subtle) */
.review-card:nth-child(8n+1) {
    background: linear-gradient(135deg, #fffefe 0%, #fff5f7 100%);
    /* Ultra pale Pink */
    border: 1px solid rgba(255, 182, 193, 0.15);
}

.review-card:nth-child(8n+2) {
    background: linear-gradient(135deg, #fdffff 0%, #f0faff 100%);
    /* Ultra pale Blue */
    border: 1px solid rgba(176, 224, 230, 0.2);
}

.review-card:nth-child(8n+3) {
    background: linear-gradient(135deg, #fcfffc 0%, #f0fff4 100%);
    /* Ultra pale Green */
    border: 1px solid rgba(152, 251, 152, 0.15);
}

.review-card:nth-child(8n+4) {
    background: linear-gradient(135deg, #fffffb 0%, #fffef0 100%);
    /* Ultra pale Yellow */
    border: 1px solid rgba(253, 253, 150, 0.2);
}

.review-card:nth-child(8n+5) {
    background: linear-gradient(135deg, #fefdff 0%, #f9f5ff 100%);
    /* Ultra pale Purple */
    border: 1px solid rgba(230, 230, 250, 0.25);
}

.review-card:nth-child(8n+6) {
    background: linear-gradient(135deg, #fffbf9 0%, #fff5ed 100%);
    /* Ultra pale Peach */
    border: 1px solid rgba(255, 218, 185, 0.2);
}

.review-card:nth-child(8n+7) {
    background: linear-gradient(135deg, #fdffff 0%, #f2ffff 100%);
    /* Ultra pale Cyan */
    border: 1px solid rgba(224, 255, 255, 0.2);
}

.review-card:nth-child(8n+8) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    /* Ultra pale Gray */
    border: 1px solid rgba(220, 220, 220, 0.15);
}

/* Remove overlay - background colors are sufficient */
.review-card>* {
    position: relative;
    z-index: 2;
}

.review-card:hover {
    transform: scale(1.05) rotate(1deg);
    /* Restore scale+rotate */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Hidden reviews for Load More */
.review-card.hidden-review {
    display: none;
}

.review-card.hidden-review.visible {
    display: flex;
}

.review-stars {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Restore dark text colors for light backgrounds */
.review-date {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
    text-shadow: none;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

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

.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
    flex-grow: 1;
}

.review-source {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.reviews-more-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Reviews Responsive */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    .reviews-summary {
        flex-wrap: wrap;
    }

    .review-card {
        min-height: auto;
    }
}

/* ===== Services Section ===== */
.services {
    padding: 60px 24px;
    background: #fff;
}

/* Border frame matching prices page */
.services .container {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 0;
    max-width: 1200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    /* Hide featured badge on mobile */
    .featured-badge {
        display: none;
    }

    /* Gold line always visible on mobile */
    .service-card::after {
        transform: scaleX(1);
    }
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px 20px;
}

/* Elegant dark gradient overlay */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.4) 100%);
    transition: all 0.5s ease;
    border-radius: 20px;
}

/* Gold accent line */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b8860b, #d4a534, #b8860b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.3) 100%);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card.featured {
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.25);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: #b8860b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    display: none;
}

.service-card h3 {
    position: relative;
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    text-align: left;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ===== Color Palette Section ===== */
.palette-section {
    background: var(--cream);
    padding: 60px 0;
}

.palette-display {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.color-grid-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
}

#colorSearch {
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    width: 200px;
}

.filter-btn {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.gel-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nail-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nail-chip:hover {
    transform: translateY(-5px);
}

.chip-color {
    width: 40px;
    height: 75px;
    /* Longer for realistic finger look */
    border-radius: 50% 50% 12px 12px / 75% 75% 10px 10px;
    /* Elongated Almond Curve */
    margin-bottom: 8px;
    position: relative;
    box-shadow:
        inset 0 -15px 25px rgba(0, 0, 0, 0.2),
        /* Deeper bottom curve */
        inset 0 2px 8px rgba(255, 255, 255, 0.9),
        /* Super bright top rim light (Glassy) */
        0 6px 12px rgba(0, 0, 0, 0.2);
    /* Defined drop shadow */
    overflow: hidden;
}

/* High-Gloss "Wet" Highlight (The Halo) - Smaller & Focused */
.chip-color::before {
    content: '';
    position: absolute;
    top: 8px;
    /* Slightly lower */
    left: 10px;
    /* Slightly more center */
    width: 12px;
    /* Much smaller width */
    height: 20px;
    /* Much smaller height */
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 35%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    transform: rotate(-15deg);
    filter: blur(1px);
    mix-blend-mode: overlay;
    z-index: 2;
}

/* Sharp Tube Light Reflection (The Strip) - Extra Shiny */
/* Curved Tube Light Reflection - Matches Nail Shape */
.chip-color::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 12%;
    width: 6px;
    height: 55%;
    border-right: 2px solid rgba(255, 255, 255, 0.95);
    /* Bright sharp curved line */
    border-radius: 50%;
    /* Creates the curve */
    transform: rotate(-5deg);
    filter: blur(0.8px);
    opacity: 0.9;
    pointer-events: none;
    box-shadow: 2px 0 5px rgba(255, 255, 255, 0.4);
    /* Glow follows the curve */
    z-index: 2;
}

.chip-id {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.service-card p {
    position: relative;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    line-height: 1.5;
    text-align: left;
    margin: 10px 0 0 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.service-options-vertical {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: left;
}

.service-options-vertical li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin: 5px 0;
    padding-left: 15px;
    position: relative;
}

.service-options-vertical li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.service-card .btn {
    position: relative;
    z-index: 2;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.service-card .btn:hover {
    background: #b8860b;
    border-color: #b8860b;
    color: #fff;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 60px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== About Section ===== */
.about {
    padding: 30px 0 60px;
    background: var(--white);
}

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

/* Feature Image (About/Our Colors) */
.feature-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Premium shadow */
    transition: transform 0.5s ease;
    filter: saturate(1.1) contrast(1.05);
    /* Subtle polish */
}

.feature-image:hover {
    transform: scale(1.02);
}

.about-image-placeholder {
    display: none;
    /* Hide placeholder if still present in old code */
}

.about-image-placeholder span {
    font-size: 80px;
    margin-bottom: 16px;
}

.about-image-placeholder p {
    font-size: 18px;
    color: var(--gray-600);
}

.about-content .section-tag {
    margin-bottom: 8px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.feature-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}

.feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* ===== Booking Section ===== */
.booking {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--blush), var(--primary-light));
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info .section-tag {
    margin-bottom: 8px;
}

.booking-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.booking-info>p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.booking-form h3 {
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 32px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-800);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== Price List Section ===== */
.price-list {
    padding: 15px 0 100px 0;
    background: var(--white);
}

.price-list .section-header {
    margin-bottom: 20px;
}

.price-list-header {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    text-align: center;
}

.price-list-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.price-list-header p {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Styled header for price list section */
.price-list-styled-header {
    background: var(--primary);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.price-list-styled-header .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.price-list-styled-header .section-title {
    color: var(--white);
}

.price-list-styled-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Category Buttons */
.service-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.category-btn {
    position: relative;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* HOT Badge */
.hot-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    background: #ff4444;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pastel Colors for Each Category */
.category-btn-manicure {
    background: #FFE4E1;
    color: #8B4513;
    border-color: #FFB6C1;
}

.category-btn-shellac {
    background: #E6E6FA;
    color: #483D8B;
    border-color: #DDA0DD;
}

.category-btn-biab {
    background: #F0E68C;
    color: #8B7500;
    border-color: #DAA520;
}

.category-btn-acrylic {
    background: #FFE4B5;
    color: #8B6914;
    border-color: #FFD700;
}

.category-btn-gel {
    background: #E0FFE0;
    color: #228B22;
    border-color: #90EE90;
}

.category-btn-facial {
    background: #FFE4F0;
    color: #C71585;
    border-color: #FF69B4;
}

.category-btn-removal {
    background: #F5F5DC;
    color: #8B7355;
    border-color: #D2B48C;
}

.category-btn-pedicure {
    background: #B0E0E6;
    color: #00688B;
    border-color: #87CEEB;
}

.category-btn-handsandtoes {
    background: #FFE4CC;
    color: #D2691E;
    border-color: #FF8C00;
}

.category-btn-bodywaxing {
    background: #E6F3FF;
    color: #4682B4;
    border-color: #87CEFA;
}

.category-btn-menswaxing {
    background: #E8E8F5;
    color: #4B0082;
    border-color: #9370DB;
}


.price-list-contact {
    background: var(--white);
    padding: 24px 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.price-list-contact .phone {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.price-list-contact .phone::before {
    content: "";
}

.price-list-contact .hours {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.price-list-contact .badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    align-items: center;
    color: var(--gray-400);
}

/* Footer Bottom: Reduce height */
/* Footer Bottom: Reduce height & Split Layout */
.footer-bottom {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    border-top: none;
    margin-top: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
    /* responsive */
    width: 100%;
}

.hours-row {
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 0;
}

/* Force border on last item (Sunday) */
.hours-row:last-child {
    border-bottom: 1px solid var(--gray-200) !important;
}

.price-list-contact .badges span::before {
    content: "✓ ";
    color: var(--primary);
}

.price-list-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 40px;
    /* Prevent text selection and copying */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

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

.price-category-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.price-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.price-group h4 {
    font-size: 17px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 12px;
}

.price-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
}

.price-item .name {
    color: var(--gray-600);
    flex: 3;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.price-item .dots {
    flex: 0.1;
    border-bottom: 1px dotted var(--gray-300);
    margin: 0 6px;
    min-width: 10px;
}

.price-item .duration {
    color: var(--gray-500);
    font-size: 0.9em;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-item .price {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-list-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.price-list-footer .email {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.price-list-footer .email::before {
    content: "✉ ";
}

.price-list-footer .address {
    font-size: 14px;
    color: var(--gray-600);
}

.price-list-footer .address::before {
    content: "📍 ";
}


/* All price groups: Display price items in 2 columns on large screens */
.price-group {
    grid-column: 1 / -1;
    /* Span full width */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
}

.price-group h4 {
    grid-column: 1 / -1;
    /* Title spans both columns */
}


@media (max-width: 768px) {
    .price-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Reset all price groups to single column on mobile */
    .price-group {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .price-list-contact .badges {
        flex-direction: column;
        gap: 8px;
    }

    /* Mobile styles for category buttons */
    .service-category-buttons {
        gap: 8px;
        margin: 20px auto 0;
    }

    .category-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .price-list-content {
        padding: 24px;
    }
}

/* ===== Map/Find Us Section ===== */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.address-link {
    color: #7a8b9a;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.address-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7a8b9a;
    transition: var(--transition);
}

.address-link:hover {
    color: var(--primary-dark);
}

.address-link:hover::after {
    width: 100%;
}

/* ===== Contact Section ===== */
.contact {
    padding: 60px 0;
    background: var(--white);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-content span {
    font-size: 60px;
    display: block;
    margin-bottom: 16px;
}

.map-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #7a8a99;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #6a7a89;
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== Footer ===== */
.footer {
    background: #f8f8f8;
    color: #666666;
    padding: 10px 0 5px;
    /* Further reduced */
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo a:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.contact-icon svg {
    flex-shrink: 0;
    color: #5f6c7b;
    margin-top: 2px;
}

.contact-icon:hover {
    color: #b8860b;
    padding-left: 8px;
}

.contact-icon:hover svg {
    transform: scale(1.1);
}

.contact-icon span {
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:nth-child(1) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icon:nth-child(1):hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.social-icon:nth-child(2) {
    background: #1877f2;
    color: #fff;
}

.social-icon:nth-child(2):hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.opening-hours {
    width: 100%;
}

.opening-hours h3 {
    color: #555555;
    font-size: 20px;
    margin-bottom: 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hours-table {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.4;
}

.hours-row:hover {
    padding-left: 8px;
    background: #fafafa;
}

.hours-row .day {
    font-weight: 500;
    color: #555555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    display: inline-block;
    box-shadow: 0 0 4px rgba(39, 174, 96, 0.5);
}

.hours-row.closed .status-dot {
    background: #95a5a6;
    box-shadow: 0 0 4px rgba(149, 165, 166, 0.3);
}

.status-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto;
}

.open-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    display: inline-flex;
}

.wave-letter {
    display: inline-block;
    animation: wave 5s ease-in-out infinite;
}

.space {
    display: inline-block;
    width: 0.3em;
}

@keyframes wave {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    65% {
        transform: translateY(-6px);
    }

    70% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-4px);
    }

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

.closed-badge {
    background: #ecf0f1;
    color: #7f8c8d;
}

.hours-row .time {
    color: #b8860b;
    font-size: 13px;
    font-weight: 600;
}

.hours-row.closed .time {
    color: #999999;
}

.footer-bottom {
    padding-top: 5px;
    /* Restoration for breathing room */
    display: flex;
    /* Flex layout for Left-Right */
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999999;
}

.footer-bottom p {
    margin: 0;
}

.footer-links-bottom {
    margin-top: 0;
    /* Reset margin for row layout */
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links-bottom a {
    color: #666666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #b8860b;
}

.footer-links-bottom .separator {
    color: #999999;
    font-size: 12px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {

    .about-grid,
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        order: -1;
    }

    .about-image-placeholder {
        height: 350px;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }



    .gallery-item.large {
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }



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

/* ===== Contact Page Styles ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .contact-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-dark);
}

.contact-info-card a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* =========================================
   Nail Shapes Guide Section
   ========================================= */
.nail-shapes-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    /* Light contrast background */
    border-bottom: 1px solid #eee;
}

.shapes-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    /* Space between items */
    max-width: 1000px;
    margin: 0 auto;
}

.shape-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 80px;
    /* Container width */
}

/* Base Shape Style */
.nail-shape {
    width: 50px;
    height: 90px;
    background-color: #d6336c;
    /* Hot Pink from reference */
    background: linear-gradient(135deg, #e64980, #c2255c);
    /* Subtle depth */
    box-shadow: 0 5px 15px rgba(214, 51, 108, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.nail-shape:hover {
    transform: translateY(-5px) scale(1.05);
}

.shape-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

/* --- Specific Shapes --- */

/* 1. Round */
.shape-round {
    border-radius: 50% 50% 0 0;
}

/* 2. Square */
.shape-square {
    border-radius: 4px 4px 0 0;
}

/* 3. Squoval (Square + Oval) */
.shape-squoval {
    border-radius: 35% 35% 0 0;
    /* Softer than square, flatter than round */
}

/* 4. Oval */
.shape-oval {
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    /* Slightly taller curve */
    /* Often looks similar to round but slightly more tapered sides if we could */
}

/* 5. Almond */
.shape-almond {
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    /* Sharp taper */
    /* Let's try the complex radius from the chip earlier for better look */
    border-radius: 50% 50% 20% 20% / 70% 70% 10% 10%;
}

/* 6. Coffin (Ballerina) */
.shape-coffin {
    clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
    border-radius: 2px;
    /* Slight softening */
}

/* 7. Stiletto */
.shape-stiletto {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    /* Make the tip slightly rounded so it's not 1px sharp? */
    /* No, stiletto is sharp. */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shapes-grid {
        gap: 20px;
    }

    .shape-item {
        width: 60px;
    }

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

    .footer-right {
        justify-content: center;
    }

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

    .nail-shape {
        width: 40px;
        height: 70px;
    }

    .section-title {
        font-size: 1.7rem !important;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    /* Change from full width to corner card */
    width: 100%;
    max-width: 380px;
    /* Much smaller width */
    margin: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    /* Slightly smaller radius */
    padding: 16px;
    /* Reduced padding */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    /* Stack content VERTICALLY for compact card */
    align-items: flex-start;
    gap: 12px;
    /* Reduced gap */
    animation: slideUp 0.5s ease forwards;
    border-left: 4px solid var(--gold);
    /* Slightly thinner border */
}

.cookie-content {
    flex: 1;
    width: 100%;
    min-width: 0;
    /* Override previous min-width */
}

.cookie-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 18px;
    /* Smaller title */
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-text {
    font-size: 13px;
    /* Smaller text */
    color: var(--gray-600);
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
    /* Align buttons to right */
}

.btn-cookie-accept {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    /* Smaller buttons */
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background-color: var(--gold-light);
    transform: translateY(-1px);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
    padding: 8px 16px;
    /* Smaller buttons */
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        right: 16px;
        left: 16px;
        bottom: 16px;
        max-width: none;
        width: auto;
    }
}

/* ===== Homepage Contact Section ===== */
.contact-map-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.contact-form-card {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    color: var(--gold);
    margin-bottom: 24px;
    font-size: 24px;
}

.home-contact-form .form-group {
    margin-bottom: 16px;
}

.home-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-800);
}

.home-contact-form input,
.home-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.map-container-small {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 480px;
    /* Match form height roughly */
}

@media (max-width: 900px) {
    .contact-map-wrapper {
        flex-direction: column;
    }

    .contact-form-card,
    .map-container-small {
        width: 100%;
        flex: auto;
    }

    .map-container-small {
        min-height: 350px;
    }
}

/* ===== New Map Layout (Revert & Update) ===== */
.contact-map-wrapper.new-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

/* Header Contact Info (Phone, Email, Address below Title) */
.header-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
}

.header-contact-item svg {
    color: var(--gold);
}

/* Left: Map */
.map-container-left {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    /* content: hidden to clip corners */
    box-shadow: var(--shadow-md);
    position: relative;
    /* Essential for absolute child */
}

.map-container-left iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto !important;
}

/* Right: Info Column */
/* Right: Info Column */
.info-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Reduced gap from 32px */
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    /* height removed to allow stretch */
    overflow-y: auto;
    /* Just in case */
}

.info-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
    /* Minimized margin */
}

.info-logo img {
    width: 100px;
    /* Slightly smaller logo */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    /* Border removed as requested */
}

.info-opening-hours {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    /* Move to top as requested */
    width: 100%;
}

.info-opening-hours h3 {
    text-align: center;
    color: #b8860b;
    /* Gold text */
    margin-bottom: 25px;
    /* Increased gap */
    font-size: 22px;
    margin-top: 0;
    position: relative;
    padding-bottom: 12px;
    /* Space for line */
}

/* Half-width separator line */
.info-opening-hours h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Moved down further */
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    /* "half length" roughly 50-60% */
    height: 1px;
    /* Thinner line */
    background-color: var(--gray-400);
    /* Gray line */
    opacity: 0.6;
}

/* Opening Hours Text Styling */
.hours-row {
    color: var(--gray-600);
    /* Match nav text color */
    font-size: 16px;
    /* Slightly larger */
    transition: var(--transition);
    position: relative;
    cursor: default;
}

/* Hover Effect for Opening Hours Text */
.hours-row:hover {
    color: #e6b800;
    /* Gold on hover */
}

/* Underline effect on hover (matching nav) */
.hours-row::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e6b800;
    transition: var(--transition);
}

.hours-row:hover::after {
    width: 100%;
}

/* Social Icons in Info Column */
.info-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    /* Reduced breathing room */
    border-top: 1px solid var(--gray-200);
    /* Removed margin-top: auto so it sits directly under the hours which are now pushed down */
}



/* Header Contact Item Styling Updates */
.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.header-contact-item svg {
    color: var(--gray-600);
    /* Icon same color as text initially */
    transition: var(--transition);
}

.header-contact-item a {
    color: inherit;
    text-decoration: none;
}

/* Hover effects for Contact Items */
.header-contact-item:hover {
    color: #e6b800;
    /* Gold text */
}

.header-contact-item:hover svg {
    color: #e6b800;
    /* Gold icon */
}

/* Underline effect for Contact Items */
.header-contact-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e6b800;
    transition: var(--transition);
}

.header-contact-item:hover::after {
    width: 100%;
}


@media (max-width: 900px) {
    .contact-map-wrapper.new-layout {
        flex-direction: column;
    }

    .map-container-left {
        width: 100%;
        height: 400px;
        flex: none;
        /* Prevent flex collapse */
    }

    .info-column-right {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .header-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Responsive Contact Hero on Home Page */
.contact-hero-custom {
    height: 400px;
}

@media (max-width: 768px) {
    .contact-hero-custom {
        height: 280px;
        /* Reduced height for smaller screens */
    }

    .contact-hero-custom .page-hero-content {
        padding: 30px;
        /* Reduce padding to fit better */
    }

    .contact-hero-custom h1 {
        font-size: 32px;
        /* Smaller title */
        margin-bottom: 10px;
    }

    .contact-hero-custom p {
        margin-bottom: 15px;
        font-size: 14px;
    }
}

/* Responsive Booking Button Scaling */
@media (max-width: 768px) {
    .page-hero-content .booking-trigger {
        padding: 10px 20px;
        font-size: 14px;
    }

    .page-hero-content .booking-branch {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Ensure mindmap fits on small screens by stacking if needed or just scaling */
    .page-hero-content .booking-mindmap {
        transform: scale(0.9);
        /* Slight scale down container if needed */
        transform-origin: left center;
    }
}

@media (max-width: 480px) {
    .page-hero-content .booking-trigger {
        padding: 8px 16px;
        font-size: 13px;
    }

    .page-hero-content .booking-mindmap {
        transform: scale(0.85);
        /* Further scale down for very small screens */
    }
}

/* Mobile Instagram Button - Top Left */
.mobile-insta-btn {
    display: none;
    /* Hidden on desktop */
    position: absolute;
    left: 16px;
    /* Match mobile nav-container padding */
    top: 16px;
    /* Match hamburger button top */
    padding: 3px 6px;
    /* Match hamburger button dimensions (26px height) */
    color: #b8860b;
    /* Gold */
    z-index: 1001;
    /* Above logo */
    line-height: 1;
}

.mobile-insta-btn svg {
    width: 20px;
    /* Match hamburger width */
    height: 20px;
    display: block;
}

@media (max-width: 900px) {
    .mobile-insta-btn {
        display: block;
    }

    /* Ensure nav-container allows positioning */
    .nav-container {
        position: relative;
    }
}

/* Footer Bottom Responsive - Stack on Mobile */
@media (max-width: 900px) {
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2px;
        /* Reduced gap */
        padding-top: 5px;
        /* Reduced padding */
    }

    .footer-links-bottom {
        justify-content: center;
        margin-top: 0;
        /* Removed margin */
    }
}

/* ===== Gallery Page Custom Grid (Masonry) ===== */
.gallery-grid {
    display: block;
    /* Ensure block for column-count to work */
    column-count: 2;
    /* 2 columns on mobile for variable sizes */
    column-gap: 12px;
    /* Tighter gap on mobile */
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: #f0f0f0;
    margin-bottom: 16px;
    /* Space between vertical items */
    break-inside: avoid;
    /* Prevent splitting across columns */
}

/* Ensure images cover the grid area */
.gallery-item img {
    width: 100%;
    height: auto;
    /* Allow natural height for masonry */
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Anti-download protections */
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

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

/* Overlay for visual appeal */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Desktop Masonry Layout (Min 900px) */
@media (min-width: 900px) {
    .gallery-grid {
        column-count: 3;
        /* 3 columns for 5 images looks balanced */
        column-gap: 24px;
    }

    .gallery-item {
        margin-bottom: 24px;
    }
}

/* ===== Lightbox Styles ===== */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    /* Show flex to center content */
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    /* Anti-download protections */
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* ===== Gallery CTA Buttons Responsive ===== */
.gallery-cta-btn {
    box-sizing: border-box !important;
    width: 180px;
    max-width: 45vw;
    /* Allow shrinking on small screens (almost half width) */
    height: 44px;
    padding: 0;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #7a8b9a;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 400px) {
    .gallery-cta-btn {
        font-size: 12px;
        /* Smaller font on very small screens */
        height: 40px;
        /* Slightly smaller height */
    }
}

/* ===== Price Items - Inline Duration Layout ===== */

/* Basic price item - single line with inline duration */
.price-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.price-item .name {
    color: var(--gray-600);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* First dots - takes up all available space */
.price-item .name+.dots {
    flex: 1;
    border-bottom: 1px dotted var(--gray-300);
    margin: 0 8px;
    min-width: 10px;
}

/* Second dots - hide it */
.price-item .duration+.dots {
    display: none;
}

.price-item .duration {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
    font-style: italic;
    margin-right: 6px;
}

.price-item .price {
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
}


/* Expandable price item - for items with descriptions */
.price-item.expandable {
    display: block;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.price-item.expandable:hover {
    background-color: rgba(184, 134, 11, 0.05);
    border-radius: 4px;
}

.price-item-header {
    display: flex;
    align-items: center;
    padding: 8px 0;
    gap: 12px;
}

.price-toggle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #b8860b;
    transition: all 0.3s ease;
    background: transparent;
}

.price-item.expanded .price-toggle {
    transform: rotate(45deg);
    background: #b8860b;
    color: white;
}

.price-item-header .name {
    color: var(--gray-600);
    flex: 1;
    min-width: 0;
}

.price-item-header .duration {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
    font-style: italic;
}

.price-item-header .price {
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
}

.price-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 32px;
}

.price-item.expanded .price-details {
    max-height: 200px;
    padding: 8px 0 12px 32px;
}

.price-details-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.price-description {
    font-style: italic;
    opacity: 0.9;
}