/* Variables CSS pour les couleurs principales */
:root {
    --primary-blue: #6366f1;
    --primary-pink: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #6366f1, #3b82f6);
    --text-dark: #222222;
    --text-light: #717171;
    --background-white: #ffffff;
    --border-light: #ebebeb;
    --border-lighter: #f0f0f0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background-white);
    color: var(--text-dark);
    line-height: 1.5;
}

/* Header */
.header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-light);
    padding: 0 60px;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
}

.logo .spiitz-text {
    color: var(--text-dark);
}

.logo .i-blue {
    color: var(--primary-blue);
}

.logo .i-pink {
    color: var(--primary-pink);
}

.back-btn {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.back-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.login-btn {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.login-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Header pour la page messages */
.header .page-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    flex: 1;
}

/* Navigation */
.nav {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-light);
    padding: 0 60px;
    margin-top: 52px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    height: 32px;
    align-items: center;
}

.nav-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--primary-pink);
    border-bottom-color: var(--primary-pink);
}

.nav-icon {
    font-size: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-search {
    margin-bottom: 50px;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box i {
    padding: 15px 20px;
    color: #666;
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #3b82f6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.view-all-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #3b82f6;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Styles spécifiques pour les autres pages (pas la page d'accueil) */
.places-grid:not(.home-places-grid) .place-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.places-grid:not(.home-places-grid) .place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.places-grid:not(.home-places-grid) .place-card.featured {
    border: 2px solid #6366f1;
}

.places-grid:not(.home-places-grid) .place-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.places-grid:not(.home-places-grid) .place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.places-grid:not(.home-places-grid) .place-card:hover .place-image img {
    transform: scale(1.05);
}

.places-grid:not(.home-places-grid) .place-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #6366f1;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.places-grid:not(.home-places-grid) .place-badge.new {
    background: #00a699;
}

.places-grid:not(.home-places-grid) .place-content {
    padding: 20px;
}

.places-grid:not(.home-places-grid) .place-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.places-grid:not(.home-places-grid) .place-location {
    color: #717171;
    font-size: 14px;
    margin-bottom: 12px;
}

.places-grid:not(.home-places-grid) .place-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.places-grid:not(.home-places-grid) .place-type {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.places-grid:not(.home-places-grid) .place-announcements {
    color: #6366f1;
    font-size: 12px;
    font-weight: 600;
}

.places-grid:not(.home-places-grid) .place-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.places-grid:not(.home-places-grid) .stars {
    display: flex;
    gap: 2px;
}

.places-grid:not(.home-places-grid) .stars i {
    color: #ffc107;
    font-size: 14px;
}

.places-grid:not(.home-places-grid) .rating-text {
    color: #717171;
    font-size: 12px;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: white;
    color: #6366f1;
}

.category-icon i {
    font-size: 24px;
    color: white;
    transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
    color: #6366f1;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px 0;
}

.author-location {
    font-size: 14px;
    color: #717171;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #6366f1;
    color: white;
}

.cta-btn.primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #222;
    transform: translateY(-2px);
}

/* Main Content */
.main {
    padding: 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* Main Content spécifique pour lieu-detail.php */
.main.lieu-detail {
    background: white;
    border-radius: 20px 20px 20px 20px;
    margin-top: -200px;
    position: relative;
    z-index: 5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding-bottom: 200px;
}

/* Main Content spécifique pour index.php */
.main.index {
    margin-top: 84px;
    padding-top: 40px;
}

/* Main Content spécifique pour lieux.php */
.main.lieux {
    margin-top: 84px;
    padding-top: 40px;
}

/* Main Content spécifique pour membres.php */
.main.membres {
    margin-top: 84px;
    padding-top: 40px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.stats-block {
    background: linear-gradient(rgba(255, 56, 92, 0.9), rgba(227, 28, 95, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    border: none;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(255, 56, 92, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: 1;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.stats-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #717171;
}

/* Places Section */
.places-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.places-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 24px;
}

.places-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.place-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 220px;
    flex-shrink: 0;
}

.place-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.place-card a {
    text-decoration: none;
    color: inherit;
}

.place-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    position: relative;
}

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

.place-type {
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.place-info {
    padding: 30px 0 20px;
}

.place-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.place-city {
    color: #717171;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Variables CSS pour les couleurs principales */
:root {
    --primary-blue: #6366f1;
    --primary-pink: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #6366f1, #3b82f6);
    --text-dark: #222222;
    --text-light: #717171;
    --background-white: #ffffff;
    --border-light: #ebebeb;
    --border-lighter: #f0f0f0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background-white);
    color: var(--text-dark);
    line-height: 1.5;
}

/* Header */
.header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-light);
    padding: 0 60px;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
}

.logo .spiitz-text {
    color: var(--text-dark);
}

.logo .i-blue {
    color: var(--primary-blue);
}

.logo .i-pink {
    color: var(--primary-pink);
}

.back-btn {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.back-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.login-btn {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.login-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Header pour la page messages */
.header .page-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    flex: 1;
}

/* Navigation */
.nav {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-light);
    padding: 0 60px;
    margin-top: 52px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    height: 32px;
    align-items: center;
}

.nav-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--primary-pink);
    border-bottom-color: var(--primary-pink);
}

.nav-icon {
    font-size: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-search {
    margin-bottom: 50px;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box i {
    padding: 15px 20px;
    color: #666;
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #3b82f6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.view-all-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #3b82f6;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Styles spécifiques pour les autres pages (pas la page d'accueil) */
.places-grid:not(.home-places-grid) .place-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.places-grid:not(.home-places-grid) .place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.places-grid:not(.home-places-grid) .place-card.featured {
    border: 2px solid #6366f1;
}

.places-grid:not(.home-places-grid) .place-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.places-grid:not(.home-places-grid) .place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.places-grid:not(.home-places-grid) .place-card:hover .place-image img {
    transform: scale(1.05);
}

.places-grid:not(.home-places-grid) .place-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #6366f1;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.places-grid:not(.home-places-grid) .place-badge.new {
    background: #00a699;
}

.places-grid:not(.home-places-grid) .place-content {
    padding: 20px;
}

.places-grid:not(.home-places-grid) .place-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.places-grid:not(.home-places-grid) .place-location {
    color: #717171;
    font-size: 14px;
    margin-bottom: 12px;
}

.places-grid:not(.home-places-grid) .place-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.places-grid:not(.home-places-grid) .place-type {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.places-grid:not(.home-places-grid) .place-announcements {
    color: #6366f1;
    font-size: 12px;
    font-weight: 600;
}

.places-grid:not(.home-places-grid) .place-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.places-grid:not(.home-places-grid) .stars {
    display: flex;
    gap: 2px;
}

.places-grid:not(.home-places-grid) .stars i {
    color: #ffc107;
    font-size: 14px;
}

.places-grid:not(.home-places-grid) .rating-text {
    color: #717171;
    font-size: 12px;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: white;
    color: #6366f1;
}

.category-icon i {
    font-size: 24px;
    color: white;
    transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
    color: #6366f1;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px 0;
}

.author-location {
    font-size: 14px;
    color: #717171;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #6366f1;
    color: white;
}

.cta-btn.primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #222;
    transform: translateY(-2px);
}

/* Main Content */
.main {
    padding: 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* Main Content spécifique pour lieu-detail.php */
.main.lieu-detail {
    background: white;
    border-radius: 20px 20px 20px 20px;
    margin-top: -200px;
    position: relative;
    z-index: 5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding-bottom: 200px;
}

/* Main Content spécifique pour index.php */
.main.index {
    margin-top: 84px;
    padding-top: 40px;
}

/* Main Content spécifique pour lieux.php */
.main.lieux {
    margin-top: 84px;
    padding-top: 40px;
}

/* Main Content spécifique pour membres.php */
.main.membres {
    margin-top: 84px;
    padding-top: 40px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.stats-block {
    background: linear-gradient(rgba(255, 56, 92, 0.9), rgba(227, 28, 95, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    border: none;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(255, 56, 92, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: 1;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.stats-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #717171;
}

/* Places Section */
.places-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.places-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 24px;
}

.places-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.place-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 220px;
    flex-shrink: 0;
}

.place-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.place-card a {
    text-decoration: none;
    color: inherit;
}

.place-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    position: relative;
}

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

.place-type {
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.place-info {
    padding: 30px 0 20px;
}

.place-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.place-city {
    color: #717171;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-distance {
    color: #717171;
    font-size: 12px;
    margin-left: auto;
}

.place-city i {
    font-size: 12px;
    color: #6366f1;
}

.place-announcements {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.place-announcements i {
    font-size: 12px;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    justify-content: flex-end;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 80px;
}

.action-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 120px;
    flex: 1;
    max-width: 400px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.action-btn-content {
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.action-btn-text {
    flex: 1;
}

.action-btn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.action-btn-desc {
    font-size: 14px;
    color: #717171;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav-item a {
    color: #717171;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: color 0.2s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a.active {
    color: #6366f1;
}

.mobile-nav-icon {
    font-size: 18px;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ebebeb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.search-input:focus {
    border-color: #6366f1;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 18px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 24px;
}

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

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.view-toggle-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-toggle-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
    color: #6366f1;
}

.filters-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: #717171;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Place Info - Styles spécifiques pour lieu-detail.php */
.place-info {
    padding: 30px 0 20px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 30px;
}

.place-title-section {
    flex: 1;
}

.place-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.place-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.place-trend {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.place-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 0 30px;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

.place-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 0 30px;
}

/* Photos Gallery */
.photos-gallery {
    margin: 16px 0;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Warning Message */
.warning-message {
    text-align: center;
    margin: 16px 0;
    padding: 16px 20px;
    background: #dc3545;
    color: white;
    border-radius: 0;
    font-size: 13px;
    width: 100%;
}

/* Announcements */
.announcements-section {
    margin-bottom: 16px;
    text-align: left !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section-header {
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    margin-bottom: 24px;
    text-align: left !important;
    padding: 0 !important;
    margin-left: 0 !important;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: left !important;
    margin-left: 0 !important;
}

.announcements-count {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: left !important;
    margin-left: 0 !important;
}

.announcements-list {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.announcement-item {
    display: flex;
    gap: 12px;
    text-align: left !important;
    margin: 0 0 4px 0 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid var(--border-lighter);
    transition: all 0.2s ease;
    cursor: pointer;
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-item:hover {
    background: #f8f9fa;
}

.announcement-image {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.announcement-content {
    flex: 1;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.announcement-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    text-align: left !important;
    margin-left: 0 !important;
}

.announcement-date {
    font-size: 12px;
    color: var(--text-light);
    text-align: left !important;
    margin-left: 0 !important;
}

/* View all button */
.view-all-btn {
    background: #ffffff;
    color: #222222;
    border: 1px solid #ebebeb;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 16px auto 0 !important;
    display: block;
    text-align: center !important;
}

.view-all-btn:hover {
    background: #f8f9fa;
    border-color: #6366f1;
}

/* Address Section */
.address-section {
    text-align: center;
    margin: 8px 0;
}

.address-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.address-icon {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 4px;
}

.address-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Place Meta Info */
.place-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 32px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
}

.place-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.place-author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.place-author-date {
    font-size: 13px;
    color: var(--text-light);
}

.place-stats {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.place-favorites {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

/* Section separators */
.section-separator {
    height: 1px;
    background: var(--border-lighter);
    margin: 16px 0;
}

/* Author Section */
.author-section {
    margin-bottom: 32px;
}

.author-info {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-status {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.author-announcements {
    font-size: 13px;
    color: var(--text-light);
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Event Details */
.event-details {
    margin-bottom: 32px;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.event-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.event-info-item i {
    font-size: 20px;
    color: var(--primary-pink);
    margin-top: 2px;
}

.event-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.event-info-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin-bottom: 32px;
}

.contact-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Template Blocks */
.deposer-annonce-block,
.repondre-annonce-block {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.deposer-annonce-block:hover,
.repondre-annonce-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.deposer-annonce-content,
.repondre-annonce-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deposer-annonce-icon,
.repondre-annonce-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.deposer-annonce-text,
.repondre-annonce-text {
    flex: 1;
}

.deposer-annonce-title,
.repondre-annonce-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.deposer-annonce-desc,
.repondre-annonce-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--background-white);
    color: var(--text-dark);
    padding: 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-light);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer-content {
    width: 100%;
}

.footer-main {
    background: var(--background-white);
    color: var(--text-dark);
    padding: 16px 80px;
    width: 100%;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    margin-right: 16px;
}

.footer-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.footer-menu-toggle {
    background: #333333;
    color: white;
    border: 1px solid #444444;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.footer-menu-toggle:hover {
    background: #444444;
    border-color: #555555;
}

.footer-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-medium);
    min-width: 200px;
    display: none;
    z-index: 1000;
    margin-bottom: 8px;
}

.footer-dropdown.show {
    display: block;
}

.footer-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.footer-dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-pink);
}

.footer-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.footer-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.footer-menu-container {
    position: relative;
}

/* Add bottom padding to main content to account for fixed footer */
.main {
    padding-bottom: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header, .nav, .main, .footer-main {
        padding-left: 40px;
        padding-right: 40px;
    }

    .action-buttons {
        right: 40px;
        padding: 0 40px;
    }

    .warning-message {
        margin: 24px 20px;
    }
    
    .main {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .header, .nav, .main, .footer-main {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header {
        height: 48px;
    }

    .nav {
        margin-top: 48px;
        height: 36px;
    }

    .nav-list {
        height: 36px;
        gap: 25px;
    }

    .nav-item a {
        font-size: 11px;
        padding: 4px 0;
    }

    .nav-icon {
        font-size: 10px;
    }

    .hero-section {
        margin-top: 48px;
    }

    .action-buttons {
        right: 24px;
        padding: 0 24px;
        gap: 6px;
        top: 50px;
    }

    .nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .main {
        margin-top: -100px;
        padding: 60px 24px 20px;
    }

    .main.lieu-detail {
        padding: 60px 24px 120px;
    }

    .main.index {
        margin-top: 84px;
        padding-top: 30px;
    }

    .main.lieux {
        margin-top: 84px;
        padding-top: 30px;
    }

    .main.membres {
        margin-top: 84px;
        padding-top: 30px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .place-title {
        font-size: 24px;
    }

    .place-header {
        flex-direction: column;
        gap: 16px;
        margin-top: -40px;
        padding: 0 20px;
    }

    .place-rating {
        padding: 0 20px;
    }

    .place-description {
        padding: 0 20px;
    }

    .stats-number {
        font-size: 36px;
    }

    .stats-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .place-card {
        min-width: 250px;
    }

    .action-buttons {
        flex-direction: row;
        gap: 16px;
    }

    .action-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 8px;
    }

    .announcement-item {
        margin: 0 20px 8px;
    }

    .footer-menu {
        gap: 12px;
    }

    .footer-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-right: 12px;
    }

    .footer-menu-toggle {
        width: 44px;
        height: 44px;
        padding: 12px;
    }

    .place-meta-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .place-stats {
        text-align: center;
    }

    .content-wrapper {
        padding: 0 20px;
    }

    .warning-message {
        margin: 16px 0;
        width: 100%;
    }

    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
    }

    .author-stats {
        justify-content: center;
    }

    .place-content {
        padding: 25px 0 16px;
        margin-top: -15px;
    }

    .place-description {
        padding: 0 16px;
    }

    .announcements-section {
        padding: 0 16px;
    }

    .place-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Mobile list view for places */
    .places-grid.mobile-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .place-card.mobile-list {
        display: flex !important;
        flex-direction: row !important;
        min-width: auto;
        height: auto;
        min-height: 100px;
        align-items: stretch;
    }

    .place-card.mobile-list a {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        height: 100%;
    }

    .place-card.mobile-list .place-image {
        width: 100px !important;
        height: 100px !important;
        flex-shrink: 0 !important;
        min-width: 100px !important;
        align-self: stretch;
    }

    .place-card.mobile-list .place-info-card {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between;
        padding: 12px 12px 12px 18px;
        min-width: 0;
    }

    .place-card.mobile-list .place-name {
        font-size: 14px;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .place-card.mobile-list .place-city {
        font-size: 11px;
        margin-bottom: 6px;
        color: #717171;
    }

    .place-card.mobile-list .place-announcements {
        font-size: 10px;
        margin-bottom: 6px;
        color: #6366f1;
    }

    .place-card.mobile-list .place-rating-card {
        align-self: flex-end;
        font-size: 11px;
    }

    .place-card.mobile-list .place-type {
        font-size: 9px;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .member-image {
        height: 160px;
    }

    .member-info {
        padding: 10px;
    }

    .member-pseudo {
        font-size: 13px;
    }

    .member-age {
        font-size: 11px;
    }

    .member-location {
        font-size: 11px;
    }
}

.place-rating-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}
.place-rating-badge .fa-star {
    color: #ffc107;
    font-size: 12px;
    margin-right: 2px;
}

/* Styles spécifiques pour les cartes des lieux uniquement */
.places-grid .place-card .place-info-card {
    padding-left: 18px;
}

.places-grid .place-card .place-type {
    font-size: 12px;
    padding: 6px 12px;
}

/* Pour le mode grid : note à droite dans le contenu */
.places-grid .place-card .place-rating-card {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Styles spécifiques pour les cartes des membres */
.members-grid .member-card .member-info {
    padding: 16px 18px;
}

/* Pour le mode mobile-list : type plus petit */
.place-card.mobile-list .place-type {
    font-size: 9px;
    padding: 3px 6px;
    top: 8px;
    left: 8px;
}

/* Members Section */
.members-section {
    margin-bottom: 40px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.member-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.member-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.member-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-status {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.member-status.online {
    background: #28a745;
}

.member-status.offline {
    background: #6c757d;
}

.member-info {
    padding: 16px;
}

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

.member-pseudo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.member-age {
    font-size: 14px;
    color: var(--text-light);
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
}

.member-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.member-location i {
    color: var(--primary-pink);
    font-size: 12px;
}

/* Mobile list view for members */
.members-grid.mobile-list {
    grid-template-columns: 1fr;
    gap: 16px;
}

.member-card.mobile-list {
    display: flex !important;
    flex-direction: row !important;
    min-width: auto;
    height: auto;
    min-height: 100px;
    align-items: stretch;
}

.member-card.mobile-list a {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    height: 100%;
}

.member-card.mobile-list .member-image {
    width: 100px !important;
    height: 100px !important;
    flex-shrink: 0 !important;
    min-width: 100px !important;
    align-self: stretch;
}

.member-card.mobile-list .member-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
    padding: 12px;
    min-width: 0;
}

.member-card.mobile-list .member-pseudo {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.member-card.mobile-list .member-age {
    font-size: 11px;
    margin-bottom: 6px;
}

.member-card.mobile-list .member-location {
    font-size: 11px;
    color: #717171;
}

/* Responsive for members */
@media (max-width: 1024px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .member-image {
        height: 180px;
    }

    .member-info {
        padding: 12px;
    }

    .member-pseudo {
        font-size: 14px;
    }

    .member-age {
        font-size: 12px;
    }

    .member-location {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .member-image {
        height: 160px;
    }

    .member-info {
        padding: 10px;
    }

    .member-pseudo {
        font-size: 13px;
    }

    .member-age {
        font-size: 11px;
    }

    .member-location {
        font-size: 11px;
    }
}

/* Messages Page Styles */
.main.messages {
    padding-bottom: 90px;
    padding-top: 90px;
    padding: 0;
    height: calc(100vh - 52px);
    background: white;
    width: 100%;
}

.messages-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 52px);
    background: white;
    width: 100%;
    margin: 0;
    box-shadow: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Messages Header */
.messages-header {
    background: white;
    border-bottom: 1px solid #ebebeb;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.messages-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.messages-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    flex: 1;
}

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

.messages-action-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.messages-action-btn:hover {
    background: #f7f7f7;
    color: #222222;
}

/* Messages Tabs */
.messages-tabs {
    background: white;
    border-bottom: 1px solid #ebebeb;
    padding: 0 20px;
    display: flex;
}

.messages-tab {
    background: transparent;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #717171;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.messages-tab:hover {
    color: #222222;
}

.messages-tab.active {
    color: #222222;
    border-bottom-color: #222222;
}

.messages-tab .tab-count {
    background: #f7f7f7;
    color: #717171;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
}

.messages-tab.active .tab-count {
    background: #222222;
    color: white;
}

/* Messages Filters */
.messages-filters {
    background: white;
    border-bottom: 1px solid #ebebeb;
    padding: 10px 20px;
    display: flex;
    gap: 8px;
}

.messages-filters .filter-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.messages-filters .filter-btn:hover {
    border-color: #222222;
    color: #222222;
}

.messages-filters .filter-btn.active {
    background: #222222;
    border-color: #222222;
    color: white;
}

.messages-filters .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 8px;
    min-width: 14px;
    text-align: center;
}

.messages-filters .filter-btn:not(.active) .filter-count {
    background: #f7f7f7;
    color: #717171;
}

/* Messages Search */
.messages-search {
    background: white;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 20px;
    flex-shrink: 0;
}

.search-wrapper {
    position: relative;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
}

.search-icon {
    color: #717171;
    font-size: 14px;
    margin-right: 8px;
}

.messages-search-input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #222222;
    outline: none;
    width: 100%;
}

.messages-search-input::placeholder {
    color: #717171;
}

/* Conversations List */
.conversations-wrapper {
    flex: 1;
    overflow-y: auto;
    background: white;
}

.conversations-list {
    display: flex;
    flex-direction: column;
}

.conversation-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f7f7f7;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.conversation-card:hover {
    background: #fafafa;
}

.conversation-card:last-child {
    border-bottom: none;
}

.conversation-avatar {
    position: relative;
    flex-shrink: 0;
}

.conversation-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.status-dot.online {
    background: #00c851;
}

.status-dot.offline {
    background: #bdbdbd;
}

.conversation-details {
    flex: 1;
    min-width: 0;
}

.conversation-name {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 2px 0;
}

.conversation-message {
    font-size: 11px;
    color: #717171;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.conversation-time {
    font-size: 10px;
    color: #717171;
    font-weight: 500;
    flex-shrink: 0;
    margin-left: 8px;
}

.annonce-title {
    font-size: 10px;
    color: #6366f1;
    margin: 2px 0 0 0;
    font-weight: 500;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.annonce-icon {
    color: #6366f1;
    font-size: 10px;
    flex-shrink: 0;
}

.unread-indicator {
    background: #6366f1;
    color: white;
    font-size: 8px;
    font-weight: 600;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Conversation Page Styles */
.main.conversation {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: white;
    width: 100%;
}

.conversation-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: white;
    width: 100%;
    margin: 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Conversation Header */
.conversation-header {
    background: white;
    border-bottom: 1px solid #ebebeb;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.conversation-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.conversation-back-btn {
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.conversation-back-btn:hover {
    background: #f7f7f7;
    color: #222222;
}

.conversation-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.conversation-avatar {
    position: relative;
    flex-shrink: 0;
}

.conversation-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.conversation-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.conversation-name {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

.conversation-status {
    font-size: 11px;
    color: #717171;
    font-weight: 400;
}

.conversation-actions {
    display: flex;
    gap: 4px;
}

.conversation-action-btn {
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    color: #717171;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.conversation-action-btn:hover {
    background: #f7f7f7;
    color: #222222;
}

/* Annonce Banner */
.annonce-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid #ebebeb;
    padding: 8px 16px;
    flex-shrink: 0;
}

.annonce-banner-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.annonce-banner-content:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.annonce-banner-content i {
    color: #667eea;
    font-size: 12px;
    flex-shrink: 0;
}

.annonce-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.annonce-label {
    font-size: 9px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.annonce-title {
    color: #222222;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.annonce-title:hover {
    color: #667eea;
}

/* Messages Area */
.messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    background: white;
    display: flex;
    flex-direction: column;
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: 100%;
}

.message.message-mine {
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
}

.avatar-bubble {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-bubble:hover {
    transform: scale(1.05);
}

.avatar-bubble img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.message-bubble {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 5px 8px;
    box-shadow: none;
    position: relative;
    margin-bottom: 1px;
    align-self: flex-start;
}

.message-mine .message-bubble {
    background: #222222;
    color: #ffffff;
    align-self: flex-end;
}

.message-bubble p {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    word-wrap: break-word;
}

.message-time {
    font-size: 8px;
    color: #717171;
    opacity: 0.7;
    display: block;
    margin-left: 4px;
    align-self: flex-start;
    margin-top: 2px;
}

.message-mine .message-time {
    color: #717171;
    margin-left: auto;
    margin-right: 4px;
    text-align: right;
    align-self: flex-end;
    margin-top: 2px;
}

/* Message images */
.message-image {
    padding: 0;
    overflow: hidden;
}

.message-image img {
    max-width: 180px;
    max-height: 180px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block;
}

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

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Message Input */
.message-input-area {
    background: white;
    border-top: 1px solid #ebebeb;
    padding: 12px 16px;
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 6px 12px;
    border: 1px solid #ebebeb;
    max-width: 600px;
    margin: 0 auto;
}

.attachment-btn {
    background: transparent;
    color: #717171;
    border: none;
    padding: 4px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.attachment-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #222222;
}

.message-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 12px;
    line-height: 1.2;
    outline: none;
    font-family: inherit;
    color: #222222;
}

.message-input::placeholder {
    color: #717171;
}

.send-btn {
    background: #222222;
    color: #ffffff;
    border: none;
    padding: 4px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.send-btn:hover {
    background: #000000;
    transform: scale(1.05);
}

/* No photo placeholder for conversation */
.conversation-avatar .no-photo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #ebebeb;
}

.conversation-avatar .no-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.02) 100%);
}

.conversation-avatar .no-photo-placeholder span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #bdbdbd;
    letter-spacing: 2px;
    line-height: 1;
}

.message-avatar .no-photo-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #ebebeb;
}

.message-avatar .no-photo-placeholder span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #bdbdbd;
    letter-spacing: 1px;
    line-height: 1;
}

/* No photo placeholder for members page */
.member-image .no-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #bdbdbd;
    font-size: 3.5rem;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.member-image .no-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.member-image .no-photo-placeholder span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 8px;
    font-weight: 300;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

/* Profile Page Specific Styles - Complete */
.profile-container {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Profile Header - Flat Style */
.profile-header {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.profile-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.profile-header .back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #222222;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    box-shadow: none;
}

.profile-header .back-btn:hover {
    background: #f7f7f7;
}

.profile-header h1 {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

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

.profile-header .action-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #222222;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    box-shadow: none;
}

.profile-header .action-btn:hover {
    background: #f7f7f7;
}

/* Profile Info */
.profile-info {
    padding: 20px 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.profile-photo {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 150px;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-photo img:hover {
    transform: scale(1.05);
}

.profile-no-photo-placeholder.large {
    width: 100%;
    height: 100%;
    font-size: 24px;
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-online-status {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-online-status.online i {
    color: #00a699;
    font-size: 7px;
}

.profile-online-status.offline i {
    color: #717171;
    font-size: 7px;
}

.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 150px;
    min-width: 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-details h2 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.profile-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 12px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.profile-stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.profile-stat-label {
    font-size: 12px;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-search-text {
    font-size: 14px;
    color: #717171;
    font-style: italic;
    line-height: 1.3;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Profile Tabs - Flat Style */
.profile-tabs {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    max-width: 600px;
    margin: 0 auto;
}

.profile-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 8px;
    font-size: 13px;
    color: #717171;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    box-shadow: none;
}

.profile-tab-btn i {
    font-size: 16px;
}

.profile-tab-btn.active {
    color: #222222;
    font-weight: 600;
}

.profile-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #222222;
    border-radius: 1px;
}

/* Profile Tab Content */
.profile-tab-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.profile-tab-pane {
    display: none;
    padding: 20px 0;
}

.profile-tab-pane.active {
    display: block;
}

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

.profile-info-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #ebebeb;
}

.profile-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.profile-info-item i {
    width: 16px;
    color: #717171;
    font-size: 14px;
    flex-shrink: 0;
}

.profile-info-label {
    font-size: 13px;
    color: #717171;
    min-width: 80px;
    flex-shrink: 0;
}

.profile-info-value {
    font-size: 13px;
    color: #222222;
    font-weight: 500;
}

.profile-description-text {
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    margin: 0;
    padding: 12px;
    background: #f7f7f7;
    border-radius: 8px;
}

/* Profile Photos Grid */
.profile-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.profile-photo-item {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-photo-item:hover {
    transform: scale(1.02);
}

.profile-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Témoignages */
.profile-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #717171;
}

.profile-empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.profile-empty-state p {
    font-size: 14px;
    margin: 0;
}

.profile-temoignages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-temoignage-item {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 16px;
}

.profile-temoignage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.profile-temoignage-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-temoignage-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-author-name {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
}

.profile-temoignage-date {
    font-size: 11px;
    color: #717171;
}

.profile-temoignage-text {
    font-size: 13px;
    line-height: 1.4;
    color: #222222;
    margin: 0;
}

/* Profile Placeholder variations */
.profile-no-photo-placeholder.small {
    width: 32px;
    height: 32px;
    font-size: 10px;
    background: #f7f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-weight: bold;
}

/* Profile Footer - Flat Style */
.profile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    padding: 12px 16px;
    z-index: 100;
}

.profile-footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-footer-btn {
    flex: 1;
    background: #222222;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none;
}

.profile-footer-btn:hover {
    background: #000000;
}

.profile-footer-menu {
    position: relative;
}

.profile-footer-menu-toggle {
    background: #f7f7f7;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: none;
}

.profile-footer-menu-toggle:hover {
    background: #ebebeb;
}

.profile-footer-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 8px 0;
    margin-bottom: 8px;
    min-width: 160px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-footer-dropdown.show {
    display: block;
}

.profile-footer-dropdown-item {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #222222;
}

.profile-footer-dropdown-item:hover {
    background: #f7f7f7;
}

.profile-footer-dropdown-item i {
    width: 16px;
    font-size: 12px;
}

/* Profile Responsive */
@media (max-width: 480px) {
    .profile-info {
        padding: 16px;
        gap: 16px;
    }
    
    .profile-photo {
        width: 100px;
        height: 150px;
    }
    
    .profile-no-photo-placeholder.large {
        font-size: 20px;
    }
    
    .profile-details {
        height: 150px;
        flex: 1;
        min-width: 0;
    }
    
    .profile-details h2 {
        font-size: 18px;
    }
    
    .profile-stats {
        gap: 16px;
    }
    
    .profile-stat-value {
        font-size: 14px;
    }
    
    .profile-stat-label {
        font-size: 10px;
    }
    
    .profile-search-text {
        font-size: 12px;
    }
    
    .profile-photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .profile-info-item {
        gap: 8px;
    }
    
    .profile-info-label {
        min-width: 70px;
        font-size: 12px;
    }
    
    .profile-info-value {
        font-size: 12px;
    }
    
    .profile-footer {
        padding: 8px 12px;
    }
    
    .profile-footer-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ===== CSS ISOLÉ POUR LA PAGE D'ACCUEIL ===== */

.home-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #222;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.home-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\'><defs><pattern id=\'grain\' width=\'100\' height=\'100\' patternUnits=\'userSpaceOnUse\'><circle cx=\'25\' cy=\'25\' r=\'1\' fill=\'black\' opacity=\'0.03\'/><circle cx=\'75\' cy=\'75\' r=\'1\' fill=\'black\' opacity=\'0.03\'/></pattern></defs><rect width=\'100\' height=\'100\' fill=\'url(%23grain)\'/></svg>');
    opacity: 0.15;
    pointer-events: none;
}
.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}
.home-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.15;
    letter-spacing: -1px;
}
.home-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.85;
    font-weight: 400;
}
.home-hero-search {
    margin-bottom: 36px;
}
.home-search-box {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(80,80,120,0.07);
    border: 1px solid #ececec;
}
.home-search-box i {
    padding: 12px 16px;
    color: #b0b0b0;
    font-size: 18px;
}
.home-search-input {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: 15px;
    outline: none;
    color: #222;
    background: transparent;
}
.home-search-input::placeholder {
    color: #b0b0b0;
}
.home-search-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 32px 32px 0;
    transition: background 0.2s;
}
.home-search-btn:hover {
    background: #3b82f6;
}
.home-hero-stats {
    display: flex;
    justify-content: center;
    gap: 36px;
    position: relative;
    z-index: 2;
    margin-top: 12px;
}
.home-stat-item {
    text-align: center;
}
.home-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #6366f1;
}
.home-stat-label {
    font-size: 0.95rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-featured-section {
    padding: 48px 0 32px;
    background: #fff;
}
.home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}
.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.home-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}
.home-view-all-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    transition: color 0.2s;
}
.home-view-all-link:hover {
    color: #3b82f6;
}
.home-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.home-place-card {
    background: #f9f9fb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(80,80,120,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}
.home-place-card:hover {
    box-shadow: 0 8px 32px rgba(80,80,120,0.13);
    transform: translateY(-3px) scale(1.02);
}
.home-place-card.home-featured {
    border: 2px solid #6366f1;
    background: #fff0f4;
}
.home-place-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #ececec;
}
.home-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}
.home-place-card:hover .home-place-image img {
    transform: scale(1.04);
}
.home-place-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #6366f1;
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255,56,92,0.08);
}
.home-place-badge.home-new {
    background: #00a699;
}
.home-place-content {
    padding: 14px 16px 10px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-place-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}
.home-place-location {
    color: #717171;
    font-size: 13px;
    margin-bottom: 10px;
}
.home-place-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.home-place-type {
    background: #f0f0f0;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}
.home-place-announcements {
    color: #6366f1;
    font-size: 11px;
    font-weight: 600;
}
.home-place-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}
.home-stars {
    display: flex;
    gap: 1px;
}
.home-stars i {
    color: #ffc107;
    font-size: 13px;
}
.home-rating-text {
    color: #717171;
    font-size: 11px;
}

.home-categories-section {
    padding: 44px 0 32px;
    background: #f8fafc;
}
.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
}
.home-category-card {
    text-align: center;
    padding: 22px 10px 18px 10px;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(80,80,120,0.04);
    border: 1px solid #f0f0f0;
}
.home-category-card:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.13);
}
.home-category-icon {
    width: 44px;
    height: 44px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: background 0.2s;
}
.home-category-card:hover .home-category-icon {
    background: white;
}
.home-category-icon i {
    font-size: 20px;
    color: white;
    transition: color 0.2s;
}
.home-category-card:hover .home-category-icon i {
    color: #6366f1;
}
.home-category-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.home-category-count {
    font-size: 12px;
    opacity: 0.7;
}

.home-testimonials-section {
    padding: 44px 0 32px;
    background: #fff;
}
.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.home-testimonial-card {
    background: #f8fafc;
    padding: 22px 18px 18px 18px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(80,80,120,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.home-testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(80,80,120,0.13);
    transform: translateY(-2px) scale(1.01);
}
.home-testimonial-content {
    margin-bottom: 14px;
}
.home-testimonial-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    font-style: italic;
    margin: 0;
}
.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.home-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-author-info {
    flex: 1;
}
.home-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 0 0 2px 0;
}
.home-author-location {
    font-size: 12px;
    color: #717171;
    margin: 0;
}

.home-cta-section {
    padding: 44px 0 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #222;
    text-align: center;
}
.home-cta-content {
    max-width: 500px;
    margin: 0 auto;
}
.home-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}
.home-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
    opacity: 0.85;
    line-height: 1.5;
}
.home-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.home-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.home-cta-btn.home-primary {
    background: #6366f1;
    color: white;
}
.home-cta-btn.home-primary:hover {
    background: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 56, 92, 0.13);
}
.home-cta-btn.home-secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}
.home-cta-btn.home-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
    .home-hero-title { font-size: 2rem; }
    .home-section-title { font-size: 1.2rem; }
    .home-container { max-width: 98vw; }
    .home-places-grid { grid-template-columns: 1fr 1fr; }
    .home-categories-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
    .home-hero-section { padding: 100px 0 18px; }
    .home-hero-title { font-size: 1.3rem; }
    .home-hero-content { padding: 0 6px; }
    .home-hero-stats { flex-direction: row; gap: 10px; }
    .home-featured-section, .home-categories-section, .home-testimonials-section, .home-cta-section { padding: 18px 0 10px; }
    .home-section-header { flex-direction: column; gap: 8px; text-align: center; }
    .home-places-grid { grid-template-columns: 1fr; gap: 10px; }
    .home-categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .home-testimonials-grid { grid-template-columns: 1fr; gap: 8px; }
    .home-cta-content { padding: 0 6px; }
    .home-cta-title { font-size: 1.1rem; }

