/* ====================== */
/* Popular2 Slider        */
/* ====================== */
.popular2-carousel {
    position: relative;
    width: 550px;
    height: 300px;
    margin: 20px auto;
    overflow: hidden;
    background: url('https://respaldo.ajiperuprovo.com/wp-content/uploads/2025/08/black-background.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.popular2-window {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.popular2-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    align-items: stretch;
}

.popular2-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
}

.popular2-top {
    display: flex;
    flex: 1;
    gap: 20px;
}

.popular2-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popular2-left p {
    margin: 0;
    font-size: 1rem;
    color: #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular2-nombre {
    font-size: 34px !important;
    font-weight: bold;
    color: white !important;
    margin-bottom: 10px;
}

.popular2-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen circular */
.popular2-imagen {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popular2-precio-circle {
    font-weight: bold;
    font-size: 28px !important;
    color: yellow !important;
   
}

.popular2-imagen img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transform: scale(1.2);
}

/* Botón */
.popular2-button {
    display: inline-block;
    text-align: center;
    background-color: #F44336;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    align-self: center;
    margin-top: 10px;
}

.popular2-button:hover {
    background-color: #d32f2f;
}

/* Flechas */
.popular2-prev,
.popular2-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    z-index: 10;
    color: #ffffff9c;
    outline: none;
}

.popular2-prev:hover,
.popular2-next:hover {
    color: #FFD700;
    background: none;
}

.popular2-prev:focus,
.popular2-next:focus {
    outline: none;
    box-shadow: none;
}

.popular2-prev { left: 5px; }
.popular2-next { right: 5px; }

/* Responsive */
@media(max-width:768px){
    .popular2-carousel { width: 95%; height: auto; }
    .popular2-slide { flex-direction: column; text-align: center; }
    .popular2-top { flex-direction: column; align-items: center; }
    .popular2-button { margin-top: 20px; }
}