:root {
    --primary: #f59e0b; /* Ambar para BeelApt */
    --primary-dark: #d97706;
    --primary-light: #fef3c7;
    --bg-main: #f9fafb;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 30px -5px rgba(0, 0, 0, 0.1), 0 15px 15px -6px rgba(0, 0, 0, 0.08);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Layout General */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Navbar */
.catalogo-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.catalogo-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    background-color: var(--text-primary);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.nav-btn:hover {
    background-color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8.5rem 0 4.5rem 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.88), rgba(30, 41, 59, 0.92)), url('hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-search {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.search-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #f1f5f9;
    padding-left: 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

.guest-selector {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.35rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guest-btn {
    background-color: transparent;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.guest-btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.guest-btn.active {
    background-color: var(--primary);
    color: #111827;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

/* Page Main */
.page-main {
    padding: 3rem 1.5rem 5rem;
}

.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Grilla de Propiedades */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Tarjeta de Propiedad */
.property-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Carrusel de Imágenes */
.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #f3f4f6;
}

.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item {
    min-width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.property-card:hover .carousel-item img {
    transform: scale(1.05);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.property-card:hover .carousel-control {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.carousel-control.prev { left: 12px; }
.carousel-control.next { right: 12px; }

.carousel-control:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-50%) scale(1.1) !important;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

/* Detalles de Propiedad */
.property-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.375rem;
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 700;
}

.property-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.property-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--primary-light);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.btn-gallery {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: var(--text-primary);
    color: #fff;
    border: none;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

.btn-gallery:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

/* Loader */
.loader-container {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    color: var(--text-muted);
}

.spinner {
    border: 3px solid rgba(245, 158, 11, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background-color: transparent;
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border);
    color: var(--text-secondary);
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

/* Footer */
.catalogo-footer {
    background-color: var(--text-primary);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-search {
        flex-direction: column;
        border-radius: var(--radius-xl);
        gap: 1rem;
        padding: 1.5rem;
    }
    .search-label {
        padding-left: 0;
    }
    .guest-selector {
        flex-wrap: wrap;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
    }
    .guest-btn {
        background: rgba(255, 255, 255, 0.1);
        color: #e2e8f0;
    }
    .guest-btn.active {
        background: var(--primary);
        color: #111827;
    }
}

@media (max-width: 768px) {
    .catalogo-header {
        padding: 0.65rem 0;
    }
    .catalogo-header.scrolled {
        padding: 0.5rem 0;
    }
    .navbar-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    .logo-title {
        font-size: 1.2rem;
    }
    .logo-title svg {
        width: 22px;
        height: 22px;
        margin-right: 4px;
    }
    .nav-links {
        gap: 0.65rem;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
        white-space: nowrap;
    }
    .nav-btn {
        padding: 0.35rem 0.85rem;
        font-size: 0.825rem;
        white-space: nowrap;
    }
    .btn-header-action {
        padding: 0.35rem 0.65rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .properties-grid {
        grid-template-columns: 1fr;
    }
    .property-card {
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .catalogo-header {
        padding: 0.5rem 0;
    }
    .navbar-container {
        padding: 0 0.75rem;
        gap: 0.35rem;
    }
    .logo-title {
        font-size: 1.05rem;
    }
    .logo-title svg {
        width: 18px;
        height: 18px;
        margin-right: 3px;
    }
    .nav-links {
        gap: 0.4rem;
    }
    .nav-links a {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .nav-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .btn-header-action {
        padding: 0.25rem 0.45rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }
}
/* =========================================
   ESTILOS PARA DETALLE DE PROPIEDAD (ver_fotos.php)
   ========================================= */

.property-detail-page {
    padding-top: 5.5rem;
    padding-bottom: 5rem;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span.separator {
    color: var(--border);
}

.breadcrumbs span.current {
    color: var(--text-primary);
    font-weight: 500;
}

/* Header de la Propiedad */
.prop-main-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.prop-title-area {
    flex: 1;
    min-width: 280px;
}

.prop-hero-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.prop-meta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.prop-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.prop-location-badge svg {
    color: var(--primary-dark);
}

.prop-tags-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.prop-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: #f3f4f6;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.prop-tag.tag-primary {
    background: var(--primary-light);
    color: #92400e;
    border-color: rgba(245, 158, 11, 0.3);
}

.prop-tag.tag-pet {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.prop-tag.tag-no-pet {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.prop-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-header-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.btn-header-action:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Showcase de Fotos (Airbnb Style) */
.showcase-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    background: #f3f4f6;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 0.625rem;
    background: #fff;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #e5e7eb;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.95);
}

.showcase-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.showcase-item-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.showcase-item-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.showcase-item-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.showcase-item-4 { grid-column: 3 / 4; grid-row: 2 / 3; }

.btn-view-all-photos {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 0.65rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 5;
}

.btn-view-all-photos:hover {
    background: #fff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Layout de 2 Columnas */
.property-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: start;
}

.property-main-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Tarjetas de Información */
.detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.detail-card-title {
    font-size: 1.35rem;
    color: var(--text-primary);
    font-weight: 700;
}

.prop-description-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-box {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.highlight-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.highlight-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amenity-icon {
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* House Rules List */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.rule-item svg {
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Sticky Booking Widget */
.sticky-sidebar {
    position: sticky;
    top: 5.5rem;
}

.booking-widget-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.booking-widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.widget-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.widget-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.widget-price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.widget-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #065f46;
    background: #ecfdf5;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
}

.form-group-modern {
    margin-bottom: 1rem;
}

.form-label-modern {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.form-input-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.btn-submit-booking {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit-booking:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.45);
    filter: brightness(1.05);
}

.btn-submit-booking:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.widget-trust-points {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: var(--text-secondary);
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-point svg {
    color: var(--primary-dark);
    flex-shrink: 0;
}

/* Galería Completa Inferior */
.full-gallery-section {
    margin-top: 3rem;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(245, 158, 11, 0.4);
}

.gallery-card-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}

.gallery-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img-wrap img {
    transform: scale(1.06);
}

.gallery-card-caption {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

/* Lightbox Mejorado */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 29, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 3010;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.lightbox-counter {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.lightbox-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 3010;
    backdrop-filter: blur(4px);
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev { left: 24px; }
.lightbox-nav-btn.next { right: 24px; }

.lightbox-main-view {
    max-width: 85%;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
}

.lightbox-main-view img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.lightbox-caption-text {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    text-align: center;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
}

/* Toast de Notificación */
.toast-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111827;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 4000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive para Detalle */
@media (max-width: 1024px) {
    .property-content-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .sticky-sidebar {
        position: static;
    }
    .booking-widget-card {
        max-width: 600px;
        margin: 0 auto;
    }
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .showcase-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .showcase-item-1 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .showcase-item-2 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .showcase-item-3, .showcase-item-4 { display: none; }
}

@media (max-width: 640px) {
    .showcase-grid {
        display: block;
        height: 280px;
    }
    .showcase-main {
        height: 100%;
    }
    .showcase-item-1, .showcase-item-2, .showcase-item-3, .showcase-item-4 {
        display: none;
    }
    .prop-hero-title {
        font-size: 1.85rem;
    }
    .lightbox-nav-btn {
        width: 42px;
        height: 42px;
    }
    .lightbox-nav-btn.prev { left: 10px; }
    .lightbox-nav-btn.next { right: 10px; }
    .lightbox-top-bar {
        padding: 1rem;
    }
}
