/* Custom styles for RadarTech Colombia */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.2s ease-in-out;
}

/* Custom focus styles for better accessibility */
input:focus, button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading animation for skeleton cards */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.skeleton-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom styles for deal cards */
.deal-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Price badge styles */
.discount-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

/* Store badge styles */
.store-badge {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Filter sidebar animations */
.filter-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.filter-sidebar.open {
    transform: translateX(0);
}
/* Toast notification styles */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced carousel styles */
.carousel-container {
    scroll-behavior: smooth;
}

.carousel-item {
    flex: 0 0 auto;
}

/* Hover effects for price drop items */
.price-drop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Stats section animations */
.stats-item {
    transition: all 0.3s ease-in-out;
}

.stats-item:hover {
    transform: scale(1.05);
}
/* Responsive typography */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}