/* ====================================
   Soul & Beauty - Mobile App Styles
   Dark Theme - Luxury Minimalist (YSL Inspired)
   ==================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #262626;
    --bg-elevated: #252525;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --accent-primary: #ffffff;
    --accent-secondary: #e0e0e0;
    --accent-gradient: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    
    --border-color: #2a2a2a;
    --border-light: #333333;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Typography System - Helvetica Luxury Style */
    --font-primary: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    --font-display: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    --font-body: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    --font-accent: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    
    /* Font weights */
    --weight-thin: 100;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Letter spacing for luxury feel */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;
    --tracking-widest: 0.2em;
    
    --header-height: 60px;
    --nav-height: 70px;
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-normal);
    /* Prevent pull-to-refresh */
    overscroll-behavior-y: contain;
    /* Safe area for notch devices */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Prevent zoom on input focus (iOS) */
input, select, textarea {
    font-size: 16px !important;
    touch-action: manipulation;
}

/* Prevent double-tap zoom */
button, a, .clickable {
    touch-action: manipulation;
}

/* Typography Base - Luxury Minimalist */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--weight-light);
    line-height: 1.2;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

h1 { font-size: 24px; letter-spacing: var(--tracking-wider); }
h2 { font-size: 20px; letter-spacing: var(--tracking-wide); }
h3 { font-size: 16px; letter-spacing: var(--tracking-wide); }
h4 { font-size: 14px; }

p {
    font-family: var(--font-body);
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-normal);
}

a {
    font-family: inherit;
    letter-spacing: inherit;
}

button {
    font-family: var(--font-accent);
    font-weight: var(--weight-regular);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

input, select, textarea {
    font-family: var(--font-body);
    font-weight: var(--weight-light);
}

.hidden {
    display: none !important;
}

/* ====================================
   Splash Screen
   ==================================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 2s forwards;
}

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

.splash-logo {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease-in-out infinite;
    overflow: hidden;
}

.splash-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.splash-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: var(--weight-light);
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
}

.splash-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--weight-light);
    color: var(--text-secondary);
    margin-bottom: 32px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.splash-loader {
    width: 200px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    animation: loading 2s ease-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes fadeOut {
    to { 
        opacity: 0; 
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ====================================
   App Container
   ==================================== */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ====================================
   Header
   ==================================== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0px);
}

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

.back-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: background 0.2s;
}

.back-btn:active {
    background: var(--bg-tertiary);
}

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

.logo .logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.logo span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

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

.icon-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all 0.2s;
}

.icon-btn:active {
    transform: scale(0.95);
    background: var(--bg-card);
}

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

/* Breadcrumb Navigation */
.breadcrumb {
    position: fixed;
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 99;
    padding: 10px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
}

.breadcrumb-item {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-item:hover {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    color: var(--accent-primary);
    font-weight: var(--weight-medium);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 10px;
}

/* Search Filters */
.search-filters {
    background: var(--bg-primary);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: -16px -16px 16px -16px;
}

.search-input-large {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
}

.search-input-large i {
    color: var(--text-muted);
    font-size: 16px;
}

.search-input-large input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

.search-input-large input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    width: 36px;
    height: 36px;
    background: var(--accent-primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, opacity 0.2s;
}

.search-btn:active {
    transform: scale(0.95);
}

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

.filters-row::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-chip i {
    font-size: 12px;
}

.filter-chip:hover {
    border-color: var(--text-muted);
}

.filter-chip.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
}

.categories-filter {
    align-items: center;
}

.filter-label {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.filter-select {
    flex: 1;
    max-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 12px;
    cursor: pointer;
    outline: none;
}

.filter-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.location-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 14px;
}

.location-input-row i {
    color: var(--accent-primary);
    font-size: 14px;
}

.location-input-row input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.location-input-row input::placeholder {
    color: var(--text-muted);
}

.search-location-btn {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-location-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
}

.search-location-btn:active {
    transform: scale(0.95);
}

/* Page Title Bar */
.page-title-bar {
    padding: 16px;
    background: var(--bg-primary);
}

.page-title-bar h2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

/* ====================================
   Main Content
   ==================================== */
.main-content {
    flex: 1;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 8px);
    padding-bottom: calc(var(--nav-height) + var(--safe-area-bottom) + 16px);
    overflow-y: auto;
}

.main-content.with-breadcrumb {
    padding-top: calc(var(--header-height) + 44px + env(safe-area-inset-top, 0px));
}

