/* =========================
   Single Page - Chollo
========================= */

/* Layout Principal */
.single-chollo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chollo-container {
    max-width: 1100px;  /* ancho máximo del contenido */
    margin: 40px auto;  /* centrado horizontal + espacio arriba/abajo */
    padding: 0 20px;    /* aire lateral en pantallas pequeñas */
}

.chollo-header {
    display: flex;
    gap: 20px;
    /*align-items: flex-start;*/
    align-items: stretch; /* que los hijos ocupen toda la altura disponible */
}


/* Imagen del chollo */


.chollo-image {
    flex: 0 0 320px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
}

.chollo-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Contenido de la tarjeta */

.chollo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between; */
    margin:20px 0 0 0;
}


.chollo-content {
    width: 100%;
    margin:40px 0 0 0;
}

.chollo-content-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.chollo-content-separator {
    margin: 10px 0 24px;
    border: none;
    height: 1px;
    background-color: #e0e0e0;
}

/* Título */
.chollo-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.chollo-title a {
    color: #333;
    text-decoration: none;
}

.chollo-title a:hover {
    text-decoration: underline;
}


/* Precios */
.chollo-price {
    font-family: 'Roboto', sans-serif;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 8px 0;
}


.precio-oferta {
    font-size: 22px;
    font-weight: 400;
    color: #FFA726;
}

.precio-original {
    font-size: 16px;
    text-decoration: line-through;
    color: #999999;
}

.descuento {
    font-size: 16px;
    font-weight: 600;
    color: #27AE60;
}

.pre-tienda {
    font-size: 16px;
    color: #999999;
}

.chollo-tienda {
    margin-top: 6px;
}

.tienda {
    display: inline-block;      /* para que padding funcione como caja */
    background-color: #ddd;     /* gris claro */
    color: #333;                /* texto oscuro */
    padding: 4px 10px;          /* espacio interno */
    border-radius: 12px;        /* bordes redondeados */
    font-size: 14px;
    font-weight: 400;
}



/* Botón “Ver chollo” */

.chollo-actions {
    margin-top: auto; 
}

.chollo-link {
    text-decoration: none;
    color: #fff;
    background-color: #1573A9;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s;

    border: 2px solid transparent; /* base invisible */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.chollo-link:hover {
    box-shadow: 0 0 0 6px rgba(21,115,169,0.3); /* borde expandido */
}

.chollo-link-icon {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s;
}

.chollo-link:hover .chollo-link-icon {
    transform: translateX(3px); /* flecha se mueve ligeramente al hover */
}

/* Separador y Disclaimer */
.chollo-separator {
    margin: 40px 0 24px;
    border: none;
    height: 1px;
    background-color: #e0e0e0;
}

.chollo-disclaimer {
    font-size: 13px;
    color: #777;
    background-color: #f7f7f7;
    padding: 12px 16px;
    border-radius: 6px;
    line-height: 1.4;
}

