:root {
    --brand-yellow: #FFC05C;
    --brand-blue: #118C9D;
    --brand-green: #87C04F;
    --brand-orange: #EE7435;
    --brand-pink: #FF3366;
    
    --bg-color: #F8FAFC;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-glass: rgba(255, 255, 255, 0.92);
    --text-dark: #1E293B;
    --text-gray: #475569;
    --white: #ffffff;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body { 
    font-family: var(--font-body); 
    background-color: var(--bg-color); 
    background-image: url('assets/fondo2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-dark); 
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    padding: 10px 0;
    border-bottom: 4px solid var(--brand-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.nav-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { height: 55px; }

.nav-links { display: flex; gap: 15px; align-items: center; }

.nav-link { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 700; 
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link:hover { color: var(--brand-blue); }

/* Botones */
.btn-nav, .btn-primary, .btn-buy { 
    background: var(--brand-blue); 
    color: white; 
    padding: 10px 22px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 0 #0d6e7a;
    transition: all 0.2s;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-nav:hover, .btn-primary:hover, .btn-buy:hover { 
    background: #0d7a86;
    transform: translateY(-2px);
}

.btn-nav:active, .btn-primary:active, .btn-buy:active { 
    transform: translateY(2px); 
    box-shadow: 0 0 0; 
}

.btn-buy { padding: 10px 18px; font-size: 0.85rem; }

.btn-account {
    background: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-account:hover {
    background: var(--brand-blue);
    color: white;
}

.btn-cart {
    background: white;
    border: 2px solid var(--brand-yellow);
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--brand-pink);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 2001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--brand-blue);
    border-radius: 4px;
    transition: 0.3s;
}

/* Hero */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 85vh;
}

.hero-text { 
    flex: 1; 
    background: var(--surface-glass);
    padding: 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
}

.badge-top {
    display: inline-block;
    background: var(--brand-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.headline { 
    font-family: var(--font-heading); 
    font-size: 3.2rem; 
    line-height: 1.1; 
    margin-bottom: 20px; 
    color: var(--text-dark);
}

.text-yellow { color: var(--brand-orange); }
.text-pink { color: var(--brand-pink); }

.subtitle { 
    font-size: 1.15rem; 
    color: var(--text-gray); 
    margin-bottom: 30px; 
    font-weight: 600;
}

.hero-visual { 
    flex: 1; 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.main-product-img { 
    width: 100%; 
    max-width: 450px; 
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); 
    animation: float 3s ease-in-out infinite;
}

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

/* Features */
.features { padding: 80px 0; text-align: center; background: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 50px; }

.title-white { 
    font-family: var(--font-heading); 
    font-size: 2.2rem; 
    display: inline-block; 
    background: white; 
    padding: 15px 35px; 
    border-radius: 20px; 
    box-shadow: var(--shadow-md);
}

.features-grid { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; 
    padding: 0 20px;
}

.feature-card { 
    background: white; 
    padding: 35px 25px; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-md); 
    transition: 0.3s;
}

.feature-card:hover { transform: translateY(-8px); }

.feature-icon { font-size: 3rem; margin-bottom: 15px; display: block; }

.feature-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; }

.feature-card p { color: var(--text-gray); font-weight: 600; }

/* Shop */
.shop-section { padding: 60px 0; max-width: 1200px; margin: 0 auto; }

.shop-header {
    background: var(--surface-glass);
    padding: 35px 20px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    margin: 0 20px 50px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.title-pink { 
    font-family: var(--font-heading); 
    font-size: 2.4rem; 
    color: var(--brand-blue); 
    margin-bottom: 12px; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-subtitle { color: var(--text-gray); font-size: 1.1rem; font-weight: 600; }

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

.product-card { 
    background: white; 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-md); 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

.product-img-box { 
    height: 280px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #F8FAFC; 
    position: relative;
}

.product-img-box img { width: 70%; }

.badge-hot {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-pink);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.product-details { padding: 25px; }

.product-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }

.product-desc { color: var(--text-gray); margin-bottom: 20px; font-weight: 600; font-size: 0.95rem; }

.price-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

.price { font-size: 1.3rem; font-weight: 800; color: var(--brand-blue); }

/* CTA Banner */
.cta-banner { 
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange)); 
    padding: 60px 20px; 
    text-align: center;
    margin: 40px 20px;
    border-radius: var(--radius-lg);
}

.cta-content h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; color: white; }
.cta-content p { font-size: 1.1rem; font-weight: 700; color: white; }

/* Footer */
footer { background: var(--text-dark); padding: 40px 20px; text-align: center; margin-top: 40px; }
footer .logo img { height: 45px; margin-bottom: 15px; }
footer p { color: var(--text-gray); font-size: 0.95rem; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active { display: flex; }

.modal-content { 
    background: white; 
    padding: 35px; 
    border-radius: var(--radius-lg); 
    max-width: 480px; 
    width: 100%; 
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-gray);
    line-height: 1;
}

.close-btn:hover { color: var(--brand-pink); }

.modal-header h2 { 
    font-family: var(--font-heading); 
    color: var(--brand-blue); 
    font-size: 1.6rem; 
    margin-bottom: 10px; 
}

.modal-body p { color: var(--text-gray); margin-bottom: 20px; font-weight: 600; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); font-size: 0.95rem; }

