:root {















    /* Color Palette - Amazon Emerald & Harmony Azure */















    --primary: #bf860d;















    --primary-container: #e8a71a;















    --on-primary: #ffffff;















    --whatsapp: #25D366;















    --whatsapp-dark: #128C7E;















    















    --surface: #f8fafc;















    --surface-container: #ffffff;















    --surface-container-low: #f1f5f9;















    --surface-container-highest: #e2e8f0;















    















    --on-surface: #0f172a;















    --on-surface-variant: #475569;















    --outline-variant: #cbd5e1;















    --error: #ef4444;















    















    /* Typography */















    --font-heading: 'Outfit', sans-serif;















    --font-body: 'Manrope', sans-serif;















    















    /* Spacing & Borders */















    --rounded-lg: 24px;















    --rounded-md: 16px;















    --rounded-sm: 8px;















    --rounded-full: 9999px;















    --shadow-premium: 0 20px 40px rgba(15, 23, 42, 0.06);















}















* {















    margin: 0;















    padding: 0;















    box-sizing: border-box;















    -webkit-tap-highlight-color: transparent;















}















body {















    font-family: var(--font-body);















    background-color: var(--surface);















    color: var(--on-surface);















    line-height: 1.6;















    overflow-x: hidden;















}















/* Typography Scales */















h1, h2, h3, h4 {















    font-family: var(--font-heading);















    font-weight: 700;















    color: var(--on-surface);















    line-height: 1.25;















}















.display-lg {















    font-size: 2.5rem;















    font-weight: 800;















    letter-spacing: -0.02em;















}















.headline-md {















    font-size: 2rem;















    font-weight: 700;















    letter-spacing: -0.01em;















}















.body-lg {















    font-size: 1.1rem;















    color: var(--on-surface-variant);















}















.text-center { text-align: center; }















/* Navbar */















.navbar {















    background: rgba(255, 255, 255, 0.85);















    backdrop-filter: blur(12px);















    -webkit-backdrop-filter: blur(12px);















    position: fixed;















    top: 0;















    left: 0;















    right: 0;















    height: 72px;















    z-index: 1000;















    border-bottom: 1px solid rgba(15, 23, 42, 0.05);















}















.nav-container {















    max-width: 1200px;















    margin: 0 auto;















    height: 100%;















    display: flex;















    justify-content: space-between;















    align-items: center;















    padding: 0 20px;















}















.logo {















    display: flex;















    align-items: center;















    gap: 10px;















    text-decoration: none;















    color: var(--primary);















    font-family: var(--font-heading);















    font-weight: 800;















    font-size: 1.3rem;















}















.logo i { font-size: 1.5rem; }















.logo-img {















    height: 52px;















    width: auto;















    object-fit: contain;















    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);















}















.logo-img:hover {















    transform: scale(1.05);















}















.btn-nav-whatsapp {















    background-color: var(--whatsapp);















    color: white;















    text-decoration: none;















    padding: 10px 18px;















    border-radius: var(--rounded-full);















    font-size: 0.9rem;















    font-weight: 700;















    display: flex;















    align-items: center;















    gap: 8px;















    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);















    transition: all 0.3s;















}















.btn-nav-whatsapp:hover {















    background-color: var(--whatsapp-dark);















    transform: translateY(-1px);















}















/* Hero Section */















.hero {















    position: relative;















    height: 90vh;















    min-height: 600px;















    display: flex;















    align-items: center;















    justify-content: center;















    color: white;















    padding: 100px 20px 140px 20px;















    text-align: center;















}















.hero-img {















    position: absolute;















    top: 0;















    left: 0;















    width: 100%;















    height: 100%;















    object-fit: cover;















    z-index: -2;















}















.hero-overlay {















    position: absolute;















    top: 0;















    left: 0;















    width: 100%;















    height: 100%;















    background: linear-gradient(180deg, rgba(6, 26, 62, 0.3) 0%, rgba(6, 26, 62, 0.65) 100%);















    z-index: -1;















}















.hero-content {















    max-width: 800px;















    margin: 0 auto;















    display: flex;















    flex-direction: column;















    align-items: center;















    gap: 20px;















}















.hero-content h1 {















    color: #ffffff !important;















    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);















}















.hero-content p {















    color: rgba(255, 255, 255, 0.95) !important;















    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);















}















.hotel-stars {















    display: flex;















    align-items: center;















    gap: 4px;















    color: #f59e0b;















    font-size: 0.9rem;















}















.hotel-stars span {















    color: white;















    font-weight: 700;















    margin-left: 6px;















    text-transform: uppercase;















    letter-spacing: 0.05em;















}















