/* LUMORE Randevu - Luxury Warm Gold Theme */
@font-face {
    font-family: 'Brittany Signature';
    src: url('/view/frontend/assets/fonts/BrittanySignature.woff2') format('woff2'),
         url('/view/frontend/assets/fonts/BrittanySignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --accent: #c9a55c;
    --accent-light: #f5ecd9;
    --accent-dark: #8b6914;
    --accent-rgb: 201,165,92;
    --metallic-gradient: linear-gradient(135deg, #e8c578 0%, #c9a55c 50%, #8b6914 100%);
    --metallic-gradient-soft: linear-gradient(135deg, #f5ecd9 0%, #e6d6b8 100%);
    --dark: #2a2419;
    --dark-hover: #3d3526;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --text: #2a2419;
    --text-secondary: #7a6a4a;
    --text-muted: #a89880;
    --bg: #fbf6ec;
    --bg-card: #ffffff;
    --border: #ece0c4;
    --border-dark: #d4c39a;
    --shadow: 0 2px 8px rgba(139,105,20,0.06);
    --shadow-md: 0 4px 16px rgba(139,105,20,0.10);
    --shadow-lg: 0 8px 32px rgba(139,105,20,0.14);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Brittany Signature', 'Parisienne', 'Dancing Script', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.hidden { display: none !important; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* App Container */
.app-container {
    max-width: 680px;
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 80px;
    background: var(--bg);
}

/* Panels */
.panel { display: none; padding: 0 16px; }
.panel.active { display: block; }

.panel-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 50;
}
.panel-header-bar h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #f7ecd0 0%, #e8c578 50%, #c9a55c 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at center, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.15) 75%, rgba(0,0,0,0) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
}

.hero-logo-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 56px;
    letter-spacing: 14px;
    color: #fff;
    text-indent: 14px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
    line-height: 1;
}

.hero-signature {
    position: relative;
    display: inline-block;
    margin-top: 14px;
    line-height: 1;
    padding: 4px 12px 16px;
    overflow: visible;
}
.hero-sig-text {
    font-family: var(--font-script);
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 0 6px 18px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
    clip-path: inset(-25% 100% -55% -8%);
    animation: sigWrite 2.6s cubic-bezier(.45,.05,.55,.95) .5s forwards;
    overflow: visible;
}
.hero-sig-pen {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 65%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 8px rgba(255,255,255,0.7);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(12deg);
    opacity: 0;
    animation: sigPen 2.6s cubic-bezier(.45,.05,.55,.95) .5s forwards;
    pointer-events: none;
}
@keyframes sigWrite {
    0%   { clip-path: inset(-25% 100% -55% -8%); }
    100% { clip-path: inset(-25% -8%  -55% -8%); }
}
@keyframes sigPen {
    0%   { left: 0;    opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
@keyframes sigDraw {
    0% { stroke-dashoffset: 400; fill-opacity: 0; }
    60% { fill-opacity: 0; }
    100% { stroke-dashoffset: 0; fill-opacity: 1; }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    line-height: 1.5;
    letter-spacing: 0.5px;
}
.hero-tagline em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: 0.3px;
    display: inline-block;
    margin-top: 4px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    margin-top: 38px;
}
.hero-stars { display: flex; gap: 2px; }
.hero-rating-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}
.hero-rating-count {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.85rem;
}
a.hero-rating { text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
a.hero-rating:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(0,0,0,0.2); }
.hero-rating-google { display: inline-flex; align-items: center; }

/* ===================== GOOGLE REVIEWS ===================== */
.google-reviews-section {
    margin: 18px 16px 12px;
    padding: 18px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.gr-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.gr-all-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}
.gr-all-link:hover { text-decoration: underline; }

.gr-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fffbea 0%, #fff8e1 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    border: 1px solid #ffeaa7;
}
.gr-score {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f57c00;
    line-height: 1;
}
.gr-summary-stars { display: flex; gap: 1px; }
.gr-total {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: auto;
    font-weight: 600;
}

