/* ===========================================
   NÓMADAS LISTING HERO HEADER - DISEÑO PREMIUM
   =========================================== */

.nomadas-listing-hero-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px 0 35px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.nomadas-listing-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fcc203 0%, #f5a623 50%, #fcc203 100%);
}

.nomadas-listing-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Título del Listing - Izquierda */
.nomadas-listing-title-wrap {
    flex: 1;
}

.nomadas-listing-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
}

.nomadas-listing-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background-color: #fcc203;
    padding: 2px 10px 3px;
    border-radius: 12px;
    margin-left: 10px;
    white-space: nowrap;
    vertical-align: middle;
}

/* Caja de Precio - Derecha - DISEÑO PREMIUM */
.nomadas-listing-price-wrap {
    min-width: 200px;
    margin-left: 30px;
    flex-shrink: 0;
}

.nomadas-price-box {
    background: linear-gradient(145deg, #6c98e1 0%, #5a8bd4 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(108, 152, 225, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nomadas-price-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 14px 50px rgba(108, 152, 225, 0.35),
        0 6px 16px rgba(0, 0, 0, 0.12);
}

.nomadas-price-main {
    text-align: center;
    padding: 18px 20px 14px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.nomadas-price-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nomadas-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nomadas-price-value .stm-currency {
    font-size: 26px;
    font-weight: 700;
}

/* Franja inferior - DISEÑO PREMIUM */
.nomadas-price-footer {
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 10px 15px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nomadas-price-footer span {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    display: block;
}

/* Precio original tachado */
.nomadas-price-original {
    margin-top: 10px;
    text-align: center;
}

.nomadas-price-original-label {
    font-size: 12px;
    color: #666;
    margin-right: 5px;
}

.nomadas-price-original-value {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Estados especiales */
.nomadas-price-box.nomadas-price-sold {
    background-color: #dc3545;
    padding: 20px;
    text-align: center;
}

.nomadas-price-box.nomadas-price-sold .nomadas-price-value {
    font-size: 24px;
}

.nomadas-price-box.nomadas-price-contact {
    background-color: #6c757d;
    padding: 20px;
    text-align: center;
}

/* ===========================================
   RESPONSIVE - Tablet
   =========================================== */

@media (max-width: 991px) {
    .nomadas-listing-title {
        font-size: 32px;
    }
    
    .nomadas-listing-badge {
        font-size: 20px;
    }
    
    .nomadas-listing-price-wrap {
        min-width: 170px;
        margin-left: 20px;
    }
    
    .nomadas-price-value {
        font-size: 28px;
    }
}

/* ===========================================
   RESPONSIVE - Mobile
   =========================================== */

@media (max-width: 767px) {
    .nomadas-listing-hero-header {
        padding: 25px 0;
    }
    
    .nomadas-listing-hero-inner {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .nomadas-listing-title-wrap {
        text-align: center;
    }
    
    .nomadas-listing-title {
        font-size: 26px;
    }
    
    .nomadas-listing-badge {
        font-size: 18px;
    }
    
    .nomadas-listing-price-wrap {
        margin-left: 0;
        min-width: auto;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .nomadas-price-value {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .nomadas-listing-title {
        font-size: 22px;
    }
    
    .nomadas-listing-badge {
        font-size: 16px;
    }
    
    .nomadas-price-value {
        font-size: 24px;
    }
}