.hero .display-lg span {















    color: var(--surface-container-highest);















}















.hero-badges-horizontal {















    display: flex;















    gap: 15px;















    font-size: 0.9rem;















    font-weight: 700;















}















.hero-badges-horizontal span {















    background: rgba(255, 255, 255, 0.15);















    padding: 6px 14px;















    border-radius: var(--rounded-full);















    backdrop-filter: blur(4px);















    display: flex;















    align-items: center;















    gap: 6px;















}















/* Glassmorphic Search Widget */















.search-widget {















    position: absolute;















    bottom: -60px;















    width: 90%;















    max-width: 1000px;















    background: rgba(255, 255, 255, 0.85);















    backdrop-filter: blur(20px) saturate(180%);















    -webkit-backdrop-filter: blur(20px) saturate(180%);















    padding: 24px 30px;















    border-radius: var(--rounded-lg);















    border: 1px solid rgba(255, 255, 255, 0.45);















    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);















    z-index: 100;















    color: var(--on-surface);















    text-align: left;















    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);















}















.search-title {















    font-size: 1.1rem;















    font-weight: 800;















    margin-bottom: 16px;















    color: var(--primary);















    display: flex;















    align-items: center;















    gap: 8px;















}















.search-form {















    display: grid;















    grid-template-columns: repeat(3, 1fr) auto;















    gap: 20px;















    align-items: flex-end;















}















.input-group {















    display: flex;















    flex-direction: column;















    gap: 6px;















}















.input-group label {















    font-size: 0.8rem;















    font-weight: 700;















    color: var(--on-surface-variant);















    text-transform: uppercase;















    letter-spacing: 0.05em;















    display: flex;















    align-items: center;















    gap: 6px;















}















.input-group input, .input-group select {















    width: 100%;















    padding: 12px 16px;















    border: 1px solid var(--outline-variant);















    border-radius: var(--rounded-md);















    font-family: inherit;















    font-size: 0.95rem;















    background: white;















    color: var(--on-surface);















    outline: none;















    transition: border-color 0.2s;















}















.input-group input:focus, .input-group select:focus {















    border-color: var(--primary);















}















.btn-search {















    background: var(--primary);















    color: white;















    border: none;















    padding: 14px 28px;















    border-radius: var(--rounded-md);















    font-weight: 700;















    font-size: 0.95rem;















    cursor: pointer;















    display: flex;















    align-items: center;















    justify-content: center;















    gap: 10px;















    transition: all 0.3s;















    height: 48px;















}















.btn-search:hover {















    background: var(--primary-container);















    transform: translateY(-1px);















}















/* Main views and container */















.container {















    max-width: 1200px;















    margin: 80px auto;















    padding: 0 20px;















}















.view-section {















    margin-bottom: 80px;















    scroll-margin-top: 100px;















}















.section-header {















    max-width: 600px;















    margin: 0 auto 40px auto;















}















.section-header p {















    margin-top: 10px;















    font-size: 1.05rem;















}















/* USP Section */















.usp-grid {















    display: grid;















    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));















    gap: 24px;















}















.usp-card {















    background: var(--surface-container);















    padding: 30px 24px;















    border-radius: var(--rounded-lg);















    box-shadow: var(--shadow-premium);















    border: 1px solid rgba(15, 23, 42, 0.02);















    transition: transform 0.3s;















    display: flex;















    flex-direction: column;















    align-items: center;















    text-align: center;















}















.usp-card:hover {















    transform: translateY(-5px);















}















.usp-icon {















    width: 60px;















    height: 60px;















    border-radius: 50%;















    background: var(--surface-container-low);















    color: var(--primary);















    display: flex;















    align-items: center;















    justify-content: center;















    font-size: 1.5rem;















    margin-bottom: 24px;















}















.usp-card h3 {















    font-size: 1.25rem;















    margin-bottom: 0;















}















.usp-card p {















    color: var(--on-surface-variant);















    font-size: 0.95rem;















}















/* Rooms Grid */















.rooms-grid {















    display: grid;















    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));















    gap: 32px;















}















.room-card {















    background: var(--surface-container);















    border-radius: var(--rounded-lg);















    overflow: hidden;















    box-shadow: var(--shadow-premium);















    display: flex;















    flex-direction: column;















    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);















}















.room-card:hover {















    transform: translateY(-10px);















    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);















}















.room-img-container {















    height: 230px;















    position: relative;















    overflow: hidden;















}















.room-img {















    width: 100%;















    height: 100%;















    object-fit: cover;















    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);















}















.room-card:hover .room-img {















    transform: scale(1.06);















}