.input-cute { 
    width: 100%; 
    padding: 12px 18px; 
    border-radius: var(--radius-md); 
    border: 2px solid #E2E8F0; 
    font-family: inherit; 
    font-size: 1rem;
    transition: 0.3s;
}

.input-cute:focus { border-color: var(--brand-blue); outline: none; }

.pet-selector { display: flex; gap: 12px; }

.btn-pet { 
    flex: 1; 
    padding: 12px; 
    border-radius: var(--radius-md); 
    border: 2px solid #E2E8F0; 
    background: white; 
    cursor: pointer; 
    font-weight: 700; 
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-pet.active { border-color: var(--brand-blue); background: rgba(17, 140, 157, 0.1); color: var(--brand-blue); }

.price-total { 
    background: #F8FAFC; 
    padding: 15px; 
    border-radius: var(--radius-md); 
    display: flex; 
    justify-content: space-between; 
    margin: 20px 0;
    font-weight: 700;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 2500;
    transition: 0.4s;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.cart-panel.show { right: 0; }

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 { font-family: var(--font-heading); font-size: 1.4rem; }

.close-cart-btn {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-gray);
}

.cart-items { flex: 1; padding: 20px; overflow-y: auto; }

.empty-cart-msg { text-align: center; color: var(--text-gray); padding: 40px 20px; }

.cart-footer { padding: 20px; border-top: 1px solid #E2E8F0; }

.cart-total { 
    display: flex; 
    justify-content: space-between; 
    font-size: 1.2rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2400;
}

.cart-overlay.show { display: block; }

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--brand-green);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    z-index: 3500;
    transition: 0.4s;
    box-shadow: var(--shadow-md);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 4000;
    justify-content: center;
    align-items: center;
}

