/* ==========================================================
   Henko Trust Signals — v1.0.0
   ========================================================== */

/* ---- Íconos de pago ---- */
.henko-pay {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.henko-pay img {
    height: 24px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}
.henko-pay img:hover { opacity: 1; }

.henko-pay-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- SSL bar ---- */
.henko-ssl {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2e7d32;
    background: #f1f8f1;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 7px 12px;
    margin-bottom: 12px;
}
.henko-ssl svg { flex-shrink: 0; color: #2e7d32; }

/* ---- Badges ---- */
.henko-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.henko-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
    text-decoration: none;
}
.henko-badge svg { color: #777; flex-shrink: 0; }
.henko-badge:hover { color: #222; }
.henko-badge:hover svg { color: #444; }

/* ---- Devolución ---- */
.henko-devolucion {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}
.henko-devolucion svg { flex-shrink: 0; margin-top: 1px; }
.henko-devolucion a {
    color: inherit;
    text-decoration: underline;
}
.henko-devolucion a:hover { color: #222; }

/* ---- Ficha de producto ---- */
.henko-product-trust {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}
.henko-pay-wrap { margin-top: 10px; }

/* ---- Carrito ---- */
.henko-cart-trust {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.henko-cart-trust .henko-pay {
    margin-bottom: 10px;
    justify-content: center;
}

/* ---- Checkout ---- */
.henko-checkout-trust {
    margin-bottom: 16px;
}
.henko-checkout-trust .henko-pay {
    justify-content: center;
    padding: 10px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
}

/* ---- Footer ---- */
.henko-footer-trust {
    text-align: center;
    padding: 20px 16px;
    border-top: 1px solid #e8e8e8;
    margin-top: 20px;
}
.henko-footer-trust .henko-badges {
    justify-content: center;
    margin-bottom: 16px;
}
.henko-footer-pay { display: inline-block; }
.henko-footer-pay .henko-pay { justify-content: center; }

/* ---- WhatsApp flotante ---- */
.henko-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.henko-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
    color: #fff;
}