.room-badge {















    position: absolute;















    top: 20px;















    left: 20px;















    background: rgba(15, 23, 42, 0.85);















    backdrop-filter: blur(4px);















    color: white;















    padding: 6px 14px;















    border-radius: var(--rounded-full);















    font-size: 0.75rem;















    font-weight: 700;















}















.room-info {















    padding: 24px;















    flex-grow: 1;















    display: flex;















    flex-direction: column;















}















.room-info h3 {















    font-size: 1.4rem;















    margin-bottom: 8px;















}















.room-desc {















    color: var(--on-surface-variant);















    font-size: 0.92rem;















    margin-bottom: 12px;















}















.room-features {















    display: flex;















    flex-wrap: wrap;















    gap: 6px;















    margin-bottom: 16px;















}















.room-features span {















    background: var(--surface-container-low);















    padding: 4px 8px;















    border-radius: var(--rounded-md);















    font-size: 0.8rem;















    font-weight: 700;















    color: var(--primary);















    display: flex;















    align-items: center;















    gap: 4px;















}















.room-price-row {















    margin-top: auto;















    display: flex;















    justify-content: space-between;















    align-items: center;















}















.room-price {















    display: flex;















    flex-direction: column;















    gap: 2px;















}















.price-label {















    font-size: 0.7rem;















    font-weight: 700;















    color: var(--primary);















    text-transform: uppercase;















    letter-spacing: 0.05em;















}















.price-container {















    display: flex;















    align-items: baseline;















    gap: 8px;















}















.old-price {















    font-size: 0.9rem;















    text-decoration: line-through;















    color: var(--on-surface-variant);















    opacity: 0.5;















}















.room-price .amount {















    font-size: 1.6rem;















    font-weight: 800;















    color: var(--on-surface);















}















.price-container .period {















    font-size: 0.8rem;















    color: var(--on-surface-variant);















}















.btn-check-room {















    background: var(--surface-container-low);















    color: var(--primary);















    border: none;















    padding: 12px 20px;















    border-radius: var(--rounded-md);















    font-weight: 700;















    font-size: 0.9rem;















    cursor: pointer;















    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);















    display: flex;















    align-items: center;















    gap: 6px;















}















.btn-check-room:hover {















    background: var(--primary);















    color: white;















    transform: translateY(-2px);















    box-shadow: 0 8px 20px rgba(191, 134, 13, 0.2);















}















/* Trust Bar */















.trust-bar {















    background: var(--primary);















    color: white;















    padding: 30px;















    border-radius: var(--rounded-lg);















    box-shadow: var(--shadow-premium);















    margin-bottom: 80px;















}















.trust-container {















    display: flex;















    justify-content: space-around;















    flex-wrap: wrap;















    gap: 20px;















}















.trust-item {















    display: flex;















    align-items: center;















    gap: 10px;















    font-weight: 700;















    font-size: 1rem;















}















.trust-item i { font-size: 1.3rem; }















/* Location Section */















.location-grid {















    display: grid;















    grid-template-columns: 1fr 1fr;















    gap: 40px;















    align-items: center;















}















.location-details h3 {















    margin-bottom: 16px;















    color: var(--primary);















}















.location-points {















    list-style: none;















    margin-top: 24px;















    display: flex;















    flex-direction: column;















    gap: 12px;















}















.location-points li {















    display: flex;















    align-items: center;















    gap: 10px;















    font-size: 0.95rem;















}















.location-points li i { color: var(--primary); }















/* Availability Dynamic Results Container */















.results-container {















    background: var(--surface-container);















    border-radius: var(--rounded-lg);















    padding: 40px;















    box-shadow: var(--shadow-premium);















    margin-top: 20px;















    border: 1px solid rgba(15, 23, 42, 0.05);















}















.loader-box {















    display: flex;















    flex-direction: column;















    align-items: center;















    gap: 15px;















    padding: 30px;















}















.loader-spinner {















    font-size: 3rem;















    color: var(--primary);















    animation: fa-spin 1s infinite linear;















}















.alert-success-badge {















    background: #ecfdf5;















    border: 1px solid #10b981;















    color: #065f46;















    padding: 20px;















    border-radius: var(--rounded-md);















    text-align: center;















    margin-bottom: 30px;















    font-weight: 700;















    font-size: 1.1rem;















}















.alert-error-badge {















    background: #fef2f2;















    border: 1px solid #ef4444;















    color: #991b1b;















    padding: 20px;















    border-radius: var(--rounded-md);















    text-align: center;















    margin-bottom: 30px;















    font-weight: 700;















    font-size: 1.1rem;















}