.gr-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gr-card {
    padding: 12px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.gr-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.gr-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-card);
}
.gr-avatar-fallback {
    background: var(--metallic-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.gr-author { flex: 1; min-width: 0; }
.gr-author-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gr-when {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 1px;
}
.gr-card-stars { display: flex; gap: 1px; flex-shrink: 0; }
.gr-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================== QUICK ACTIONS ===================== */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px;
    padding: 14px 16px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.qa-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
    transition: var(--transition);
}
.qa-item:hover { background: var(--bg); color: var(--text); }
.qa-item svg { color: var(--text-muted); flex-shrink: 0; transition: color 0.2s; }
.qa-item:hover svg { color: var(--accent); }

/* ===================== AUTH BANNER ===================== */
.auth-banner {
    margin: 16px 16px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.auth-banner-content {
    position: relative;
    padding: 32px 24px 28px;
    text-align: center;
    background: linear-gradient(135deg, #f5ecd9 0%, #e6d6b8 40%, #f5ecd9 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* When admin sets a background image, darken it for text readability */
.auth-banner.has-image .auth-banner-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 0;
    pointer-events: none;
}
.auth-banner.has-image .auth-banner-content > * {
    position: relative;
    z-index: 1;
}
.auth-banner.has-image .auth-banner-content h2 { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.auth-banner.has-image .auth-banner-content p  { color: rgba(255,255,255,0.92); text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.auth-banner.has-image .auth-sparkle { color: rgba(255,255,255,0.55) !important; }

/* Sparkle decorations */
.auth-sparkle {
    position: absolute;
    color: rgba(45,52,64,0.18);
    pointer-events: none;
    line-height: 1;
}
.auth-sparkle.s1 { top: 20px; left: 30px; font-size: 22px; color: rgba(45,52,64,0.22); }
.auth-sparkle.s2 { top: 50px; left: 12px; font-size: 10px; color: rgba(45,52,64,0.14); }
.auth-sparkle.s3 { top: 15px; right: 40px; font-size: 18px; color: rgba(45,52,64,0.25); }
.auth-sparkle.s4 { top: 60px; right: 15px; font-size: 12px; color: rgba(45,52,64,0.15); }
.auth-sparkle.s5 { bottom: 35px; left: 50px; font-size: 8px; color: rgba(45,52,64,0.12); }
.auth-sparkle.s6 { bottom: 20px; right: 55px; font-size: 9px; color: rgba(45,52,64,0.13); }
.auth-sparkle.s7 { top: 40px; right: 70px; font-size: 7px; color: rgba(45,52,64,0.10); }
.auth-sparkle.s8 { bottom: 50px; left: 20px; font-size: 6px; color: rgba(45,52,64,0.10); }

.auth-banner-content h2 {
    font-family: var(--font);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
    position: relative;
    z-index: 1;
}
.auth-banner-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.auth-banner-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-auth-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 32px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}
.btn-auth-dark:hover { background: var(--dark-hover); }

.btn-auth-pink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 32px;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}
.btn-auth-pink:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 0 14px;
}
.trust-item svg { color: var(--success); flex-shrink: 0; width: 14px; height: 14px; }
.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border-dark);
    flex-shrink: 0;
}

/* ===================== SEARCH & FILTER ===================== */
.search-filter-bar {
    display: flex;
    gap: 10px;
    padding: 16px 16px 8px;
    align-items: stretch;
}
.search-box {
    flex: 1;
    position: relative;
}
.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.search-box input {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--bg-card);
    color: var(--text);
    outline: none;
    font-family: var(--font);
    transition: border-color 0.2s;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus { border-color: var(--accent); }

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
    white-space: nowrap;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn svg { flex-shrink: 0; }

/* Filter Panel */
.filter-panel { padding: 12px 16px 0; }
.filter-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
    padding: 8px 16px;
    border: 1.5px solid var(--border-dark);
    border-radius: 20px;
    background: var(--bg-card);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
    transition: var(--transition);
}
.filter-chip.active, .filter-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ===================== TODAY'S SLOTS ===================== */
.today-slots-section {
    margin: 16px 16px 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}
.today-slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.today-slots-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}
.today-slots-title svg { color: var(--text-secondary); }
.today-slots-link {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
    transition: color 0.2s;
}
.today-slots-link:hover { color: var(--accent); }

.today-slots-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    align-items: center;
}
.today-slots-row::-webkit-scrollbar { display: none; }

.today-slot-chip {
    padding: 10px 18px;
    border: 1.5px solid var(--accent);
    border-radius: 24px;
    background: var(--bg-card);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}
.today-slot-chip:hover, .today-slot-chip.selected {
    background: var(--accent);
    color: #fff;
}

.today-slot-cta {
    padding: 10px 20px;
    border: none;
    border-radius: 24px;
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(45,52,64,0.25);
}
.today-slot-cta:hover { background: var(--accent-dark); }

/* ===================== SERVICE CARDS ===================== */
.svc-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0 16px;
    margin: 32px 0 18px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}
.svc-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--border) 40%, transparent 100%);
}
.svc-section-title.online { color: var(--accent); }

/* Featured Service Card */
.featured-card {
    margin: 12px 16px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #fbf3df 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.featured-card:hover { box-shadow: var(--shadow-lg); }
.featured-card.selected { border-color: var(--accent); }

.featured-content {
    display: flex;
    gap: 14px;
    padding: 14px;
    align-items: stretch;
}

.featured-img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 120px;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #d4b56a 0%, #b88d3a 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 10px;
    border-radius: var(--radius-sm) 0 6px 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(139,105,20,0.25);
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.featured-img {
    width: 120px;
    height: 130px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    display: block;
    background: var(--bg);
}
.featured-img-placeholder {
    width: 120px;
    height: 130px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #f5ecd9, #d4c39a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.featured-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    position: relative;
}
.featured-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    padding-right: 80px;
}
.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-features {
    list-style: none;
    margin: 4px 0;
}
.featured-features li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 1px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.featured-features li .ff-icon { font-size: 0.8rem; flex-shrink: 0; }

.featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    margin-top: auto;
}
.featured-duration { color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.featured-price { font-weight: 800; color: var(--success); font-size: 0.95rem; }

.featured-add-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    align-self: center;
}
.featured-card.selected .featured-add-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Regular Service Card */
.svc-card {
    margin: 0 16px 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 4px;
    display: flex;
    align-items: stretch;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    min-height: 110px;
}
.svc-card:hover { background: rgba(255,255,255,0.4); }
.svc-card.selected {
    background: rgba(var(--accent-rgb), 0.06);
    border-bottom-color: var(--accent);
}

.svc-img {
    width: 110px;
    height: auto;
    align-self: stretch;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg);
}
.svc-img-placeholder {
    width: 110px;
    align-self: stretch;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #f5ecd9, #e6d6b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.svc-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.svc-name { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.svc-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.svc-desc .svc-desc-icon { display: none; }
.svc-desc .svc-desc-icon { font-size: 0.7rem; flex-shrink: 0; }
.svc-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
}
.svc-duration { color: var(--text-muted); display: flex; align-items: center; gap: 3px; }
.svc-meta-divider { color: var(--text-muted); font-size: 0.7rem; }
.svc-price { font-weight: 700; color: var(--success); }
.svc-old-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.75rem; }

.svc-right-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.svc-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.svc-card.selected .svc-add-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.svc-add-btn svg { width: 16px; height: 16px; }

.svc-fav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.svc-fav-btn.favorited { color: var(--accent); }
.svc-fav-btn:hover { color: var(--accent); }

.svc-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 16px 8px;
}

