/* ================================
   ISA CHAT WIDGET - Minimal & Professional
   ================================ */

/* Variables */
:root {
    --isa-primary: #f97316;
    --isa-primary-dark: #ea580c;
    --isa-bg: #ffffff;
    --isa-text: #2f3034;
    --isa-text-light: #6b7280;
    --isa-border: #e5e7eb;
    --isa-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --isa-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Contenedor principal */
.isa-chat-widget {
    position: fixed;
    bottom: 30px; /* Abajo de todo */
    right: 25px; /* Alineado al centro con los botones flotantes (36px - 11px diferencia de tamaño) */
    z-index: 1000; /* Por encima del contenido pero debajo de modales */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Burbuja de saludo */
.isa-greeting-bubble {
    position: absolute;
    bottom: 85px;
    right: 0; /* Alineada con el botón de Isa */
    background: white;
    border-radius: 16px;
    padding: 12px 36px 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInGreeting 0.5s ease-out 2s forwards;
}

@keyframes slideInGreeting {
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.isa-greeting-bubble.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    pointer-events: none;
}

.isa-greeting-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--isa-text);
    font-weight: 500;
}

.isa-greeting-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--isa-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
}

.isa-greeting-close:hover {
    background: #f3f4f6;
    color: var(--isa-text);
}

/* Flecha de la burbuja */
.isa-greeting-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px; /* Posicionada cerca de la esquina derecha para apuntar a Isa */
    transform: rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

/* Burbuja flotante */
.isa-chat-bubble {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: var(--isa-shadow-lg), 0 0 0 4px rgba(249, 115, 22, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.isa-chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(249, 115, 22, 0.3);
}

.isa-chat-bubble .isa-chat-icon {
    display: block;
}

.isa-chat-bubble .isa-close-icon {
    display: none;
    color: var(--isa-primary);
}

.isa-chat-bubble.active {
    background: white;
}

.isa-chat-bubble.active .isa-chat-icon {
    display: none;
}

.isa-chat-bubble.active .isa-close-icon {
    display: block;
}

/* Imagen de avatar en el botón flotante */
.isa-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transform: scale(1.1);
}

/* Badge de notificación */
.isa-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid white;
}

/* Ventana de chat */
.isa-chat-window {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--isa-bg);
    border-radius: 16px;
    box-shadow: var(--isa-shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.isa-chat-window.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Header */
.isa-chat-header {
    background: linear-gradient(135deg, var(--isa-primary), var(--isa-primary-dark));
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.isa-chat-header .d-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.isa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Imagen de avatar en el header */
.isa-avatar-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.isa-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.isa-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
}

.isa-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.isa-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mensajes */
.isa-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f9fafb;
}

.isa-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.isa-chat-messages::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.isa-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