.available-room-card {















    display: flex;















    align-items: center;















    justify-content: space-between;















    padding: 20px;















    border: 1px solid var(--outline-variant);















    border-radius: var(--rounded-md);















    margin-bottom: 16px;















    background: white;















    transition: transform 0.3s;















}















.available-room-card:hover {















    transform: translateY(-2px);















    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);















}















.avail-info h4 {















    font-size: 1.2rem;















    margin-bottom: 4px;















    color: var(--primary);















}















.avail-info p {















    font-size: 0.9rem;















    color: var(--on-surface-variant);















}















.avail-price {















    text-align: right;















    margin-right: 20px;















}















.avail-price .amount {















    font-size: 1.5rem;















    font-weight: 800;















    color: var(--on-surface);















}















.avail-price .total-label {















    font-size: 0.75rem;















    color: var(--on-surface-variant);















    display: block;















}















.btn-whatsapp-reserve {















    background-color: var(--whatsapp);















    color: white;















    border: none;















    padding: 14px 28px;















    border-radius: var(--rounded-md);















    font-weight: 800;















    font-size: 1rem;















    cursor: pointer;















    display: flex;















    align-items: center;















    gap: 10px;















    transition: all 0.3s;















    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);















    text-decoration: none;















}















.btn-whatsapp-reserve:hover {















    background-color: var(--whatsapp-dark);















    transform: translateY(-2px);















    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);















}















/* Animations */















.fade-in-up {















    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;















}















@keyframes fadeInUp {















    from {















        opacity: 0;















        transform: translateY(20px);















    }















    to {















        opacity: 1;















        transform: translateY(0);















    }















}















/* Footer */















.footer {















    background: var(--on-surface);















    color: white;















    padding: 60px 0 110px 0; /* Extra bottom padding for mobile sticky CTA */















    text-align: center;















    margin-top: 100px;















}















.footer-container {















    max-width: 1200px;















    margin: 0 auto;















    padding: 0 20px;















}















.footer-info h3 {















    color: white;















    font-size: 1.5rem;















    margin-bottom: 12px;















}















.footer-info p {















    opacity: 0.6;















    margin-bottom: 8px;















    font-size: 0.95rem;















}















.footer-divider {















    border: none;















    height: 1px;















    background: rgba(255, 255, 255, 0.1);















    margin: 30px 0;















}















.copyright {















    font-size: 0.85rem;















    opacity: 0.4;















}















/* WhatsApp Floating Button */















.whatsapp-float {















    position: fixed;















    bottom: 20px;















    right: 20px;















    background-color: var(--whatsapp);















    color: white;















    border-radius: 50px;















    padding: 12px 24px;















    display: flex;















    align-items: center;















    gap: 10px;















    font-weight: 700;















    text-decoration: none;















    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);















    z-index: 999;















    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);















}















.whatsapp-float:hover {















    transform: scale(1.05) translateY(-2px);















    background-color: var(--whatsapp-dark);















}















.whatsapp-float span {















    font-size: 0.9rem;















}















.whatsapp-float i { font-size: 1.4rem; }















/* Mobile Sticky Bottom Action Bar */















.mobile-sticky-action {















    position: fixed;















    bottom: 0;















    left: 0;















    right: 0;















    background: rgba(255, 255, 255, 0.9);















    backdrop-filter: blur(16px);















    -webkit-backdrop-filter: blur(16px);















    border-top: 1px solid rgba(15, 23, 42, 0.08);















    padding: 12px 20px;















    z-index: 998;















    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);















    display: none; /* Shown only on mobile past hero */















    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);















}















.mobile-sticky-action.show {















    display: block;















}















.mobile-action-container {















    display: flex;















    justify-content: space-between;















    align-items: center;















    max-width: 500px;















    margin: 0 auto;















}















.mobile-action-text {















    display: flex;















    flex-direction: column;















    gap: 2px;















}















.discount-pill {















    background: #fef3c7;















    color: #d97706;















    padding: 2px 8px;















    border-radius: var(--rounded-sm);















    font-size: 0.65rem;















    font-weight: 800;















    width: fit-content;















    text-transform: uppercase;















}















.price-pill {















    font-weight: 800;















    font-size: 1.1rem;















    color: var(--on-surface);















}















.btn-mobile-whatsapp {















    background-color: var(--whatsapp);















    color: white;















    text-decoration: none;















    padding: 12px 24px;















    border-radius: var(--rounded-md);















    font-weight: 800;















    font-size: 0.95rem;















    display: flex;















    align-items: center;















    gap: 8px;















    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);















}















/* Responsive Overrides */















