/* ====================== */
/* Cargar fuentes */
/* ====================== */

/*
┌───────────────────────────────────────────────────────────────┐
│ Fondo: rojo con fuego (imagen de fondo)                       │
│                                                               │
│ IZQ 20%   │           CENTRO 60%       │            DER 20%   │
│ [Logo]    │           Delicious        │            $Precio   │
├───────────────────────────────────────────────────────────────┤
│             Nombre del producto (Blackhawk)                   │
│                                                               │
│                   [IMAGEN DEL PRODUCTO]                       │
│                                                               │
│                     [VIEW MORE] BOTÓN                         │
└───────────────────────────────────────────────────────────────┘
*/

@font-face {
  font-family: 'Thirsty Script';
  src: url('./fonts/ThirstyScriptExtraboldDemo.woff2') format('woff2'),
       url('./fonts/ThirstyScriptExtraboldDemo.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

.delicious-text {
  font-family: 'Thirsty Script', cursive !important;
  color: #FFD700;
}

/* ====================== */
/* Slider Popular1 - Width fijo */
/* ====================== */
.popular1-carousel {
    position: relative;
    width: 480px;        /* ancho fijo */
    height: 590px;       /* alto fijo */
    margin: 0 auto;      /* centrado horizontal */
    overflow: hidden;
    background: url('https://respaldo.ajiperuprovo.com/wp-content/uploads/2025/09/Fondo-rojo-con-fuego.png') no-repeat center bottom;
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
}

.popular1-window {
    overflow: hidden;
    width: 100%;
}

.popular1-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.popular1-slide {
    flex: 0 0 400px; /* ancho de cada slide un poco menor al contenedor */
    margin: 0 10px;
    color: #fff;
    text-align: center;
}

.popular1-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.popular1-izq{
    padding-left:1em;
}
.popular1-izq img {
    width: 80px;
    height: auto;
}

.popular1-centro {
    padding-top: 4em !important;
}

.popular1-centro .delicious {
  font-family: 'Dancing Script', cursive !important;
  font-size: 44px;
  color: #FFD700;
}

.popular1-nombre {
    font-family: 'Knewave', cursive !important;
    font-size: 52px;
    color: white;
}

.popular1-precio-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    background: rgba(0,0,0,0.2); /* opcional para resaltar */
}


.popular1-imagen {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1em;
    border: 6px solid white;
}


.popular1-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular1-btn {
    display: inline-block;
    background-color: #ffa217;
    color: #fff;
    padding: 8px 18px;
    margin-top: 10px;
    margin-bottom: 20px; /* ✅ espacio extra hacia abajo */
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.popular1-btn:hover {
    background-color: #fdd835;
}

/* Botones del slider */
.popular1-prev,
.popular1-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;         /* sin fondo */
    border: none;             /* sin borde */
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    z-index: 10;
    color: #ffffff9c;
    outline: none;            /* quita el borde focus */
    box-shadow: none;         /* quita sombra gris */
}

.popular1-prev:hover,
.popular1-next:hover {
    color: #FFD700;           /* solo cambia el color */
    background: none;         /* asegura que no salga fondo */
}

.popular1-prev:focus,
.popular1-next:focus {
    outline: none; /* ✅ sin círculo al hacer click */
}

.popular1-prev { left: 5px; }
.popular1-next { right: 5px; }


/* Responsive */
@media (max-width: 480px) {
    .popular1-carousel { width: 90%; height: auto; }
    .popular1-slide { flex: 0 0 80%; }
    .popular1-izq img { width: 40px; }
    .popular1-imagen { width: 80px; height: 80px; }
    .popular1-nombre { font-size: 36px; }
}
@media (max-width: 768px) {
    .popular1-carousel { width: 95%; height: auto; }
    .popular1-slide { flex: 0 0 90%; }
    .popular1-nombre { font-size: 32px; }
    .popular1-imagen { width: 120px; height: 120px; }
}

