/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.7.1787243385
Updated: 2026-08-20 16:29:45

*/

/* =============================================
   CAFÉ GUAYACÁN - Hover Overlay con info de ACF
   Desktop: hover sobre producto
   Mobile: botón ℹ️ con tap
   =============================================
   
   INSTRUCCIONES:
   Copia TODO este código al final de tu archivo style.css del child theme.
   ============================================= */

/* Contenedor de imagen - position relative para anclar el overlay */
.products li.product .woocommerce-LoopProduct-link,
.products li.product a.woocommerce-loop-product__link,
.woo-product-image,
.et_shop_image {
    position: relative !important;
    overflow: hidden;
}

/* El li.product como contenedor de referencia */
.products li.product {
    position: relative !important;
}

/* Panel overlay con la info del café */
.cafe-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    padding: 15px 18px;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

/* Cada fila de información */
.cafe-hover-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cafe-hover-row:last-child {
    border-bottom: none;
}

/* Label (Procedencia, Tipo Café, Altura) */
.cafe-hover-label {
    color: #d4a843;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Valor del campo */
.cafe-hover-value {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-align: right;
}

/* =============================================
   DESKTOP (> 768px): Hover sobre producto
   ============================================= */
@media (min-width: 769px) {
    .products li.product:hover .cafe-hover-info,
    .et_shop_image:hover .cafe-hover-info {
        transform: translateY(0);
        opacity: 1;
    }

    /* Ocultar botón info en desktop */
    .cafe-info-toggle {
        display: none !important;
    }
}

/* =============================================
   MOBILE (≤ 768px): Toggle con botón ℹ️
   ============================================= */

/* Botón ℹ️ */
.cafe-info-toggle {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    color: #333;
    transition: background 0.2s ease;
    padding: 0;
    line-height: 1;
}

/* Estado activo del botón */
.cafe-info-toggle.is-active {
    background: #d4a843;
    color: #fff;
}

@media (max-width: 768px) {
    /* Mostrar botón info solo en mobile */
    .cafe-info-toggle {
        display: flex;
    }

    /* Mostrar overlay cuando se activa con JS */
    .cafe-hover-info.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}