@media (max-width: 992px) {















    .search-form {















        grid-template-columns: 1fr 1fr;















    }















    .location-grid {















        grid-template-columns: 1fr;















        gap: 30px;















    }















}















@media (max-width: 768px) {















    body {















        padding-top: 0;















    }















    .display-lg {















        font-size: 2.1rem;















    }















    .headline-md {















        font-size: 1.6rem;















    }















    .hero {















        height: auto;















        padding: 100px 20px 40px 20px;















        display: flex;















        flex-direction: column;















        align-items: center;















        background-color: #0f172a;















        z-index: 1;















    }















    .hero-img {















        height: 50%;















        object-position: center bottom;















    }















    .hero-overlay {















        background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.7) 45%, #0f172a 50%, #0f172a 100%);















    }















    .search-widget {















        position: relative;















        bottom: auto;















        margin: 30px auto 0 auto;















        width: 100%;















        max-width: 500px;















        box-sizing: border-box;















    }















    .container {















        margin: 40px auto 40px auto;















    }















    .whatsapp-float {















        display: none; /* Hide desktop float on mobile, since sticky bar is visible */















    }















    .mobile-sticky-action.show {















        display: block; /* Show only on scroll */















    }















}















@media (max-width: 640px) {















    .search-form {















        grid-template-columns: 1fr;















        gap: 12px;















    }















    .btn-search {















        width: 100%;















    }















    .available-room-card {















        flex-direction: column;















        align-items: stretch;















        gap: 16px;















    }















    .avail-price {















        text-align: left;















        margin-bottom: 8px;















    }















    .btn-whatsapp-reserve {















        justify-content: center;















    }















    .hero-badges-horizontal {















        flex-direction: column;















        gap: 8px;















    }















}















/* ==========================================================================















   Skeleton Loading State for Room Grid Loading (Prevents Old Content Residuos)















   ========================================================================== */