.service-no-result {
    text-align: center;
    padding: 40px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================== PROMO BANNER ===================== */
.promo-banner {
    margin: 24px 16px 0;
    background: var(--metallic-gradient);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.promo-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-content { flex-shrink: 0; }
.promo-label { font-size: 0.78rem; opacity: 0.9; }
.promo-discount { font-size: 1.3rem; font-weight: 800; }

.promo-info { flex: 1; text-align: right; }
.promo-desc { font-size: 0.72rem; opacity: 0.85; margin-bottom: 4px; }
.promo-code {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===================== BUSINESS INFO ===================== */
.biz-info-section { margin-top: 32px; padding: 0 16px 24px; }
.biz-info-divider { height: 1px; background: linear-gradient(to right, transparent, #ddd, transparent); margin-bottom: 24px; }
.biz-info-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}
.biz-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.biz-info-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}
.biz-info-card-title {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.9rem; color: var(--text);
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.biz-info-card-title svg { color: var(--text-muted); flex-shrink: 0; }
.biz-hour-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; border-bottom: 1px solid #f8f8f8; font-size: 0.8rem;
}
.biz-hour-row:last-child { border-bottom: none; }
.biz-hour-row.today { color: var(--success); font-weight: 600; }
.biz-hour-day { color: #555; font-weight: 500; }
.biz-hour-row.today .biz-hour-day { color: var(--success); }
.biz-hour-time { font-weight: 600; color: var(--text); letter-spacing: 0.3px; }
.biz-hour-row.today .biz-hour-time { color: var(--success); }
.biz-address-block { display: flex; flex-direction: column; gap: 8px; }
.biz-address-row { font-size: 0.82rem; color: #555; line-height: 1.5; }
.biz-address-row strong { color: var(--text); font-weight: 600; }
.biz-address-row a { color: var(--accent); text-decoration: none; font-weight: 500; }
.biz-address-row a:hover { text-decoration: underline; }
.biz-map-link a {
    display: inline-flex; align-items: center; gap: 3px;
    color: var(--success); font-weight: 600;
}

/* ===================== BOTTOM NAV ===================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 680px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 4px 4px;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

.bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 2px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
    transition: color 0.2s;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 500;
    min-width: 0;
}
.bnav-item svg { transition: color 0.2s; flex-shrink: 0; }
.bnav-item span { white-space: nowrap; }
.bnav-item.active { color: var(--accent); }
.bnav-item.active svg { stroke: var(--accent); }

.bnav-center {
    position: relative;
    flex: 1.3;
}
.bnav-center-btn {
    background: var(--metallic-gradient);
    color: #fff;
    padding: 11px 16px;
    border-radius: 28px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(45,52,64,0.3);
    transition: var(--transition);
    position: relative;
    top: -8px;
}
.bnav-center:hover .bnav-center-btn { box-shadow: 0 6px 20px rgba(45,52,64,0.4); }

/* Hizmet ekleme animasyonu - hedef butona pulse efekti */
.bnav-center-btn.cart-pulse {
    animation: cartPulse 0.55s cubic-bezier(.36,1.6,.4,1) 1;
}
@keyframes cartPulse {
    0%   { transform: scale(1); box-shadow: 0 4px 16px rgba(139,105,20,0.3); }
    35%  { transform: scale(1.18); box-shadow: 0 8px 28px rgba(201,165,92,0.65); }
    70%  { transform: scale(0.96); }
    100% { transform: scale(1); box-shadow: 0 4px 16px rgba(139,105,20,0.3); }
}

.fly-clone {
    object-fit: cover;
}

/* ===================== WHATSAPP WIDGET ===================== */
.whatsapp-widget {
    position: fixed;
    bottom: 85px;
    right: 16px;
    z-index: 150;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.wp-bubble {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 220px;
}
.wp-bubble span {
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
}
.wp-bubble a {
    color: var(--success);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
}
.wp-bubble a:hover { text-decoration: underline; }

.wp-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}
.wp-btn:hover { transform: scale(1.08); }

/* ===================== CARDS & COMMON ===================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    overflow: hidden;
}
.card-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.card-body { padding: 16px 18px; }
.dot-accent { color: var(--accent); margin-right: 4px; }

/* ===================== BUTTONS ===================== */
.btn {
    padding: 13px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-hover); }
.btn-confirm {
    background: var(--success);
    color: #fff;
}
.btn-confirm:hover { background: #43a047; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-logout {
    background: none;
    color: var(--danger);
    border: 1.5px solid var(--danger);
    margin-top: 12px;
}
.btn-logout:hover { background: var(--danger); color: #fff; }

/* ===================== APPOINTMENTS ===================== */
.profile-stats { display: flex; gap: 8px; margin-bottom: 12px; }
.stat-box {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.68rem; color: var(--text-secondary); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

.appointment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.appointment-item:last-child { border-bottom: none; }
.appointment-date-box {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--bg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.apt-day { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.apt-month { font-size: 0.62rem; text-transform: uppercase; color: var(--text-secondary); }
.appointment-info { flex: 1; min-width: 0; }
.apt-service { font-weight: 600; font-size: 0.88rem; }
.apt-details { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.appointment-status {
    padding: 3px 10px; border-radius: 20px;
    font-size: 0.68rem; font-weight: 600; color: #fff; flex-shrink: 0;
}
.appointment-item.today { background: var(--accent-light); border-radius: 10px; padding: 12px; margin: -4px -8px; }
.appointment-item.past { opacity: 0.6; }
.today-badge { background: var(--accent) !important; color: #fff !important; }
.today-badge .apt-day, .today-badge .apt-month { color: #fff !important; }
.apt-time-badge { background: var(--bg); padding: 2px 8px; border-radius: 4px; font-size: 0.73rem; font-weight: 600; }
.apt-staff { margin-left: 6px; font-size: 0.78rem; }
.apt-today-label { font-size: 0.68rem; color: var(--accent); font-weight: 700; margin-top: 2px; text-transform: uppercase; letter-spacing: 1px; }

.apt-actions-col { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.apt-action-btns { display: flex; gap: 6px; }
.apt-cancel-btn, .apt-edit-btn {
    border: none; background: none; font-size: 0.68rem; font-weight: 600;
    cursor: pointer; padding: 3px 8px; border-radius: 6px; transition: all 0.2s;
}
.apt-cancel-btn { color: #e74c3c; }
.apt-cancel-btn:hover { background: #fde8e8; }
.apt-edit-btn { color: #3498db; }
.apt-edit-btn:hover { background: #e8f4fd; }

/* Empty / Login Required */
.empty-state, .login-required-panel {
    text-align: center;
    padding: 60px 24px;
}
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3, .login-required-panel h3 { font-weight: 700; margin-bottom: 6px; }
.empty-state p, .login-required-panel p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 20px; }

/* ===================== PROFILE ===================== */
.profile-header-card {
    background: linear-gradient(135deg, var(--dark), #333);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}
.profile-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800;
    margin: 0 auto 10px; letter-spacing: 1px;
}
.profile-name { font-size: 1.15rem; font-weight: 700; }
.profile-since { font-size: 0.73rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.profile-form-row { display: flex; gap: 10px; }
.profile-form-row .form-group { flex: 1; }
.profile-gender-select { display: flex; gap: 8px; }
.gender-chip {
    flex: 1; text-align: center; padding: 10px;
    border: 1px solid var(--border-dark); border-radius: var(--radius-xs);
    cursor: pointer; font-size: 0.88rem; transition: var(--transition);
}
.gender-chip input { display: none; }
.gender-chip.active, .gender-chip:has(input:checked) {
    background: var(--accent); border-color: var(--accent); color: #fff;
}
.profile-info-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.profile-info-row:last-child { border-bottom: none; }
.info-icon {
    font-size: 1.2rem; flex-shrink: 0; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg); border-radius: 8px;
}
.info-content { flex: 1; }
.info-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.info-value { font-weight: 600; font-size: 0.88rem; margin-top: 1px; }

/* ===================== BOOKING FLOW ===================== */
.back-btn {
    width: 40px; height: 40px; border: none;
    background: var(--bg-card); border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); box-shadow: var(--shadow);
}
.back-btn:hover { background: var(--bg); }

.step-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-dark); transition: var(--transition); }
.step-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.step-dot.completed { background: var(--success); }

.date-selector { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.date-selector label { display: block; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 8px; }
.date-display {
    display: flex; align-items: center; justify-content: center;
    padding: 12px; background: var(--bg-card); border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; font-size: 0.95rem;
    transition: var(--transition);
}
.date-display:hover { border-color: var(--accent); }
.date-display svg { width: 18px; height: 18px; margin-right: 8px; color: var(--text-secondary); }

.selected-service-card { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; }
.selected-service-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 14px; background: var(--bg); border-bottom: 1px solid var(--border);
}
.selected-service-info h4 { font-weight: 600; margin-bottom: 3px; font-size: 0.92rem; }
.selected-service-info span { font-size: 0.82rem; color: var(--accent); }
.remove-service {
    color: var(--danger); font-size: 0.82rem; cursor: pointer;
    display: flex; align-items: center; gap: 4px;
}
.remove-service:hover { text-decoration: underline; }
.selected-service-body { padding: 14px; }

.staff-select-label { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 8px; display: block; }
.staff-dropdown {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm); font-size: 0.92rem; background: var(--bg-card);
    cursor: pointer; appearance: none; font-family: var(--font);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.staff-dropdown:focus { outline: none; border-color: var(--accent); }

.time-section { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.time-section-header { font-weight: 600; margin-bottom: 10px; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-slot {
    padding: 11px 8px; border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
    text-align: center; cursor: pointer; font-size: 0.88rem; transition: var(--transition);
    background: var(--bg-card); font-family: var(--font);
}
.time-slot:hover:not(.unavailable) { border-color: var(--accent); background: var(--accent-light); }
.time-slot.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.time-slot.unavailable { background: var(--bg); color: var(--text-muted); cursor: not-allowed; text-decoration: line-through; }

.no-slots-msg {
    padding: 24px; text-align: center; color: var(--text-secondary);
    font-size: 0.88rem; background: var(--bg); border-radius: var(--radius-sm);
}
.no-slots-msg svg { width: 40px; height: 40px; margin-bottom: 10px; color: var(--text-muted); }

.total-section {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; background: var(--bg); border-top: 1px solid var(--border);
}
.total-label { font-weight: 500; color: var(--text-secondary); font-size: 0.88rem; }
.total-amount { font-size: 1.15rem; font-weight: 700; color: var(--accent); }

.add-more-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; border: 2px dashed var(--border-dark);
    border-radius: var(--radius-sm); background: none; color: var(--accent);
    font-size: 0.9rem; cursor: pointer; transition: var(--transition);
    margin-bottom: 16px; font-family: var(--font);
}
.add-more-btn:hover { border-color: var(--accent); background: var(--accent-light); }

.confirmation-card { text-align: center; padding: 32px 18px; }
.confirmation-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--accent-light); display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.confirmation-icon svg { width: 36px; height: 36px; color: var(--accent); }
.confirmation-card h2 { margin-bottom: 6px; font-size: 1.2rem; }
.confirmation-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.88rem; }
.booking-details {
    text-align: left; background: var(--bg); padding: 16px;
    border-radius: var(--radius-sm); margin-bottom: 20px;
}
.booking-detail-row {
    display: flex; justify-content: space-between; padding: 7px 0;
    border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.booking-detail-row:last-child { border-bottom: none; }
.booking-detail-row span:first-child { color: var(--text-secondary); }
.booking-detail-row span:last-child { font-weight: 600; }

/* ===================== MODALS ===================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); display: flex;
    align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; visibility: hidden;
    transition: var(--transition); padding: 20px;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-card); border-radius: var(--radius);
    width: 100%; max-width: 400px; max-height: 90vh; overflow-y: auto;
    transform: translateY(20px); transition: var(--transition);
}
.modal-overlay.show .modal { transform: translateY(0); }
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px; border-bottom: 1px solid var(--border);
}
.modal-close {
    width: 32px; height: 32px; border: none;
    background: var(--bg); border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.modal-body { padding: 18px; }

.auth-tab {
    cursor: pointer; padding: 4px 0; font-weight: 500;
    color: var(--text-secondary); border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.auth-tab.active { color: var(--text); border-bottom-color: var(--accent); }
.auth-tab:hover { color: var(--text); }

.gender-select { display: flex; gap: 12px; }
.gender-option { flex: 1; cursor: pointer; }
.gender-option input { display: none; }
.gender-label {
    display: block; padding: 11px 14px; text-align: center;
    border: 1px solid var(--border-dark); border-radius: 8px;
    font-size: 0.92rem; transition: var(--transition);
}
.gender-option input:checked + .gender-label {
    background: var(--accent); border-color: var(--accent); color: #fff;
}
.gender-option:hover .gender-label { border-color: var(--accent); }

/* Form */
.form-group { margin-bottom: 14px; }
.form-group label, .form-label-sm {
    display: block; font-size: 0.82rem; font-weight: 500;
    margin-bottom: 6px; color: var(--text-secondary);
}
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
    font-size: 0.95rem; transition: var(--transition); font-family: var(--font);
}
.form-control:focus { outline: none; border-color: var(--accent); }

/* OTP */
.otp-container { display: flex; gap: 8px; justify-content: center; margin: 20px 0; }
.otp-input {
    width: 46px; height: 54px; text-align: center;
    font-size: 1.4rem; font-weight: 600;
    border: 2px solid var(--border-dark); border-radius: var(--radius-sm);
    transition: var(--transition); font-family: var(--font);
}
.otp-input:focus { outline: none; border-color: var(--accent); }

/* Reschedule */
.reschedule-info {
    background: var(--bg); border-radius: 8px; padding: 12px;
    margin-bottom: 14px; font-size: 0.85rem;
}
.reschedule-info .ri-service { font-weight: 700; margin-bottom: 4px; }
.reschedule-info .ri-current { color: var(--text-secondary); font-size: 0.78rem; }
.reschedule-slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 40px; }
.reschedule-slot {
    padding: 8px 14px; border-radius: 8px; border: 1.5px solid var(--border-dark);
    background: #fff; cursor: pointer; font-size: 0.82rem; font-weight: 600;
    transition: all 0.2s; text-align: center;
}
.reschedule-slot:hover { border-color: var(--accent); }
.reschedule-slot.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

/* All Slots Modal */
.all-slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }

/* Calendar */
.calendar-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); display: flex;
    align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition);
}
.calendar-overlay.show { opacity: 1; visibility: visible; }
.calendar-popup {
    background: var(--bg-card); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); width: 320px; max-width: 95vw;
    transform: scale(0.9); transition: var(--transition);
}
.calendar-overlay.show .calendar-popup { transform: scale(1); }
.calendar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px; border-bottom: 1px solid var(--border);
}
.calendar-header button {
    width: 36px; height: 36px; border: none; background: var(--bg);
    border-radius: 50%; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: var(--transition);
}
.calendar-header button:hover { background: var(--border); }
.calendar-header button:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-title { font-weight: 600; font-size: 0.95rem; }
.calendar-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    padding: 8px 14px; border-bottom: 1px solid var(--border);
}
.calendar-weekdays span {
    text-align: center; font-size: 0.72rem; font-weight: 600;
    color: var(--text-secondary); padding: 6px 0;
}
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); padding: 8px 14px 14px; gap: 4px; }
.calendar-day {
    aspect-ratio: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; border: none;
    background: none; border-radius: 50%; cursor: pointer;
    font-size: 0.88rem; transition: var(--transition); position: relative;
    font-family: var(--font);
}
.calendar-day:hover:not(:disabled) { background: var(--bg); }
.calendar-day.today { font-weight: 700; color: var(--accent); }
.calendar-day.selected { background: var(--accent); color: #fff; }
.calendar-day:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-day .dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--success); position: absolute; bottom: 4px;
}
.calendar-day.selected .dot { background: #fff; }

/* Loading */
.loading-spinner {
    display: inline-block; width: 18px; height: 18px;
    border: 2px solid transparent; border-top-color: currentColor;
    border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.bottom-spacer { height: 40px; }

/* ===================== RESPONSIVE ===================== */

/* Tablet & Mobile signature text küçültme */
@media (max-width: 899px) {
    .hero-sig-text { font-size: 32px; padding: 0 6px 14px; }
    /* LUMORE + Signature Touch yazılarını biraz aşağı it */
    .hero-brand { margin-top: 36px; }
}

/* Service grid - 3 columns on mobile + tablet */
@media (max-width: 899px) {
    #serviceGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 12px;
    }
    #serviceGrid > .svc-section-title,
    #serviceGrid > .svc-divider,
    #serviceGrid > .featured-card,
    #serviceGrid > .service-no-result {
        grid-column: 1 / -1;
    }
    #serviceGrid > .svc-section-title { padding: 0; }
    #serviceGrid > .featured-card { margin: 4px 0 8px; }
    #serviceGrid > .svc-divider { margin: 12px 0 4px; }

    /* Regular service card - vertical layout for grid */
    .svc-card {
        margin: 0;
        padding: 8px;
        gap: 6px;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }
    .svc-card:hover { background: rgba(var(--accent-rgb), 0.04); }
    .svc-card.selected {
        border-color: var(--accent);
        background: rgba(var(--accent-rgb), 0.08);
    }
    .svc-img,
    .svc-img-placeholder {
        width: 100%;
        height: 110px;
        align-self: auto;
        border-radius: var(--radius-xs);
    }
    .svc-body { gap: 2px; }
    .svc-name {
        font-size: 0.82rem;
        line-height: 1.25;
        margin-bottom: 2px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }
    .svc-desc { display: none; }
    .svc-meta { font-size: 0.7rem; flex-wrap: wrap; gap: 3px; }
    .svc-meta-divider { display: none; }
    .svc-price { font-size: 0.82rem; }
    .svc-old-price { font-size: 0.66rem; }
    .svc-right-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
        margin-top: 4px;
    }
    .svc-add-btn { width: 28px; height: 28px; }
    .svc-add-btn svg { width: 13px; height: 13px; }
    .svc-fav-btn { padding: 2px; }
    .svc-fav-btn svg { width: 15px; height: 15px; }
}