.view {
    display: none;
    padding: 0 16px;
    animation: fadeIn 0.3s ease-out;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   Search Section
   ==================================== */
.search-section {
    margin-bottom: 24px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    transition: border-color 0.2s;
}

.search-box:focus-within {
    border-color: var(--accent-primary);
}

.search-box i {
    color: var(--text-muted);
    font-size: 16px;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

/* ====================================
   Sections
   ==================================== */
.section {
    margin-bottom: 32px;
}

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

.section-header h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: var(--weight-regular);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.badge-hot {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: var(--weight-regular);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.badge-hot i {
    font-size: 10px;
}

/* ====================================
   Categories Grid
   ==================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.category-card {
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s;
}

.category-card:active {
    transform: scale(0.97);
}

.category-card:active::before {
    opacity: 1;
}

.category-card img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.category-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card span {
    font-size: 10px;
    font-weight: var(--weight-regular);
    color: var(--text-secondary);
    text-align: center;
    padding: 0 8px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

/* ====================================
   Promotions Carousel
   ==================================== */
.promotions-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.promotions-carousel::-webkit-scrollbar {
    display: none;
}

.promo-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.promo-card:active {
    transform: scale(0.98);
}

.promo-image {
    position: relative;
    height: 160px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--error);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: var(--weight-semibold);
}

.promo-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.promo-favorite.active {
    color: var(--error);
}

.promo-favorite.active i {
    font-weight: 900;
}

.promo-content {
    padding: 14px;
}

.promo-title {
    font-size: 13px;
    font-weight: var(--weight-regular);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: var(--tracking-normal);
}

.promo-provider {
    font-size: 11px;
    font-weight: var(--weight-light);
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: var(--tracking-normal);
}

.provider-mini-logo {
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

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

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

.promo-price .old-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.promo-price .new-price {
    font-size: 16px;
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
}

.promo-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}

.promo-rating i {
    color: var(--warning);
}

/* ====================================
   Services List
   ==================================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card {
    display: flex;
    gap: 14px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.service-card:active {
    background: var(--bg-card-hover);
    transform: scale(0.99);
}

.service-image {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.service-name {
    font-size: 15px;
    font-weight: var(--weight-semibold);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.service-price {
    font-size: 16px;
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}

.service-rating i {
    color: var(--warning);
    font-size: 11px;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ====================================
   Subcategories Grid
   ==================================== */
.subcategories-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subcategory-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.subcategory-card:active {
    background: var(--bg-card-hover);
}

.subcategory-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subcategory-info {
    flex: 1;
}

.subcategory-name {
    font-size: 16px;
    font-weight: var(--weight-semibold);
    margin-bottom: 6px;
}

.subcategory-desc {
    font-size: 13px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subcategory-arrow {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

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

.prestaservice-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.prestaservice-card:active {
    transform: scale(0.97);
}

.prestaservice-image {
    position: relative;
    aspect-ratio: 4/3;
}

.prestaservice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestaservice-content {
    padding: 12px;
}

.prestaservice-name {
    font-size: 13px;
    font-weight: var(--weight-semibold);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prestaservice-provider {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.prestaservice-price {
    font-size: 15px;
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
}

/* ====================================
   Prestations List
   ==================================== */
.prestations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prestation-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.prestation-card:active {
    transform: scale(0.99);
}

.prestation-header {
    position: relative;
    height: 180px;
}

.prestation-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestation-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.prestation-badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: var(--weight-semibold);
}

.prestation-badge.promo {
    background: var(--error);
}

.prestation-badge.salon {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.prestation-badge.domicile {
    background: var(--success);
}

.prestation-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestation-fav.active {
    color: var(--error);
}

.prestation-content {
    padding: 16px;
}

.prestation-title {
    font-size: 15px;
    font-weight: var(--weight-regular);
    margin-bottom: 6px;
    letter-spacing: var(--tracking-normal);
}

.prestation-album {
    font-size: 12px;
    font-weight: var(--weight-light);
    color: var(--accent-secondary);
    margin-bottom: 8px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.prestation-desc {
    font-size: 12px;
    font-weight: var(--weight-light);
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prestation-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.provider-avatar {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: var(--weight-semibold);
    color: var(--bg-primary);
    overflow: hidden;
    flex-shrink: 0;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-info {
    flex: 1;
}

.provider-name {
    font-size: 14px;
    font-weight: var(--weight-medium);
}

.provider-salon {
    font-size: 12px;
    color: var(--text-muted);
}

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

.prestation-price {
    display: flex;
    flex-direction: column;
}

.prestation-price .old {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.prestation-price .current {
    font-size: 20px;
    font-weight: var(--weight-bold);
    color: var(--accent-primary);
}

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

.prestation-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.prestation-rating i {
    color: var(--warning);
}

.prestation-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ====================================
   Album Detail View
   ==================================== */
.album-detail {
    padding-bottom: 100px;
}

.album-gallery {
    position: relative;
    margin: 0 -16px 20px;
    height: 280px;
}

.gallery-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    transition: all 0.2s;
}

.gallery-dot.active {
    width: 24px;
    background: var(--text-primary);
}

.gallery-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px;
    margin: 0 -16px 20px;
    scrollbar-width: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.gallery-thumb.active {
    border-color: var(--accent-primary);
}

.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb.video-thumb {
    position: relative;
}

.gallery-thumb.video-thumb::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: var(--text-primary);
    font-size: 14px;
}

.album-header {
    margin-bottom: 20px;
}

.album-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-tertiary);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: var(--weight-regular);
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.album-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: var(--weight-light);
    margin-bottom: 8px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.album-subtitle {
    font-size: 13px;
    font-weight: var(--weight-light);
    color: var(--accent-secondary);
    margin-bottom: 12px;
}

.album-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.album-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: var(--weight-regular);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.album-tag.salon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-secondary);
}

.album-tag.domicile {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.album-tag.promo {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.album-pricing {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.album-old-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.album-price {
    font-size: 32px;
    font-weight: var(--weight-bold);
    color: var(--accent-primary);
}

.album-price span {
    font-size: 16px;
    font-weight: var(--weight-regular);
}

.album-section {
    margin-bottom: 24px;
}

.album-section-title {
    font-size: 18px;
    font-weight: var(--weight-semibold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.album-section-title i {
    color: var(--accent-primary);
    font-size: 16px;
}

.album-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-line;
}

.album-provider-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.album-provider-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: var(--weight-semibold);
    color: var(--bg-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.album-provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-provider-info {
    flex: 1;
}

.album-provider-name {
    font-size: 16px;
    font-weight: var(--weight-semibold);
    margin-bottom: 4px;
}

.album-provider-salon {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.album-provider-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.album-provider-rating .stars {
    display: flex;
    gap: 2px;
}

.album-provider-rating .stars i {
    color: var(--warning);
    font-size: 12px;
}

.album-provider-rating span {
    font-size: 13px;
    color: var(--text-secondary);
}

.album-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.album-info-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.album-info-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.album-info-text {
    flex: 1;
}

.album-info-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.album-info-value {
    font-size: 14px;
    font-weight: var(--weight-medium);
}

/* Other Prestations */
.other-prestations {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 0 -16px;
    padding: 0 16px;
    scrollbar-width: none;
}

.other-prestations::-webkit-scrollbar {
    display: none;
}

.other-presta-card {
    flex: 0 0 160px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.other-presta-card:active {
    transform: scale(0.98);
}

.other-presta-image {
    height: 100px;
}

.other-presta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-presta-content {
    padding: 10px;
}

.other-presta-name {
    font-size: 12px;
    font-weight: var(--weight-medium);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.other-presta-price {
    font-size: 14px;
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
}

/* Fixed Book Button */
.book-btn-container {
    position: fixed;
    bottom: calc(var(--nav-height) + var(--safe-area-bottom) + 16px);
    left: 16px;
    right: 16px;
    z-index: 90;
}

.book-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-primary);
    border: none;
    border-radius: 0;
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--weight-regular);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--text-secondary);
}

.book-btn:active {
    transform: scale(0.98);
}

/* ====================================
   Favorites View
   ==================================== */
.favorites-empty {
    text-align: center;
    padding: 60px 20px;
}

.favorites-empty i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.favorites-empty h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.favorites-empty p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ====================================
   Search Results
   ==================================== */
.search-header {
    margin-bottom: 20px;
}

.search-header h3 {
    font-size: 16px;
    color: var(--text-secondary);
}

.search-header span {
    color: var(--accent-primary);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ====================================
   Bottom Navigation
   ==================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: flex;
    padding-bottom: var(--safe-area-bottom);
    z-index: 100;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: var(--weight-regular);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.nav-item i {
    font-size: 18px;
    transition: transform 0.2s;
}

.nav-item.active {
    color: var(--accent-primary);
}

.nav-item.active i {
    transform: scale(1.1);
}

.fav-count {
    position: absolute;
    top: 8px;
    right: calc(50% - 20px);
    min-width: 18px;
    height: 18px;
    background: var(--error);
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: var(--weight-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ====================================
   Loading Overlay
   ==================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

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

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

/* ====================================
   Toast Notifications
   ==================================== */
.toast-container {
    position: fixed;
    bottom: calc(var(--nav-height) + var(--safe-area-bottom) + 20px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    pointer-events: none;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.3s ease-out;
    pointer-events: auto;
}

.toast.success {
    border-color: var(--success);
}

.toast.error {
    border-color: var(--error);
}

.toast i {
    font-size: 18px;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--error);
}

.toast span {
    font-size: 14px;
}

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

/* ====================================
   Image Modal
   ==================================== */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.modal-content {
    max-width: 100%;
    max-height: 80vh;
    padding: 20px;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
}

.modal-prev,
.modal-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
}

/* ====================================
   Responsive Adjustments
   ==================================== */
@media (max-width: 360px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-card {
        flex: 0 0 250px;
    }
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ====================================
   Skeleton Loading
   ==================================== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 200px;
}

.skeleton-text {
    height: 16px;
    width: 100%;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

/* ====================================
   Reviews Modal
   ==================================== */
.reviews-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

.reviews-modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

.reviews-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.reviews-modal-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: var(--weight-semibold);
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: var(--bg-card-hover);
}

.reviews-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    padding-bottom: calc(20px + var(--safe-area-bottom));
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 12px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: var(--weight-semibold);
    color: var(--bg-primary);
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 15px;
    font-weight: var(--weight-medium);
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: var(--warning);
    font-size: 12px;
}

.review-comment {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.no-reviews i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.no-reviews h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* ====================================
   Provider Page
   ==================================== */
.provider-page {
    padding-bottom: 20px;
}

.provider-header {
    text-align: center;
    padding: 20px 0 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.provider-header-avatar {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: var(--weight-semibold);
    color: var(--bg-primary);
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid var(--border-light);
}

.provider-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-header-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: var(--weight-semibold);
    margin-bottom: 8px;
}

.provider-header-salon {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

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

.provider-stat {
    text-align: center;
}

.provider-stat-value {
    font-size: 20px;
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
}

.provider-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.provider-rating-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.provider-rating-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

.provider-rating-btn .stars {
    display: flex;
    gap: 2px;
}

.provider-rating-btn .stars i {
    color: var(--warning);
    font-size: 14px;
}

.provider-section-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: var(--weight-semibold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-section-title i {
    color: var(--accent-primary);
}

/* Clickable rating in album detail */
.album-provider-rating {
    cursor: pointer;
    transition: opacity 0.2s;
}

.album-provider-rating:hover {
    opacity: 0.8;
}

/* Clickable provider card */
.album-provider-card {
    cursor: pointer;
    transition: all 0.2s;
}

.album-provider-card:hover {
    background: var(--bg-card-hover);
}

/* ====================================
   Empty States
   ==================================== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    min-height: 300px;
    width: 100%;
    margin: 0 auto;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-state-icon i {
    font-size: 40px;
    color: var(--text-muted);
}

.empty-state-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-state-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.empty-state-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

/* ====================================
   Infinite Scroll Loader
   ==================================== */
.scroll-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    gap: 8px;
}

.scroll-loader-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

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

.load-more-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 16px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.load-more-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.end-of-list {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ====================================
   Info Page - Compact Design
   ==================================== */
.info-page {
    padding-bottom: 30px;
}

/* Hero Section with Background Image */
.info-hero-compact {
    position: relative;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
}

.info-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.info-hero-overlay h2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: var(--weight-light);
    color: white;
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.info-hero-overlay p {
    font-size: 11px;
    font-weight: var(--weight-light);
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.info-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #0a0a0a;
    padding: 16px 32px;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--weight-regular);
    letter-spacing: 0.15em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.info-phone-btn:hover {
    background: #e0e0e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.info-phone-btn:active {
    transform: scale(0.98);
}

.info-phone-btn i {
    font-size: 14px;
    color: #22c55e;
}

/* Sections */
.info-section {
    margin-bottom: 24px;
}

.info-section-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.info-section-title i {
    color: var(--accent-primary);
    font-size: 12px;
}

/* Social Media Row */
.info-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.info-social-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.info-social-btn i {
    font-size: 20px;
    color: white;
}

.info-social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.info-social-btn.tiktok {
    background: #000000;
}

.info-social-btn.facebook {
    background: #1877f2;
}

.info-social-btn.website {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.info-social-btn.website i {
    color: var(--text-primary);
}

.info-social-btn.email {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.info-social-btn.email i {
    color: var(--text-primary);
}

.info-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Compact Links */
.info-links-compact {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.info-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    text-decoration: none;
    transition: background 0.2s;
}

.info-link-item:hover {
    background: var(--bg-card-hover);
}

.info-link-item > i:first-child {
    width: 20px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.info-link-item > span {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
}

.info-link-item > i:last-child {
    font-size: 10px;
    color: var(--text-muted);
}

/* Version Footer */
.info-version {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 20px;
    color: var(--text-muted);
    font-size: 12px;
}

.info-version-logo {
    width: 36px;
    height: 36px;
    opacity: 0.5;
}

.info-version span:first-of-type {
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
}

.info-version-number {
    font-size: 10px;
}