.lightbox.show { display: flex; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-content { max-width: 90%; max-height: 90%; border-radius: 10px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.fade-up { transform: translateY(20px); }
.fade-up.active { transform: translateY(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.scale-up { transform: scale(0.9); }
.scale-up.active { transform: scale(1); }

/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Tablet y pantallas medianas */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { left: -15%; }
    .nav-links.show { left: 0; }
    
    .mobile-menu-toggle { display: flex; }
    
    .hero { 
        flex-direction: column; 
        text-align: center; 
        padding-top: 120px; 
        gap: 35px; 
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero-text { padding: 30px 25px; }
    
    .headline { font-size: 2.5rem; }
    
    .hero-visual { width: 100%; }
    .main-product-img { max-width: 350px; }
    
    .features { padding: 60px 0; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    
    .shop-section { padding: 50px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

/* Celulares grandes */
@media (max-width: 768px) {
    .nav-content { padding: 0 15px; }
    .logo img { height: 45px; }
    
    .nav-links {
        top: 60px;
        width: 100%;
        height: calc(100vh - 60px);
        left: -100%;
    }
    
    .nav-links.show { left: 0; }
    
    .nav-link { font-size: 1.1rem; }
    
    .btn-nav, .btn-account, .btn-cart {
        width: 90%;
        text-align: center;
        justify-content: center;
    }
    
    .btn-nav { padding: 12px 20px; }
    
    .hero { padding: 110px 15px 40px; gap: 30px; }
    .hero-text { padding: 25px 20px; }
    
    .headline { font-size: 2rem; }
    .badge-top { font-size: 0.8rem; padding: 6px 16px; }
    .subtitle { font-size: 1rem; }
    
    .main-product-img { max-width: 280px; }
    
    .features-grid { 
        grid-template-columns: 1fr; 
        max-width: 400px;
    }
    
    .title-white { font-size: 1.6rem; padding: 12px 25px; }
    
    .title-pink { font-size: 1.6rem; }
    .shop-subtitle { font-size: 1rem; }
    
    .products-grid { 
        grid-template-columns: 1fr; 
        padding: 0 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-img-box { height: 220px; }
    .product-img-box img { width: 65%; }
    
    .price-row { flex-direction: column; align-items: stretch; text-align: center; }
    .btn-buy { width: 100%; }
    
    .cta-banner { padding: 50px 15px; margin: 30px 15px; }
    .cta-content h2 { font-size: 1.4rem; }
    
    .shop-header { margin: 0 15px 40px; padding: 25px 15px; }
}

/* Celulares pequeños */
@media (max-width: 480px) {
    .navbar { padding: 8px 0; }
    .logo img { height: 40px; }
    
    .nav-links { top: 55px; }
    
    .mobile-menu-toggle span { width: 22px; }
    
    .hero { padding: 100px 15px 30px; }
    .hero-text { padding: 20px 15px; border-radius: var(--radius-md); }
    
    .headline { font-size: 1.7rem; }
    
    .badge-top { font-size: 0.75rem; margin-bottom: 15px; }
    
    .features { padding: 50px 0; }
    .title-white { font-size: 1.4rem; padding: 10px 20px; }
    
    .feature-card { padding: 25px 20px; }
    .feature-icon { font-size: 2.5rem; }
    
    .shop-header { margin: 0 10px 30px; padding: 20px 15px; }
    .title-pink { font-size: 1.3rem; }
    
    .products-grid { gap: 20px; }
    .product-img-box { height: 200px; }
    .product-details { padding: 20px; }
    .product-title { font-size: 1.3rem; }
    
    .cta-banner { margin: 25px 10px; padding: 40px 15px; }
    .cta-content h2 { font-size: 1.2rem; }
    
    .modal-content { padding: 25px 20px; }
    .modal-header h2 { font-size: 1.4rem; }
    
    .cart-panel { max-width: 100%; }
}

/* Celulares muy pequeños */
@media (max-width: 360px) {
    .headline { font-size: 1.5rem; }
    .title-white { font-size: 1.2rem; }
    .title-pink { font-size: 1.1rem; }
    
    .product-title { font-size: 1.2rem; }
    .price { font-size: 1.1rem; }
    
    .btn-nav, .btn-account { padding: 10px 16px; font-size: 0.85rem; }
}

/* Scrollbar personalizada */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #0d6e7a; }

/* Cart Items */
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    position: relative;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.cart-item-price {
    font-weight: 800;
    color: var(--brand-blue);
    font-size: 0.9rem;
}

.remove-item-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1rem;
}

.remove-item-btn:hover {
    color: var(--brand-pink);
}

/* Lightbox active */
.lightbox.active {
    display: flex;
}

/* Toast show */
.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Order History */
.order-card {
    background: #F8FAFC;
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.order-items {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.order-total {
    font-weight: 800;
    color: var(--brand-blue);
}

/* Particle background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    opacity: 0.15;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Modal show/hide */
.modal.active { display: flex; }
.cart-overlay.active { display: block; }

/* ============================================
   MODAL HOUSE PREVIEW
   ============================================ */
.modal-house {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 5000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-house.active { display: flex; }

.modal-house-close {
    position: fixed;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 5001;
    transition: 0.3s;
    line-height: 1;
}

.modal-house-close:hover {
    color: var(--brand-pink);
    transform: rotate(90deg);
}

.modal-house-content {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-house-image {
    flex: 1;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 400px;
}

.modal-house-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.modal-house-image img:hover {
    transform: scale(1.05);
}

.modal-house-details {
    flex: 1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-house-details h2 {
    font-family: var(--font-heading);
    color: var(--brand-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-house-details .house-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.modal-house-details .house-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 30px;
}

.modal-house-details .house-actions .btn-primary {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Modal House */
@media (max-width: 768px) {
    .modal-house-content {
        flex-direction: column;
        max-width: 450px;
    }
    
    .modal-house-image {
        min-height: 280px;
        padding: 20px;
    }
    
    .modal-house-image img {
        max-width: 250px;
    }
    
    .modal-house-details {
        padding: 25px;
    }
    
    .modal-house-details h2 {
        font-size: 1.6rem;
    }
    
    .modal-house-details .house-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .modal-house-details .house-price {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .modal-house-close {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modal-house-image {
        min-height: 220px;
    }
    
    .modal-house-image img {
        max-width: 200px;
    }
    
    .modal-house-details {
        padding: 20px;
    }
    
    .modal-house-details h2 {
        font-size: 1.4rem;
    }
    
    .modal-house-details .house-price {
        font-size: 1.4rem;
    }
}