/* Tighter sizing on phones */
@media (max-width: 600px) {
    #serviceGrid > .svc-card { padding: 8px; }
    .svc-img,
    .svc-img-placeholder { height: 90px; }
    .svc-name { font-size: 0.76rem; }
    .svc-meta { font-size: 0.66rem; }
    .svc-price { font-size: 0.78rem; }
    .svc-old-price { font-size: 0.62rem; }
    .svc-add-btn { width: 26px; height: 26px; }
    .svc-add-btn svg { width: 12px; height: 12px; }
    .svc-fav-btn svg { width: 14px; height: 14px; }
}

@media (max-width: 600px) {
    .hero-section { height: 280px; }
    .hero-logo-name { font-size: 38px; letter-spacing: 10px; text-indent: 10px; }
    .hero-sig-text { font-size: 28px; padding: 0 6px 12px; }

    /* Mobil rating badge küçültme */
    .hero-rating { gap: 6px; padding: 5px 12px; border-radius: 22px; margin-top: 44px; }
    .hero-stars { gap: 1px; }
    .hero-stars svg { width: 13px; height: 13px; }
    .hero-rating-text { font-size: 0.78rem; }
    .hero-rating-count { font-size: 0.7rem; }
    .hero-rating-google svg { width: 11px; height: 11px; }
    .hero-tagline { font-size: 1.2rem; line-height: 1.45; }
    .hero-tagline em { font-size: 1.45rem; }

    .auth-banner-btns { flex-direction: row; gap: 8px; }
    .btn-auth-dark, .btn-auth-pink { flex: 1; justify-content: center; padding: 12px 14px; font-size: 0.88rem; }

    .trust-badges { flex-wrap: wrap; gap: 8px 16px; }

    /* Featured (En çok tercih edilen) */
    .featured-card { margin: 10px 12px 14px; position: relative; }
    .featured-content { gap: 10px; padding: 10px; align-items: stretch; }
    .featured-img-wrap { width: 96px; }
    .featured-img,
    .featured-img-placeholder { width: 96px; height: 110px; }
    .featured-info { gap: 4px; min-width: 0; padding-right: 44px; }
    .featured-name {
        padding-right: 0;
        font-size: 0.88rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }
    .featured-tag {
        position: static;
        align-self: flex-start;
        margin-top: 2px;
        font-size: 0.55rem;
        padding: 2px 7px;
    }
    .featured-features { margin: 2px 0; }
    .featured-features li {
        font-size: 0.72rem;
        line-height: 1.35;
        padding: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }
    .featured-features li:nth-child(n+3) { display: none; }
    .featured-add-btn {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
    }
    .featured-add-btn svg { width: 16px; height: 16px; }
    .featured-badge {
        font-size: 0;
        padding: 5px 7px;
        line-height: 1;
        gap: 0;
    }
    .featured-badge::before {
        content: '★';
        font-size: 0.95rem;
        line-height: 1;
        color: #fff8e1;
    }
    .featured-badge .featured-badge-icon { display: none; }
    .featured-meta { gap: 8px; flex-wrap: wrap; font-size: 0.78rem; }
    .featured-price { font-size: 0.9rem; }

    .svc-section-title { font-size: 1.05rem; padding: 0 12px; margin: 24px 0 12px; gap: 12px; letter-spacing: 0.3em; }

    .time-grid { grid-template-columns: repeat(3, 1fr); }
    .biz-info-grid { grid-template-columns: 1fr; }

    .promo-banner { flex-wrap: wrap; gap: 10px; }
    .promo-info { text-align: left; flex-basis: 100%; }

    .google-reviews-section { margin: 14px 12px 10px; padding: 14px; }
    .gr-title { font-size: 0.92rem; }
    .gr-rating-summary { padding: 10px 12px; gap: 8px; }
    .gr-score { font-size: 1.4rem; }
    .gr-total { font-size: 0.72rem; }
    .gr-card { padding: 10px 12px; }
    .gr-text { font-size: 0.8rem; -webkit-line-clamp: 3; }
    .gr-author-name { font-size: 0.82rem; }
    .gr-avatar { width: 32px; height: 32px; }
}

