/* Estilos Modulares Frontend - WhatsApp Cotizador */
.wac-floating-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999998;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.wac-floating-trigger {
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wac-floating-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.wac-icon-svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}
.wac-modal-box {
    display: none;
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;
}
.wac-modal-box.active {
    display: block;
    animation: wacSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wacSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.wac-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}
.wac-modal-close:hover { color: #334155; }
.wac-modal-prompt {
    margin: 0 0 14px 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}
#wacModalInput {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
#wacModalInput:focus { border-color: #25D366; }
.wac-modal-btn {
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.wac-modal-btn:hover { background-color: #128C7E; }

/* Botón modular para fichas de WooCommerce */
.wac-woo-btn-wrapper {
    margin: 15px 0 25px 0;
    clear: both;
}
.wac-woo-action-btn {
    background-color: #e6fbf0;
    color: #0f766e;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.wac-woo-action-btn:hover {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-1px);
}
.wac-woo-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}