/* Menu desktop style Airbnb */
.desktop-nav-specific { display: none; }
@media (min-width: 769px) { .desktop-nav-specific { display: block; background: #ffffff; border-bottom: 1px solid #ebebeb; box-shadow: 0 1px 2px rgba(0,0,0,0.08); position: relative; z-index: 100; } }
@media (min-width: 769px) { .desktop-nav-container { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: center; height: 64px; padding: 0 80px; } }
@media (min-width: 769px) { .desktop-nav-list { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; } }
@media (min-width: 769px) { .desktop-nav-link { display: flex; align-items: center; gap: 8px; padding: 12px 16px; color: #222222; text-decoration: none; border-radius: 22px; font-weight: 500; font-size: 14px; line-height: 18px; transition: all 0.2s ease; white-space: nowrap; } }
@media (min-width: 769px) { .desktop-nav-link:hover { background: #f7f7f7; color: #222222; } }
@media (min-width: 769px) { .desktop-nav-link.active { background: #222222; color: #ffffff; } }
.no-underline { text-decoration: none; }

/* Image principale du lieu-detail */
.lieu-detail-main-image { width: 100%; height: 200px; overflow: hidden; border-radius: 12px; margin-bottom: 24px; }
.lieu-detail-main-image img { width: 100%; height: 100%; object-fit: cover; }

/* Styles spécifiques pour lieu-detail */
.lieu-detail-hero { position: relative; height: 200px;  display: flex; align-items: flex-end; }
.lieu-detail-hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%); }
.lieu-detail-place-type { position: absolute; top: 20px; left: 20px; background: #6366f1; color: white; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; z-index: 2; }
.lieu-detail-rating-badge { position: absolute; bottom: 20px; right: 20px; background: rgba(0,0,0,0.8); color: white; padding: 8px 12px; border-radius: 20px; font-size: 14px; font-weight: 600; z-index: 2; }
.lieu-detail-action-buttons { position: absolute; bottom: 20px; left: 20px; display: flex; gap: 12px; z-index: 2; }
.lieu-detail-action-btn { background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.lieu-detail-action-btn:hover { background: white; transform: scale(1.1); }
.lieu-detail-hero-image { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; margin: 16px 0; display: block; }
.lieu-detail-hero { position: relative; margin: 0 auto; max-width: 1200px; padding: 0 24px; }
.place-title-section { margin-bottom: 4px; }
.place-location { margin-top: 0; }
/* ===== STYLES MOBILE SLIDER ET PLACEHOLDERS ===== */

/* Slider pour mobile */
@media (max-width: 768px) {
    .home-places-grid,
    .home-testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 20px;
        margin: 0 -20px 2rem -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .home-places-grid::-webkit-scrollbar,
    .home-testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .home-place-card,
    .home-testimonial-card {
        min-width: 220px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .home-place-card.home-featured {
        min-width: 260px;
    }
}

/* Placeholders pour photos manquantes */
.home-place-no-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0.6;
}

.home-place-no-photo i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.home-author-no-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border-radius: 50%;
    opacity: 0.6;
}

.home-author-no-photo i {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Badges de tendance */
.home-place-trend-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.home-place-trend-badge.gay {
    background: linear-gradient(135deg, #6366f1, #1d4ed8);
}

.home-place-trend-badge.mixte {
    background: linear-gradient(135deg, #3b82f6, #be185d);
}

.home-place-trend-badge.hetero {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Padding bottom pour éviter le menu mobile */
@media (max-width: 768px) {
    .home-cta-section {
        padding-bottom: 100px;
    }
}
    /* Les catégories restent en grille sur mobile */
    .home-categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
/* Effet premium pour les lieux */
.home-place-card.home-featured {
    border: 2px solid #6366f1;
    background: #fafbff;
    position: relative;
}

.home-place-card.home-featured::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

.home-place-card.home-featured .home-place-badge {
    background: #6366f1;
}
/* Boutons sous les catégories */
.home-categories-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
}
.home-categories-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(59,130,246,0.08);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    min-width: 200px;
}
.home-categories-btn.privatif {
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
}
.home-categories-btn.insolite {
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 100%);
}
.home-categories-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(59,130,246,0.13);
}
@media (max-width: 600px) {
    .home-categories-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
    }
    .home-categories-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Correction couronne premium */
.premium-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}
.premium-badge i {
    font-size: 14px;
}
/* Styles pour les dernières annonces sur la page d accueil */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

/* Slide mobile pour les annonces */
@media (max-width: 768px) {
    .home-testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 20px;
        margin: 0 -20px 2rem -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .home-testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
/* Styles pour les dernières annonces sur la page d accueil - Utilise les mêmes styles que annonces.php */
.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.home-testimonials-grid .annonce-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.home-testimonials-grid .annonce-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Slide mobile pour les annonces */
@media (max-width: 768px) {
    .home-testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 20px;
        margin: 0 -20px 2rem -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .home-testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .home-testimonials-grid .annonce-card {
        min-width: 260px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}
/* Correction du lieu premium sur la page d accueil */
.home-places-grid .place-card.lieu-premium {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.home-places-grid .place-card.lieu-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.home-places-grid .place-card.lieu-premium .place-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.home-places-grid .place-card.lieu-premium .place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-places-grid .place-card.lieu-premium:hover .place-image img {
    transform: scale(1.05);
}

.home-places-grid .place-card.lieu-premium .place-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.home-places-grid .place-card.lieu-premium .place-info-card {
    padding: 16px;
}

.home-places-grid .place-card.lieu-premium .place-name {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.home-places-grid .place-card.lieu-premium .place-city {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-places-grid .place-card.lieu-premium .place-announcements {
    margin: 0 0 8px 0;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-places-grid .place-card.lieu-premium .place-rating-card {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
}

.home-places-grid .place-card.lieu-premium .star {
    color: #fbbf24;
    font-size: 0.8rem;
}
/* Correction du slide des annonces et boutons */
@media (max-width: 768px) {
    .home-testimonials-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding: 0 20px !important;
        margin: 0 -20px 2rem -20px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        grid-template-columns: none !important;
    }
    
    .home-testimonials-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .home-testimonials-grid .annonce-card {
        min-width: 260px !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
        width: 260px !important;
    }
}

/* Styles pour les boutons Lieux privatifs et insolites */
.home-categories-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
}

.home-categories-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(59,130,246,0.08);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
    text-decoration: none;
}

.home-categories-btn.privatif {
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
}

.home-categories-btn.insolite {
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 100%);
}

.home-categories-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(59,130,246,0.13);
}

@media (max-width: 600px) {
    .home-categories-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
    }
    
    .home-categories-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Slide horizontal pour desktop et mobile */
.home-places-grid,
.home-testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 20px;
    margin: 0 -20px 2rem -20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-places-grid::-webkit-scrollbar,
.home-testimonials-grid::-webkit-scrollbar {
    display: none;
}

.home-place-card,
.home-testimonials-grid .annonce-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.home-places-grid .place-card.lieu-premium {
    min-width: 320px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-place-card,
    .home-testimonials-grid .annonce-card {
        min-width: 260px;
    }
    
    .home-places-grid .place-card.lieu-premium {
        min-width: 280px;
    }
}