@media (max-width: 420px) {
    .bnav-center-btn { padding: 10px 14px; font-size: 0.72rem; }
    .bnav-item { font-size: 0.58rem; }
    .bnav-item svg { width: 20px; height: 20px; }

    .featured-card { margin: 8px 10px 12px; }
    .featured-content { padding: 10px; gap: 10px; }
    .featured-img-wrap { width: 86px; }
    .featured-img,
    .featured-img-placeholder { width: 86px; height: 100px; }
    .featured-info { padding-right: 40px; }
    .featured-name { font-size: 0.8rem; letter-spacing: 0.2px; }
    .featured-features li { font-size: 0.7rem; }
    .featured-meta { font-size: 0.74rem; gap: 6px; }
    .featured-price { font-size: 0.85rem; }
    .featured-add-btn { width: 32px; height: 32px; right: 8px; }
    .featured-add-btn svg { width: 14px; height: 14px; }

    #serviceGrid { gap: 6px; padding: 0 10px; }
    .svc-card { padding: 7px; gap: 5px; }
    .svc-img,
    .svc-img-placeholder { height: 80px; }
    .svc-name { font-size: 0.72rem; }
    .svc-meta { font-size: 0.62rem; }
    .svc-price { font-size: 0.74rem; }
    .svc-add-btn { width: 24px; height: 24px; }
    .svc-add-btn svg { width: 11px; height: 11px; }
    .svc-fav-btn svg { width: 13px; height: 13px; }
}

