/* ================================
   La Casita de las Hortensias
   CSS Minimalista - Bootstrap 5
   ================================ */

/* Colores personalizados */
:root {
    --bs-primary: #507070;
    --bs-secondary: #fb5f00;
}

/* ================================
   CORRECCIONES ESPECÍFICAS PARA CHROME
   ================================ */

/* Asegurar que las imágenes se carguen completamente */
.gallery-item img {
    width: 100%;
    height: 280px; /* Altura fija para evitar cambios de layout */
    object-fit: cover;
    background-color: #f8f9fa; /* Color de fondo mientras carga */
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Forzar carga completa en Chrome */
.gallery-item img[src] {
    opacity: 1 !important;
}

/* Eliminar skeleton loader problemático */
.gallery-item img[loading="lazy"] {
    background: none !important;
    animation: none !important;
}

/* Asegurar que las imágenes sean visibles siempre */
.gallery-item img:not([src]) {
    opacity: 0;
}

.gallery-item img[src]:not([src=""]) {
    opacity: 1;
}

/* Hero background image */
.hero-section {
    background-image: url('/assets/img/rincones/lch-rincon-ciruelo.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Forzar que el background se cargue */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    z-index: 0;
}

/* Tipografía */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

/* Reset de márgenes para evitar desplazamientos */
body {
    margin: 0;
    padding: 0;
}

.container, .container-fluid {
    max-width: 100%;
}

/* Prevenir scrollbars horizontales */
body, html {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Evitar que AOS cause scrollbars temporales */
[data-aos] {
    pointer-events: auto;
    overflow: visible !important;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
    transition-duration: 600ms !important;
}

body.aos-animate {
    overflow-x: hidden !important;
}

/* Deshabilitar transiciones que causan overflow */
[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="fade-left"],
[data-aos="fade-right"] {
    transform: none !important;
    opacity: 1 !important;
}

[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: none !important;
    opacity: 1 !important;
}

/* Alpine.js - Cloak para evitar flash */
[x-cloak] {
    display: none !important;
}

/* Text justify para párrafos */
.text-justify {
    text-align: justify !important;
    text-justify: inter-word;
}

/* Navbar mejorado con sticky effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.navbar-scrolled .navbar-brand img {
    height: 45px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.navbar-toggler {
    z-index: 1050;
    border: 1px solid rgba(0,0,0,.1);
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(80, 112, 112, 0.25);
}

@media (max-width: 768px) {
    .navbar {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .navbar-brand img {
        height: 45px;
        width: auto;
    }
    
    .navbar-scrolled .navbar-brand img {
        height: 40px;
        width: auto;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('/assets/img/rincones/lch-rincon-ciruelo.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1,
.hero-content p {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* ================================
   BOTONES MODERNOS Y MEJORADOS
   ================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), #3f5a5a);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 112, 112, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3f5a5a, var(--bs-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 112, 112, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Efecto de onda al hacer clic */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Botón secundario moderno */
.btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-light:hover {
    background: white;
    color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Botones con iconos */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-outline-light:hover i {
    color: var(--bs-primary) !important;
}

.btn-secondary {
    background-color: #fb5f00;
    border-color: #fb5f00;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #e05500;
    border-color: #e05500;
}

/* Secciones */
.section-title h2 {
    color: #507070;
}

.about-text h3 {
    color: #507070;
}

/* ================================
   FILTROS DE GALERÍA PREMIUM
   ================================ */

.filter-btn {
    background: linear-gradient(135deg, rgba(80, 112, 112, 0.05), rgba(80, 112, 112, 0.1));
    border: 2px solid rgba(80, 112, 112, 0.3);
    color: var(--bs-primary);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(80, 112, 112, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(80, 112, 112, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover {
    transform: translateY(-3px);
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, rgba(80, 112, 112, 0.1), rgba(80, 112, 112, 0.15));
    box-shadow: 0 6px 20px rgba(80, 112, 112, 0.25);
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #3f5a5a 100%);
    color: white;
    border-color: var(--bs-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(80, 112, 112, 0.4);
    animation: filterPulse 2s ease-in-out infinite;
}

.filter-btn.active i {
    animation: iconBounce 0.5s ease;
}

@keyframes filterPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(80, 112, 112, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(80, 112, 112, 0.6), 0 0 0 8px rgba(80, 112, 112, 0.1);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.filter-btn i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

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

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.gallery-content p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.gallery-content i {
    font-size: 2rem;
    opacity: 0.9;
}

/* Skeleton loader para imágenes */
.gallery-item img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Features - Iconos con paleta verde/gris */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #507070, #6b9090);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(80, 112, 112, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(80, 112, 112, 0.4);
}

.feature-card h3 {
    color: #507070;
}

/* ================================
   SECCIÓN BOOKING CON ESTÉTICA VERDE/GRIS
   ================================ */

.booking-section {
    background: linear-gradient(135deg, #507070 0%, #6b9090 50%, #7a9f9f 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatBubble 20s infinite ease-in-out;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: floatBubble 15s infinite ease-in-out reverse;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.booking-section .container {
    position: relative;
    z-index: 1;
}

.booking-section .section-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-section a {
    transition: all 0.3s ease;
}

.booking-section a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: underline !important;
}

/* Reviews */
.review-author {
    color: #507070;
    font-weight: 600;
}

.review-rating {
    color: #fb5f00;
}

/* Booking Badge */
.booking-badge {
    display: inline-block;
    padding: 1rem;
}

.booking-badge img {
    width: 150px;
    height: 150px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.booking-badge img:hover {
    transform: scale(1.05);
}

/* Responsive: más grande en móvil */
@media (max-width: 767px) {
    .booking-badge img {
        width: 200px;
        height: 200px;
    }
}

/* Booking */
.booking-card {
    background: linear-gradient(135deg, #507070, #fb5f00);
    color: white;
}

/* Contacto */
.contact-icon {
    width: 60px;
    height: 60px;
    background: #507070;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #507070;
}

/* Footer */
.social-links a:hover {
    background: #fb5f00 !important;
}

/* Scroll to Top */
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #507070;
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    z-index: 1000;
}

#scrollTop.show {
    display: block;
}

#scrollTop:hover {
    background: #fb5f00;
}

/* Páginas Legales */
.legal-content h1,
.legal-content h2 {
    color: #507070;
}

/* Hero Section mejorado */
.hero-section {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: white;
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll-indicator a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section styles mejorados */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #fb5f00;
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #6c757d;
}

/* Contact cards mejoradas */
.contact-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Feature cards mejoradas */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

/* About highlights - Premium Style */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(80, 112, 112, 0.05), rgba(80, 112, 112, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(80, 112, 112, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--bs-primary), #6b9090);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(80, 112, 112, 0.1), rgba(80, 112, 112, 0.15));
    border-color: var(--bs-primary);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(80, 112, 112, 0.2);
}

.highlight-item:hover::before {
    transform: scaleY(1);
}

.highlight-item i {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary), #6b9090);
    color: white !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(80, 112, 112, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(80, 112, 112, 0.4);
}

.highlight-item span {
    font-weight: 600;
    font-size: 1.05rem;
    color: #3f5a5a;
    transition: all 0.3s ease;
}

.highlight-item:hover span {
    color: var(--bs-primary);
    transform: translateX(3px);
}

/* ================================
   REVIEWS - ESTADÍSTICAS Y CARDS PREMIUM
   ================================ */

/* Estadísticas de reseñas */
.review-stats {
    background: linear-gradient(135deg, rgba(80, 112, 112, 0.05), rgba(80, 112, 112, 0.1));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(80, 112, 112, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(80, 112, 112, 0.2);
    border-color: var(--bs-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-stars {
    color: #ffa41c;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-top: 0.5rem;
}

/* Cards de reseñas - Versión compacta para 3 columnas */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(80, 112, 112, 0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 80px;
    color: rgba(80, 112, 112, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #6b9090);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(80, 112, 112, 0.3);
    flex-shrink: 0;
}

.review-author-details h5 {
    margin: 0;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
}

.review-author-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.review-rating-box {
    text-align: right;
}

.review-rating {
    background: linear-gradient(135deg, var(--bs-primary), #6b9090);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(80, 112, 112, 0.3);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
    font-size: 0.75rem;
    color: #666;
}

.review-source i {
    color: var(--bs-primary);
}

.review-source.booking {
    color: #003580;
}

.review-source.google {
    color: #4285f4;
}

.review-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.review-comment {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(80, 112, 112, 0.1);
    margin-top: auto;
}

.review-date {
    color: #999;
    font-size: 0.75rem;
    font-style: italic;
}

.review-helpful {
    color: #666;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-helpful i {
    color: var(--bs-primary);
}

/* Grid de 3 columnas para reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Carousel controls ocultos */
#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
    display: none;
}

#reviewsCarousel .carousel-indicators {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .review-card {
        padding: 1.25rem;
    }
    
    .review-header {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .review-comment {
        -webkit-line-clamp: 5;
    }
}

/* Legacy styles for old carousel */
.review-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-image-wrapper img {
    width: 100%;
    height: auto;
}

/* Footer links */
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #fb5f00;
    padding-left: 5px;
}

/* Toast notifications (para futuras notificaciones) */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

/* Performance: reduce motion para usuarios con preferencias */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
========================================*/
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cookie-overlay.hidden {
    display: none;
}

.cookie-banner {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s ease-out;
}

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

.cookie-banner h3 {
    color: var(--bs-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner h3 i {
    font-size: 2rem;
}

.cookie-banner p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cookie-banner .btn-accept {
    background: linear-gradient(135deg, var(--bs-primary), #6b9090);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 112, 112, 0.3);
    width: 100%;
    font-size: 1.1rem;
}

.cookie-banner .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 112, 112, 0.4);
}

.cookie-banner .cookie-links {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-banner .cookie-links a {
    color: var(--bs-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.cookie-banner .cookie-links a:hover {
    color: #6b9090;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 2rem 1.5rem;
    }
    
    .cookie-banner h3 {
        font-size: 1.5rem;
    }
    
    .cookie-banner p {
        font-size: 0.9rem;
    }
}

/* ========================================
   SUGERENCIAS PAGE STYLES
========================================*/

/* Disclaimer Overlay */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.disclaimer-overlay.hidden {
    display: none;
}

.disclaimer-banner {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s ease-out;
}

.disclaimer-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.disclaimer-icon i {
    font-size: 4rem;
    color: var(--bs-primary);
}

.disclaimer-banner h3 {
    color: var(--bs-primary);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.disclaimer-banner p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.disclaimer-banner .btn-accept {
    background: linear-gradient(135deg, var(--bs-primary), #6b9090);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 112, 112, 0.3);
    width: 100%;
    font-size: 1.1rem;
}

.disclaimer-banner .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 112, 112, 0.4);
}

/* Hero Section Suggestions */
.hero-section-suggestions {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('/assets/img/rincones/lch-rincon-ciruelo.jpg') center/cover no-repeat;
    min-height: 60vh;
    padding: 150px 0 100px 0;
    position: relative;
    margin-top: 70px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bs-primary), #6b9090);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    color: var(--bs-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Activity Cards */
.activity-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--bs-primary);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6b9090, var(--bs-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon i {
    font-size: 2.5rem;
    color: white;
}

.activity-card h3 {
    color: var(--bs-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.activity-card p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Restaurant Cards */
.restaurant-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.restaurant-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.restaurant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 112, 112, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-card:hover .restaurant-overlay {
    opacity: 1;
}

.restaurant-overlay i {
    color: white;
    font-size: 2rem;
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-info h3 {
    color: var(--bs-primary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.restaurant-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .disclaimer-banner {
        padding: 2rem 1.5rem;
    }
    
    .disclaimer-banner h3 {
        font-size: 1.5rem;
    }
    
    .disclaimer-icon i {
        font-size: 3rem;
    }
    
    .hero-section-suggestions {
        min-height: 50vh;
    }
    
    .service-card,
    .activity-card {
        padding: 1.5rem;
    }
    
    .service-icon,
    .activity-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .activity-icon i {
        font-size: 2rem;
    }
}
