@import 'global.css';
@import 'admin_styles.css';
@import 'auth_styles.css';
@import 'profile.css';

/* Utility Classes for Cart Functionality */
.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

html, body {
    height: 100%;
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.app-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}

/* Cart count error styling */
.cart-count-error {
    background-color: #ef4444 !important; 
    color: white !important;
    font-weight: bold !important;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