/* Mensaje individual */
.isa-message {
    display: flex;
    gap: 10px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.isa-message.user {
    flex-direction: row-reverse;
}

.isa-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.isa-message.user .isa-avatar-small {
    background: #e5e7eb;
}

/* Imagen de avatar pequeño en mensajes y typing indicator */
.isa-avatar-typing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.isa-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.isa-message.bot .isa-message-content {
    background: white;
    color: var(--isa-text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.isa-message.user .isa-message-content {
    background: var(--isa-primary);
    color: white;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.isa-message-time {
    font-size: 11px;
    color: var(--isa-text-light);
    margin-top: 4px;
    text-align: right;
}

/* Estilos de contenido HTML en mensajes del bot */
.isa-message-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--isa-text);
}

.isa-message-content p {
    margin-bottom: 8px;
}

.isa-message-content ul {
    padding-left: 20px;
    margin: 8px 0;
}

.isa-message-content li {
    margin-bottom: 4px;
}

.isa-message-content a {
    color: var(--isa-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.isa-message-content a:hover {
    text-decoration: underline;
}

.isa-message-content .btn {
    margin-top: 8px;
}

/* Indicador "escribiendo..." */
.isa-typing-indicator {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 20px 10px;
    animation: fadeIn 0.3s ease-out;
}

.isa-typing-dots {
    display: flex;
    gap: 4px;
    padding: 10px 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.isa-typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--isa-text-light);
    animation: typingDot 1.4s ease-in-out infinite;
}

.isa-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.isa-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Input area */
.isa-chat-input {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--isa-border);
}

#isaChatForm {
    display: flex;
    align-items: center;
    gap: 8px;
}

.isa-chat-input .form-control {
    flex: 1;
    border-radius: 24px;
    border: 1px solid var(--isa-border);
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.2s;
}

.isa-chat-input .form-control:focus {
    border-color: var(--isa-primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.isa-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--isa-primary);
    border: none;
    transition: all 0.2s;
}

.isa-send-btn svg {
    stroke: white !important;
    fill: none;
}

.isa-send-btn:hover {
    background: var(--isa-primary-dark);
    transform: scale(1.05);
}

.isa-send-btn:active {
    transform: scale(0.95);
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .isa-chat-widget {
        bottom: 100px; /* Ajustado para no colisionar con panel de filtros móvil */
        right: 16px; /* Alineado al centro con los botones flotantes en tablet (26px - 10px diferencia) */
    }

    .isa-chat-window {
        width: calc(100vw - 40px);
        max-width: 400px;
        height: 500px;
    }

    .isa-greeting-bubble {
        min-width: 240px;
        max-width: 280px;
        padding: 10px 32px 10px 14px;
        bottom: 75px;
        right: 0;
    }

    .isa-greeting-text {
        font-size: 13px;
    }
}

/* Responsive - Móviles */
@media (max-width: 480px) {
    .isa-chat-widget {
        bottom: 100px; /* Ajustado para no colisionar con panel de filtros móvil */
        right: 18px; /* Alineado al centro con los botones flotantes en móvil (26px - 8px diferencia) */
    }

    .isa-chat-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 100px);
        max-height: 600px;
        border-radius: 12px;
    }

    .isa-chat-bubble {
        width: 64px;
        height: 64px;
    }

    .isa-greeting-bubble {
        min-width: 220px;
        max-width: 260px;
        padding: 10px 32px 10px 12px;
        bottom: 75px;
        right: 0;
    }

    .isa-greeting-text {
        font-size: 12px;
    }

    .isa-greeting-close {
        width: 20px;
        height: 20px;
        top: 6px;
        right: 6px;
    }

    .isa-greeting-close svg {
        width: 12px;
        height: 12px;
    }
}

    .isa-chat-header {
        padding: 14px 16px;
    }

    .isa-avatar {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .isa-name {
        font-size: 14px;
    }

    .isa-status {
        font-size: 11px;
    }

    .isa-chat-messages {
        padding: 16px;
        gap: 12px;
    }

    .isa-message-content {
        max-width: 85%;
        font-size: 14px;
        padding: 10px 14px;
    }

    .isa-chat-input {
        padding: 12px 16px;
    }

    .isa-chat-input .form-control {
        font-size: 16px; /* Evita zoom automático en iOS */
    }

    .isa-send-btn {
        width: 40px;
        height: 40px;
    }

    .isa-send-btn svg {
        width: 18px;
        height: 18px;
        stroke: white !important;
        fill: none;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 360px) {
    .isa-chat-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 80px);
    }

    .isa-message-content {
        max-width: 90%;
    }
}

/* Product info styles - Nueva versión con imágenes */
.product-info-chat {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-top: 8px;
}

.product-image-wrapper {
    width: 100%;
    height: 180px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-chat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-info-chat:hover .product-chat-image {
    transform: scale(1.05);
}

.product-details {
    padding: 12px 14px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--isa-text);
    line-height: 1.3;
}