@media (max-width: 380px) {
    .app-container { padding-bottom: 75px; }
    .bnav-center-btn { padding: 9px 12px; font-size: 0.68rem; }
    .bnav-item span { font-size: 0.55rem; }

    .featured-img-wrap { width: 78px; }
    .featured-img,
    .featured-img-placeholder { width: 78px; height: 92px; }
    .featured-content { padding: 9px; gap: 8px; }
    .featured-info { padding-right: 36px; }
    .featured-name { font-size: 0.78rem; }
    .featured-tag { font-size: 0.52rem; padding: 2px 6px; }
    .featured-features li { font-size: 0.68rem; }
    .featured-add-btn { width: 30px; height: 30px; right: 6px; }
    .featured-add-btn svg { width: 13px; height: 13px; }

    #serviceGrid { gap: 5px; padding: 0 8px; }
    .svc-card { padding: 6px; gap: 4px; }
    .svc-img,
    .svc-img-placeholder { height: 72px; }
    .svc-name { font-size: 0.68rem; }
    .svc-meta { font-size: 0.6rem; gap: 2px; }
    .svc-price { font-size: 0.7rem; }
    .svc-old-price { font-size: 0.58rem; }
    .svc-add-btn { width: 22px; height: 22px; }
    .svc-add-btn svg { width: 10px; height: 10px; }
    .svc-fav-btn svg { width: 12px; height: 12px; }
}

