/*
Theme Name: Almacén Infinito Theme
Theme URI: https://almaceninfinito.cl
Author: Hernán Calvo
Author URI: https://cangu.cl
Description: Tema personalizado para Almacén Infinito con Tailwind CSS y Lucide Icons.
Version: 0.1
*/

body {
    background: radial-gradient(circle at top left, #2e1065, #13001f);
    min-height: 100vh;
 }

 .product-card:hover .add-to-cart {
    opacity: 1;
    transform: translateY(0);
 }

 .hide-scroll::-webkit-scrollbar {
    display: none;
 }

 .ai-response strong {
    font-weight: 700;
    color: #d8b4fe;
 }

 .ai-response {
    background-color: rgba(88, 28, 135, 0.4);
    color: #e9d5ff;
    border: 1px solid #6b21a8;
 }

 .typing-indicator span {
    animation: blink 1.4s infinite both;
    height: 5px;
    width: 5px;
    background-color: #d8b4fe;
    border-radius: 50%;
    display: inline-block;
    margin: 0 1px;
 }

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

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

 @keyframes blink {
    0% {
       opacity: 0.1;
    }

    20% {
       opacity: 1;
    }

    100% {
       opacity: 0.1;
    }
 }