@keyframes skeleton-loading {















    0% { background-color: #f1f5f9; }















    50% { background-color: #e2e8f0; }















    100% { background-color: #f1f5f9; }















}















.skeleton-card {















    background: #ffffff;















    border-radius: var(--rounded-lg);















    border: 1px solid var(--border-light);















    padding: 20px;















    display: flex;















    flex-direction: column;















    gap: 15px;















    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);















    position: relative;















    overflow: hidden;















}















.skeleton-img {















    height: 200px;















    border-radius: var(--rounded-md);















    animation: skeleton-loading 1.5s infinite ease-in-out;















}















.skeleton-title {















    height: 24px;















    width: 60%;















    border-radius: var(--rounded-sm);















    animation: skeleton-loading 1.5s infinite ease-in-out;















}















.skeleton-desc {















    height: 16px;















    width: 95%;















    border-radius: var(--rounded-sm);















    animation: skeleton-loading 1.5s infinite ease-in-out;















}















.skeleton-desc-short {















    height: 16px;















    width: 75%;















    border-radius: var(--rounded-sm);















    animation: skeleton-loading 1.5s infinite ease-in-out;















}















.skeleton-features {















    display: flex;















    gap: 10px;















    margin-top: 5px;















}















.skeleton-feature {















    height: 24px;















    width: 80px;















    border-radius: var(--rounded-sm);















    animation: skeleton-loading 1.5s infinite ease-in-out;















}















.skeleton-footer {















    display: flex;















    justify-content: space-between;















    align-items: center;















    margin-top: auto;















    padding-top: 15px;















    border-top: 1px solid var(--border-light);















}















.skeleton-price {















    height: 36px;















    width: 100px;















    border-radius: var(--rounded-sm);















    animation: skeleton-loading 1.5s infinite ease-in-out;















}















.skeleton-btn {















    height: 40px;















    width: 110px;















    border-radius: 30px;















    animation: skeleton-loading 1.5s infinite ease-in-out;















}























/* Date Picker grid layout adjustments */



.col-span-2 {



    grid-column: span 2;



}







@media (max-width: 640px) {



    .col-span-2 {



        grid-column: span 1;



    }



}







/* Flatpickr Custom Styling to Match Hotel Brand */



.flatpickr-calendar {



    background: var(--surface-container) !important;



    border: 1px solid rgba(191, 134, 13, 0.2) !important;



    box-shadow: var(--shadow-premium) !important;



    border-radius: var(--rounded-lg) !important;



    font-family: 'Manrope', sans-serif !important;



}







/* Ensure day numbers in Flatpickr are always dark grey and visible */



.flatpickr-day {



    color: var(--on-surface) !important;



}







/* Selected, start and end days of the range should have white text */



.flatpickr-day.selected, 



.flatpickr-day.startRange, 



.flatpickr-day.endRange,



.flatpickr-day.selected.inRange, 



.flatpickr-day.startRange.inRange, 



.flatpickr-day.endRange.inRange, 



.flatpickr-day.selected:focus, 



.flatpickr-day.startRange:focus, 



.flatpickr-day.endRange:focus, 



.flatpickr-day.selected:hover, 



.flatpickr-day.startRange:hover, 



.flatpickr-day.endRange:hover,



.flatpickr-day.prevMonthDay.selected,



.flatpickr-day.nextMonthDay.selected {



    background: var(--primary) !important;



    border-color: var(--primary) !important;



    color: white !important;



}







/* In-range days should have a dark gold color or remain dark grey */



.flatpickr-day.inRange {



    color: var(--primary) !important;



    background: rgba(191, 134, 13, 0.1) !important;



    box-shadow: -5px 0 0 rgba(191, 134, 13, 0.1), 5px 0 0 rgba(191, 134, 13, 0.1) !important;



}







/* Disabled or prev/next month days should be light grey */



.flatpickr-day.flatpickr-disabled,



.flatpickr-day.flatpickr-disabled:hover,



.flatpickr-day.prevMonthDay,



.flatpickr-day.nextMonthDay {



    color: var(--on-surface-variant) !important;



    opacity: 0.3 !important;



}







.flatpickr-months .flatpickr-month {



    color: var(--on-surface) !important;



    fill: var(--on-surface) !important;



}







.flatpickr-current-month .numInputWrapper span.arrowUp:after {



    border-bottom-color: var(--on-surface) !important;



}







.flatpickr-current-month .numInputWrapper span.arrowDown:after {



    border-top-color: var(--on-surface) !important;



}







.flatpickr-months .flatpickr-prev-month:hover svg, 



.flatpickr-months .flatpickr-next-month:hover svg {



    fill: var(--primary) !important;



}







/* Responsive mobile styles for USP cards (Horizontal icon + text layout) */
@media (max-width: 768px) {
    .usp-grid {
        gap: 12px !important;
    }
    .usp-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        padding: 12px 16px !important;
        gap: 16px !important;
        border-radius: var(--rounded-md) !important;
    }
    .usp-icon {
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
    .usp-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0 !important;
        font-weight: 600 !important;
    }
}


/* ==========================================================================
   CARBON NEUTRAL & SUSTAINABLE SECTION (PREMIUM ECO-SYSTEM)
   ========================================================================== */

/* Color Tokens */
:root {
    --emerald-deep: #083c27;
    --emerald-mid: #0b5e40;
    --emerald-light: #10b981;
    --emerald-soft: rgba(16, 185, 129, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.sostenible-section {
    background: linear-gradient(135deg, #062a1c 0%, #0d1e18 100%);
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* Background ambient light effects */
.sostenible-section::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.sostenible-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(191, 134, 13, 0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.sostenible-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sostenible-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sostenible-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald-light);
    padding: 6px 16px;
    border-radius: var(--rounded-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sostenible-content h2 {
    color: #ffffff !important;
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0;
}

.sostenible-content .body-lg {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sostenible-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.sostenible-feature-card {
    display: flex;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--rounded-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sostenible-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.sostenible-feature-card .feature-icon {
    font-size: 1.8rem;
    color: var(--emerald-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.sostenible-feature-card .feature-text h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.sostenible-feature-card .feature-text p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.sostenible-cta {
    margin-top: 10px;
}

.btn-sostenible {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--emerald-light) 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: var(--rounded-md);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-sostenible:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #10b981 0%, #10b981 100%);
}

.sostenible-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.seal-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
}

.floating-seal {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(16, 185, 129, 0.25));
    animation: floatingSeal 6s ease-in-out infinite;
}

@keyframes floatingSeal {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.partnership-box {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--rounded-md);
    padding: 16px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.partner-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.partner-logo[src*="verde-confort"] {
    height: 38px;
}

.partner-logo[src*="doral-inn"] {
    height: 48px;
}

.logo-connector {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 300;
}

.partnership-text {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin: 0;
}

/* ==========================================================================
   MODAL DIALOG & CAROUSEL STYLING
   ========================================================================== */

.certificado-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certificado-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content-wrapper {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    border-radius: var(--rounded-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.certificado-modal.active .modal-content-wrapper {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--on-surface);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--error);
    background: #f1f5f9;
}

.modal-body {
    padding: 30px;
}

.modal-intro-text {
    color: var(--on-surface-variant);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Carousel controls & container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--rounded-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.carousel-prev,
.carousel-next {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--on-surface);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 5;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* Certificate Card Rendering */
.certificado-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    aspect-ratio: 1.414 / 1;
    background: #f8fafc;
    overflow: hidden;
    border-radius: var(--rounded-sm);
}

.cert-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 8.5% 10% 8% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: #1e293b;
}

.cert-number {
    position: absolute;
    top: 6%;
    right: 6%;
    font-family: monospace;
    font-size: clamp(8px, 1.8vw, 13px);
    color: #64748b;
    font-weight: 600;
}

.cert-recipient {
    font-family: "Great Vibes", "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 4.5vw, 36px);
    font-weight: 700;
    color: #14532d;
    margin-top: 19%;
    width: 80%;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
    padding-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cert-detail {
    font-family: var(--font-body);
    font-size: clamp(9px, 2.2vw, 15px);
    line-height: 1.6;
    color: #334155;
    margin-top: 3%;
    max-width: 88%;
}

.cert-meta {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: clamp(7px, 1.6vw, 11px);
    color: #64748b;
    margin-top: auto;
    padding-bottom: 12%;
    font-weight: 500;
}

.cert-signature {
    position: absolute;
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
    height: 16%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS (MOBILE FIRST)
   ========================================================================== */

@media (max-width: 992px) {
    .sostenible-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sostenible-media {
        order: -1;
        gap: 30px;
    }
    
    .seal-wrapper {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .sostenible-section {
        padding: 60px 0;
    }
    
    .sostenible-content h2 {
        font-size: 1.8rem;
    }
    
    .sostenible-content .body-lg {
        font-size: 1rem;
    }
    
    .sostenible-feature-card {
        padding: 16px;
        gap: 16px;
    }
    
    .sostenible-feature-card .feature-icon {
        font-size: 1.5rem;
    }
    
    .sostenible-feature-card .feature-text h4 {
        font-size: 1.05rem;
    }
    
    .sostenible-feature-card .feature-text p {
        font-size: 0.88rem;
    }
    
    .modal-content-wrapper {
        border-radius: var(--rounded-md);
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-intro-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .carousel-container {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .sostenible-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-sostenible {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .partner-logo {
        height: 32px;
    }
    
    .partner-logo[src*="verde-confort"] {
        height: 28px;
    }
    
    .partner-logo[src*="doral-inn"] {
        height: 36px;
    }
    
    .seal-wrapper {
        width: 160px;
        height: 160px;
    }
}


/* ==========================================================================
   FLOATING CARDS - GREEN SEAL & CERTIFICATE DISPLAY
   ========================================================================== */

.cards-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.media-card {
    position: absolute;
    border-radius: var(--rounded-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-seal {
    width: 220px;
    height: 220px;
    left: 8%;
    top: 15%;
    z-index: 1;
    transform: rotate(-8deg);
    animation: floatSealCard 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #ffffff;
}

.card-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-cert {
    width: 240px;
    height: 380px;
    right: 8%;
    top: 5%;
    z-index: 2;
    transform: rotate(6deg);
    animation: floatCertCard 6s ease-in-out infinite 1s;
    background: #ffffff;
    padding: 4px;
}

.card-cert img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--rounded-sm);
}

/* Card Hover Dynamics */
.media-card:hover {
    z-index: 10;
    transform: scale(1.08) rotate(0deg) translateY(-18px) !important;
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
    animation-play-state: paused; /* stop floating animation while hovering */
}

/* Animations for Independant Floating */
@keyframes floatSealCard {
    0% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-12px) rotate(-6deg); }
    100% { transform: translateY(0) rotate(-8deg); }
}

@keyframes floatCertCard {
    0% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
    100% { transform: translateY(0) rotate(6deg); }
}

/* Responsive Rules for Mobile Devices */
@media (max-width: 992px) {
    .cards-container {
        height: 350px;
    }
    
    .card-seal {
        width: 180px;
        height: 180px;
        left: 10%;
        top: 20%;
    }
    
    .card-cert {
        width: 200px;
        height: 320px;
        right: 10%;
        top: 5%;
    }
}

@media (max-width: 768px) {
    .cards-container {
        height: 300px;
    }
    
    .card-seal {
        width: 140px;
        height: 140px;
        left: 12%;
        top: 25%;
    }
    
    .card-cert {
        width: 160px;
        height: 250px;
        right: 12%;
        top: 5%;
    }
}

@media (max-width: 480px) {
    .cards-container {
        height: 250px;
        margin: 10px 0;
    }
    
    .card-seal {
        width: 110px;
        height: 110px;
        left: 5%;
        top: 25%;
    }
    
    .card-cert {
        width: 120px;
        height: 190px;
        right: 5%;
        top: 10%;
    }
}


/* ==========================================================================
   VERTICAL SPACING OPTIMIZATIONS FOR SOSTENIBLE & USP SECTIONS
   ========================================================================== */

.usp-section {
    margin-bottom: 40px !important; /* Reduced from 80px */
}

.sostenible-section {
    padding: 50px 0 !important; /* Reduced from 100px */
    margin-bottom: 50px !important; /* Reduced from 80px */
}

/* Mobile responsive padding overrides */
@media (max-width: 768px) {
    .usp-section {
        margin-bottom: 25px !important;
    }
    
    .sostenible-section {
        padding: 35px 0 !important;
        margin-bottom: 35px !important;
    }
}


/* ==========================================================================
   ROOM FEATURES DESIGN OPTIMIZATIONS (TRANSPARENT BACKGROUNDS)
   ========================================================================== */

.room-features {
    gap: 10px 16px !important; /* Increase gap for clean layout */
}

.room-features span {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 0.85rem !important; /* Slightly larger for clear reading */
    font-weight: 600 !important;
    color: var(--primary) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}


/* Promo Carbono Neutral en Navbar */
.nav-promo {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nav-promo .promo-title {
    font-size: 0.95rem;
    color: #1a743b; /* Verde oscuro */
    font-weight: 700;
}

.nav-promo .promo-subtitle {
    font-size: 0.8rem;
    color: #f4b449; /* Dorado/Oro */
    font-weight: 600;
    margin-top: 1px;
}

/* Reglas adaptativas para dispositivos móviles */
@media (max-width: 768px) {
    .navbar {
        height: auto !important;
        padding-bottom: 8px !important;
    }
    
    .nav-container {
        flex-wrap: wrap !important;
        height: auto !important;
        padding: 5px 10px !important;
    }
    
    .nav-promo {
        display: flex !important;
        width: 100% !important;
        order: 3 !important;
        margin-top: 6px !important;
        padding-top: 6px !important;
        border-top: 1px solid rgba(41, 184, 92, 0.1) !important;
    }
    
    .nav-promo .promo-title {
        font-size: 0.8rem !important;
    }
    
    .nav-promo .promo-subtitle {
        font-size: 0.72rem !important;
    }
    
    /* Empujar el contenido del hero hacia abajo para evitar solapamiento con el navbar fijo de móviles */
    .hero-content {
        margin-top: 70px !important;
    }
}

/* Selector de Idiomas Dropdown */
.lang-selector-container {
    position: relative;
    display: inline-block;
    margin-right: 12px;
}

.btn-lang {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 8px 14px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn-lang:hover {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 6px;
    z-index: 1000;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-option {
    padding: 8px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s ease;
}

.lang-option:hover {
    background: #f1f5f9;
    color: #0f172a;
}

@media (max-width: 768px) {
    .btn-lang {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .lang-dropdown {
        min-width: 110px;
    }
    
    .lang-option {
        font-size: 0.78rem;
    }
}

/* WeChat Modal Styling */
.wechat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.wechat-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wechat-modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: var(--rounded-lg, 24px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10;
    animation: wechatScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

@keyframes wechatScaleUp {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.wechat-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.wechat-modal-close:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.wechat-modal-header {
    background: #07C160;
    padding: 24px;
    text-align: center;
    color: #ffffff;
}

.wechat-modal-header i {
    font-size: 3rem;
    margin-bottom: 8px;
    display: block;
}

.wechat-modal-header h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.wechat-modal-body {
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wechat-instructions {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 0;
}

.wechat-qr-container {
    width: 180px;
    height: 180px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    box-sizing: border-box;
}

.wechat-qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wechat-qr-fallback {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    gap: 8px;
}

.wechat-qr-fallback i {
    font-size: 2.5rem;
    color: #07C160;
}

.wechat-qr-fallback span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wechat-id-container {
    width: 100%;
    box-sizing: border-box;
}

.wechat-id-container label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    text-align: left;
}

.wechat-copy-box {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.wechat-copy-box input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
    box-sizing: border-box;
}

.wechat-copy-box button {
    background: #07C160;
    color: #ffffff;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wechat-copy-box button:hover {
    background: #06ae56;
}

/* WeChat Brand Styles for dynamic buttons swap */
.btn-wechat {
    background: #07C160 !important;
    border-color: #07C160 !important;
}
.btn-wechat:hover {
    background: #06ae56 !important;
    border-color: #06ae56 !important;
    transform: translateY(-2px) !important;
}
