/* Custom Classes */
.font-bubblegum {
    font-family: 'Bubblegum Sans', cursive;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #E53E3E; /* Tailwind red-600 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C53030; /* Tailwind red-700 */
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        background: white;
    }

    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* Custom Focus Styles for Accessibility */
:focus {
    outline: 2px solid #E53E3E;
    outline-offset: 2px;
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Image Styles */
.product-image {
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Price Tag Style */
.price-tag {
    position: relative;
    padding: 0.25rem 0.5rem;
    background: #E53E3E;
    color: white;
    border-radius: 4px;
}