.product-code {
    font-size: 12px;
    color: var(--isa-text-light);
    margin-bottom: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.price-normal {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-offer {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

.price-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--isa-primary);
}

.badge-offer {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-stock {
    margin-bottom: 8px;
}

.badge-stock {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
}

.badge-stock.available {
    background: #d1fae5;
    color: #065f46;
}

.badge-stock.unavailable {
    background: #fee2e2;
    color: #991b1b;
}

.product-category {
    font-size: 12px;
    color: var(--isa-text-light);
    margin-bottom: 10px;
}

.btn-product-link {
    display: inline-block;
    background: var(--isa-primary);
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-product-link:hover {
    background: var(--isa-primary-dark);
    transform: translateX(2px);
    color: white;
    text-decoration: none;
}

/* Box price and rendimiento - m² products */
.product-box-price {
    font-size: 11px;
    color: var(--isa-text-light);
    margin-bottom: 4px;
    font-style: italic;
}

.product-rendimiento {
    font-size: 11px;
    color: var(--isa-text-light);
    margin-bottom: 8px;
}

/* Legacy product-info styles para compatibilidad */
.product-info {
    border-left: 3px solid var(--isa-primary);
    padding-left: 12px;
}

.product-info .text-success {
    color: #10b981 !important;
}

.product-info .text-danger {
    color: #ef4444 !important;
}

.product-info .btn-outline-orange-500 {
    color: var(--isa-primary);
    border-color: var(--isa-primary);
}

.product-info .btn-outline-orange-500:hover {
    background: var(--isa-primary);
    color: white;
}

/* FAQ suggestions */
.faq-suggestion {
    color: var(--isa-primary);
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.faq-suggestion:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

/* Category links */
.category-link {
    color: var(--isa-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link:hover {
    color: var(--isa-primary);
    transform: translateX(4px);
}

/* Quick Reply Buttons */
.quick-reply-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    animation: fadeIn 0.4s ease-out 0.3s both;
}

.quick-reply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: white;
    color: var(--isa-primary);
    border: 1.5px solid var(--isa-primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quick-reply-btn:hover {
    background: var(--isa-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.2);
}

.quick-reply-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-reply-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Animación de entrada escalonada para botones */
.quick-reply-btn:nth-child(1) {
    animation-delay: 0.35s;
}

.quick-reply-btn:nth-child(2) {
    animation-delay: 0.4s;
}

.quick-reply-btn:nth-child(3) {
    animation-delay: 0.45s;
}

.quick-reply-btn:nth-child(4) {
    animation-delay: 0.5s;
}

/* Responsive para botones */
@media (max-width: 480px) {
    .quick-reply-buttons {
        gap: 6px;
    }

    .quick-reply-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* WhatsApp Button - Mejorado */
.isa-whatsapp-btn,
.isa-btn-secondary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 8px;
}

.isa-whatsapp-btn:hover,
.isa-btn-secondary:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
    text-decoration: none;
}

.isa-whatsapp-btn:active,
.isa-btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.isa-whatsapp-btn svg,
.isa-btn-secondary svg {
    flex-shrink: 0;
    fill: white !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Animación de pulso sutil en el botón */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    }
}

.isa-whatsapp-btn {
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

/* Product Action Buttons Container */
.isa-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

/* Primary Button (Ver en la tienda) */
.isa-btn-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.isa-btn-primary svg {
    flex-shrink: 0;
}

/* ================================
   DARK MODE SUPPORT
   ================================ */

/* Product Info Chat - Dark Mode */
.dark .product-info-chat {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-color: #374151;
}

.dark .product-image-wrapper {
    background: #374151;
}

.dark .product-details {
    color: #f3f4f6;
}

.dark .product-name {
    color: #f9fafb;
}

.dark .product-code {
    color: #9ca3af;
}

.dark .product-category {
    color: #9ca3af;
}

.dark .price-normal {
    color: #6b7280;
}

.dark .badge-stock.available {
    background: #064e3b;
    color: #a7f3d0;
}

.dark .badge-stock.unavailable {
    background: #7f1d1d;
    color: #fecaca;
}

.dark .btn-product-link {
    background: #f97316;
    color: white;
}

.dark .btn-product-link:hover {
    background: #ea580c;
    color: white;
}

/* Quick Reply Buttons - Dark Mode */
.dark .quick-reply-btn {
    background: #1f2937;
    color: #fb923c;
    border-color: #fb923c;
}

.dark .quick-reply-btn:hover {
    background: #fb923c;
    color: #111827;
}

/* Chat Header - Dark Mode */
.dark .isa-chat-header {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-bottom-color: #374151;
}

.dark .isa-name {
    color: #f9fafb;
}

.dark .isa-status {
    color: #d1d5db;
}

/* Minimize Button - Light Mode & Dark Mode */
#isaChatMinimize {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

#isaChatMinimize:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

#isaChatMinimize:focus {
    outline: none !important;
    box-shadow: none !important;
}

#isaChatMinimize svg {
    stroke: white;
    stroke-width: 2.5;
}

.dark #isaChatMinimize:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.dark #isaChatMinimize svg {
    stroke: #1f2937;
}

/* Send Button - Dark Mode */
.dark .isa-send-btn {
    background: var(--isa-primary);
}

.dark .isa-send-btn:hover {
    background: var(--isa-primary-dark);
}

.dark .isa-send-btn svg {
    stroke: white !important;
    fill: none;
}

/* Input Area - Dark Mode */
.dark .isa-chat-input {
    background: #1f2937;
    border-top-color: #374151;
}

.dark .isa-chat-input .form-control {
    background: #111827;
    border-color: #374151;
    color: #f9fafb;
}

.dark .isa-chat-input .form-control:focus {
    border-color: var(--isa-primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.dark .isa-chat-input .form-control::placeholder {
    color: #9ca3af;
}

/* Buttons - Dark Mode */
.dark .isa-btn-primary {
    color: white !important;
}

.dark .isa-btn-secondary,
.dark .isa-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
}

.dark .isa-btn-secondary:hover,
.dark .isa-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    color: white !important;
}

.dark .isa-btn-secondary svg,
.dark .isa-whatsapp-btn svg {
    fill: white !important;
}