/* ===================== DESKTOP LAYOUT ===================== */
@media (min-width: 900px) {
    .app-container {
        max-width: 1180px;
        box-shadow: 0 0 40px rgba(0,0,0,0.05);
    }

    .panel { padding: 0 28px; }

    .hero-section {
        height: 480px;
        border-radius: 0;
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .hero-overlay { padding: 40px; }
    .hero-logo-name { font-size: 72px; letter-spacing: 18px; text-indent: 18px; }
    .hero-sig-text { font-size: 45px; }
    .hero-tagline { font-size: 1.85rem; }
    .hero-tagline em { font-size: 2.2rem; }

    .quick-actions {
        gap: 8px 18px;
        padding: 18px 28px;
    }

    /* Featured card stays full-width but more breathable */
    .featured-card { margin: 18px 28px 18px; }
    .featured-content { padding: 18px; gap: 18px; }
    .featured-img-wrap { width: 180px; }
    .featured-img,
    .featured-img-placeholder { width: 180px; height: 180px; }
    .featured-name { font-size: 1.1rem; }
    .featured-features li { font-size: 0.88rem; }

    /* Service grid 2 columns on desktop */
    #serviceGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        padding: 0 28px;
    }
    #serviceGrid > .svc-section-title,
    #serviceGrid > .svc-divider,
    #serviceGrid > .featured-card,
    #serviceGrid > .service-no-result {
        grid-column: 1 / -1;
    }
    #serviceGrid > .featured-card { margin: 8px 0 12px; }
    .svc-card { margin: 0; }

    /* Promo banner wider */
    .promo-banner { margin: 20px 28px; padding: 22px 28px; }

    /* Google reviews 2-column grid on desktop */
    .google-reviews-section { margin: 24px 28px 18px; padding: 24px; }
    .gr-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .gr-text { -webkit-line-clamp: 5; }

    /* Business info already 2-col grid via biz-info-grid; widen gaps */
    .biz-info-section { margin: 0 28px; }

    /* Bottom nav: keep mobile-style centered chip */
    .bottom-nav {
        max-width: 720px;
        bottom: 16px;
        border-radius: 22px;
        border: 1px solid var(--border);
        box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    }

    /* WhatsApp widget pulled away from edge */
    .whatsapp-widget { right: calc(50vw - 580px + 16px); bottom: 100px; }

    /* Auth banner / today section / trust badges spacing */
    .auth-banner, .today-section, .trust-badges-wrap { margin: 0 28px; }
}

@media (min-width: 1200px) {
    .app-container { max-width: 1240px; }
    #serviceGrid { grid-template-columns: 1fr 1fr 1fr; gap: 14px 18px; }
    #serviceGrid > .svc-section-title,
    #serviceGrid > .svc-divider,
    #serviceGrid > .featured-card,
    #serviceGrid > .service-no-result {
        grid-column: 1 / -1;
    }
    .gr-list { grid-template-columns: 1fr 1fr 1fr; }
    .whatsapp-widget { right: calc(50vw - 620px + 16px); }
}
