/* ---------------------------------------------
   ESTILOS BASE DEL CARRUSEL
----------------------------------------------*/
.chatty-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

/* Viewport */
.chatty-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slides wrapper */
.chatty-slides {
    display: flex;
    transition: transform 0.45s ease;
}

/* Slide */
.chatty-slide {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: inherit;
}

.chatty-slide img,
.chatty-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* ---------------------------------------------
   PLACEHOLDER (cuando está activado)
----------------------------------------------*/
.chatty-slide.placeholder {
    background: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #888;
    font-weight: 600;
}

/* ---------------------------------------------
   ARROWS PRO (opcionales)
----------------------------------------------*/
.chatty-prev,
.chatty-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    width: 42px;     /* Ajustado por JS */
    height: 42px;    /* Ajustado por JS */
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px; /* Ajustado por JS */
    transition: background 0.2s, transform 0.2s;
    opacity: 0.85;
}

.chatty-prev:hover,
.chatty-next:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-50%) scale(1.07);
}

/* Left */
.chatty-prev {
    left: 10px;
}

/* Right */
.chatty-next {
    right: 10px;
}

/* ---------------------------------------------
   DOTS
----------------------------------------------*/
.chatty-dots {
    text-align: center;
    margin-top: 10px;
}

.chatty-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.chatty-dot.active {
    background: #555;
}

/* ---------------------------------------------
   RESPONSIVE
----------------------------------------------*/
@media (max-width: 768px) {
    .chatty-prev,
    .chatty-next {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .chatty-prev,
    .chatty-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
