/* ------------------------------------------------------------------
 * Módulo    : Carrusel de Canales de TV + Tienda + Noticias + Lugares
 * Adaptado al tema Sativa (IMediapixel) - tv-channels.css
 * Paleta    : acento #f88c00 · texto títulos #3f3f3f (Lato)
 *             texto cuerpo #5f5f5f (Roboto) · borde claro #eaeaea
 * ------------------------------------------------------------------ */

/* ================================================================
   1. CANALES DE TV
   ================================================================ */

.bo-tv-slider {
    padding: 4px;
}

.bo-tv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    padding: 18px 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
    position: relative;
}
.bo-tv-card:hover,
.bo-tv-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 25px rgba(0, 0, 0, .16);
    border-color: #f88c00;
    outline: none;
}

.bo-tv-logo-wrap {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.bo-tv-logo-wrap img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.bo-tv-play-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #f88c00;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    font-size: 16px;
}
.bo-tv-card:hover .bo-tv-play-hint {
    opacity: 1;
    transform: scale(1);
}

.bo-tv-name {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .3px;
    text-align: center;
    color: #3f3f3f;
    line-height: 1.3;
}

.bo-tv-pais {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 300;
    color: #999999;
    margin-top: 3px;
    text-align: center;
}

.bo-tv-nav {
    color: rgba(0, 0, 0, .3);
    font-size: 30px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease-in-out;
}
.bo-tv-nav:hover {
    color: #f88c00;
}

.bo-tv-modal-dialog {
    max-width: 860px;
}
.bo-tv-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 2px;
    overflow: hidden;
}
.bo-tv-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: block;
}
.bo-tv-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.bo-tv-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .2s ease-in-out;
}
.bo-tv-btn:hover {
    background-color: #f88c00;
}

.bo-tv-player-wrap:fullscreen,
.bo-tv-player-wrap:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}
.bo-tv-player-wrap:fullscreen .bo-tv-video,
.bo-tv-player-wrap:-webkit-full-screen .bo-tv-video {
    object-fit: contain;
}

#bo-tv-modal-title {
    font-size: 20px;
}

#bo-tv-modal {
    z-index: 10000;
}

/* ================================================================
   2. TIENDA
   ================================================================ */

.bo-shop-slider {
    padding: 4px;
}

.bo-shop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    padding: 22px 14px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
    position: relative;
}
.bo-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 25px rgba(0, 0, 0, .12);
    border-color: #f88c00;
}

.bo-shop-icon-wrap {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.bo-shop-icon {
    color: #cccccc;
}

.bo-shop-name {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
    text-align: center;
    color: #3f3f3f;
    line-height: 1.3;
}

.bo-shop-price {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #f88c00;
    margin-top: 6px;
    text-align: center;
}

.bo-shop-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #ffffff;
    background: #cccccc;
    border: none;
    border-radius: 2px;
    cursor: not-allowed;
    transition: background-color .2s ease-in-out;
}
.bo-shop-btn:disabled {
    background: #cccccc;
    color: #eeeeee;
}

.bo-shop-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #f8f8f8;
    border: 1px dashed #d0d0d0;
    border-radius: 2px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.bo-shop-soon > span[data-uk-icon] {
    color: #bbbbbb;
}

/* ================================================================
   3. NOTICIAS
   ================================================================ */

.bo-news-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
    text-decoration: none;
}
.bo-news-card:hover,
.bo-news-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    border-color: #f88c00;
    text-decoration: none;
    outline: none;
}

.bo-news-thumb {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 2px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bo-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease-in-out;
}
.bo-news-card:hover .bo-news-thumb img {
    transform: scale(1.04);
}

.bo-news-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 0;
}

.bo-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.bo-news-source {
    display: inline-block;
    padding: 3px 10px;
    background: #f88c00;
    color: #ffffff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-radius: 2px;
}

.bo-news-date {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    color: #999999;
}

.bo-news-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #3f3f3f;
    line-height: 1.35;
    margin: 0 0 6px 0;
    transition: color .2s ease-in-out;
}
.bo-news-card:hover .bo-news-title {
    color: #f88c00;
}

.bo-news-excerpt {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #5f5f5f;
    line-height: 1.5;
    margin: 0;
}

.bo-news-arrow {
    flex-shrink: 0;
    align-self: center;
    color: #d0d0d0;
    transition: color .2s ease-in-out, transform .2s ease-in-out;
}
.bo-news-card:hover .bo-news-arrow {
    color: #f88c00;
    transform: translateX(3px);
}

@media (max-width: 959px) {
    .bo-news-thumb {
        width: 110px;
        height: 80px;
    }
}

@media (max-width: 639px) {
    .bo-news-card {
        gap: 12px;
        padding: 12px 14px;
    }
    .bo-news-thumb {
        width: 90px;
        height: 68px;
    }
    .bo-news-title {
        font-size: 14px;
    }
    .bo-news-excerpt {
        font-size: 12px;
    }
    .bo-news-arrow {
        display: none;
    }
}

/* ================================================================
   4. LUGARES (Booking / Airbnb style)
   ================================================================ */

.bo-place-card {
    display: flex;
    width: 100%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
}
.bo-place-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
    border-color: #f88c00;
}

/* --- Galeria / Foto --- */
.bo-place-gallery {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    min-height: 220px;
    background: #f5f5f5;
    overflow: hidden;
}
.bo-place-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease-in-out;
}
.bo-place-card:hover .bo-place-gallery img {
    transform: scale(1.03);
}

.bo-place-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: #f88c00;
    color: #ffffff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 2px;
    z-index: 2;
}

/* --- Info --- */
.bo-place-info {
    flex: 1;
    min-width: 0;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bo-place-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.bo-place-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.bo-place-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-place-title-wrap {
    min-width: 0;
}

.bo-place-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #3f3f3f;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.bo-place-stars {
    display: flex;
    gap: 2px;
}

.bo-place-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bo-place-details p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
    color: #5f5f5f;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bo-place-details p > span[data-uk-icon] {
    color: #f88c00;
    flex-shrink: 0;
}

.bo-place-web {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #f88c00;
    text-decoration: none;
    margin-top: 4px;
    transition: color .2s ease-in-out;
}
.bo-place-web:hover {
    color: #d67600;
    text-decoration: underline;
}
.bo-place-web > span[data-uk-icon] {
    flex-shrink: 0;
}

/* --- Mapa --- */
.bo-place-map {
    flex-shrink: 0;
    width: 320px;
    min-height: 220px;
    background: #e0e0e0;
    position: relative;
}
.bo-place-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- Responsive Lugares --- */
@media (max-width: 1199px) {
    .bo-place-card {
        flex-direction: column;
    }
    .bo-place-gallery {
        width: 100%;
        height: 200px;
        min-height: auto;
    }
    .bo-place-map {
        width: 100%;
        height: 220px;
        min-height: auto;
    }
}

@media (max-width: 639px) {
    .bo-place-info {
        padding: 16px;
    }
    .bo-place-title {
        font-size: 16px;
    }
    .bo-place-gallery {
        height: 160px;
    }
    .bo-place-map {
        height: 180px;
    }
    .bo-place-header {
        gap: 10px;
    }
    .bo-place-logo {
        width: 40px;
        height: 40px;
    }
}