/* Custom CSS - IMPRIME DE TODO */

/* Alpine.js - Ocultar elementos antes de cargar */
[x-cloak] {
    display: none !important;
}

/* Animaciones suaves */
* {
    transition: all 0.2s ease;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E31E24;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c01a1f;
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #E31E24;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover effects */
.hover-scale:hover {
    transform: scale(1.05);
}

/* Price badge */
.price-badge {
    background: linear-gradient(135deg, #E31E24 0%, #c01a1f 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}

/* Custom shadows */
.shadow-custom {
    box-shadow: 0 4px 6px -1px rgba(227, 30, 36, 0.1),
                0 2px 4px -1px rgba(227, 30, 36, 0.06);
}
