.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.btn-primary {
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 60, 56, 0.3);
}
.btn-secondary {
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 218, 198, 0.3);
}
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}
.gradient-text {
    background: linear-gradient(135deg, #ff3c38, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.floating-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.stats-counter {
    animation: countUp 2s ease-out;
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.feature-card {
    background: linear-gradient(135deg, rgba(255, 60, 56, 0.05), rgba(3, 218, 198, 0.05));
}

/* Slider Controls - Hidden by default, show on hover */
.slider-container .slider-controls {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.slider-container:hover .slider-controls {
    opacity: 1;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    background: white;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Filter and Pagination Styles */
.filter-btn.active {
    background: #ff3c38;
    color: white;
    border-color: #ff3c38;
}

.pagination-btn.active {
    background: #ff3c38;
    color: white;
    border-color: #ff3c38;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.artist-card {
    transition: all 0.3s ease;
}

.artist-card.hidden {
    display: none;
}

.artist-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.artist-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Search input focus effect */
#artistSearch:focus + i {
    color: #ff3c38;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ff3c38;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Save Artist Button Styles */
.save-artist-btn {
    transition: all 0.3s ease;
}

.save-artist-btn:hover {
    transform: scale(1.1);
}

.save-artist-btn:hover i {
    transform: scale(1.1);
}

.save-artist-btn i {
    transition: all 0.3s ease;
}

.save-artist-btn i.text-primary {
    color: #ff3c38;
}

.menu-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff3c38;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.event-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}
.filter-btn {
    transition: all 0.3s ease;
}
.filter-btn.active {
    background: #ff3c38;
    color: white;
}

.save-event-btn {
    transition: all 0.3s ease;
}

.save-event-btn:hover {
    transform: scale(1.1);
}

.save-event-btn:hover i {
    transform: scale(1.1);
}

.save-event-btn i {
    transition: all 0.3s ease;
}

.save-event-btn i.text-primary {
    color: #ff3c38;
}


.event-card {
    transition: all 0.3s ease;
}

.event-card.hidden {
    display: none;
}

.event-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.event-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #f9fafb;
}

.quantity-btn {
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #f3f4f6;
}


.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}
.tour-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Search input focus effect */
#searchInput:focus + i {
    color: #ff3c38;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1) !important;
}

input.error, textarea.error {
    border-color: #ff3c38 !important;
}

 
 
.test:hover {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.ticket-option {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ticket-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #03dac6;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active::before {
    transform: translateX(30px);
}

/* Event Type Toggle */
.event-toggle {
    position: relative;
    width: 80px;
    height: 35px;
    background: #e5e7eb;
    border-radius: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.event-toggle.active {
    background: #ff3c38;
}

.event-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 29px;
    height: 29px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-toggle.active::before {
    transform: translateX(45px);
}



/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

.modal-overlay.active .modal {
    transform: translate(-50%, -50%) scale(1);
}

.quantity-btn {
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #ff3c38;
    color: white;
}

   
.step-indicator {
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #ff3c38;
    color: white;
}

.step-indicator.completed {
    background: #10b981;
    color: white;
}

.payment-method {
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.payment-method.selected {
    border-color: #ff3c38;
    background: #fef2f2;
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #ff3c38;
    box-shadow: 0 0 0 3px rgba(255, 60, 56, 0.1);
}

.order-item {
    transition: all 0.3s ease;
}

.order-item:hover {
    background: #f9fafb;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.gear-animation {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.progress-bar {
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3c38, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-card {
    transition: all 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.notification-form {
    transition: all 0.3s ease;
}

.notification-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        
.success-animation {
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


.thumbnail {
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border: 2px solid #ff3c38;
}

.size-option, .color-option {
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-option:hover, .color-option:hover {
    transform: translateY(-2px);
}

.size-option.active {
    background: #ff3c38;
    color: white;
}

.color-option.active {
    border: 3px solid #ff3c38;
}



.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-product {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.zoom-image {
    transition: transform 0.3s ease;
}

.zoom-container:hover .zoom-image {
    transform: scale(1.2);
}

.policy-card {
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: linear-gradient(135deg, #fef2f2, #f0fdfa);
    border-left: 4px solid #ff3c38;
}

.info-box {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border-left: 4px solid #3b82f6;
}

.success-box {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-left: 4px solid #10b981;
}

.toc-link {
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.toc-link.active {
    background: #fef2f2;
    border-left: 4px solid #ff3c38;
    color: #ff3c38;
}

.section-content {
    scroll-margin-top: 100px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef2f2, #f0fdfa);
    border-left: 4px solid #ff3c38;
}

.wishlist-card {
    transition: all 0.3s ease;
}

.wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.heart-button {
    transition: all 0.3s ease;
}

.heart-button:hover {
    transform: scale(1.1);
}

.heart-button.active {
    color: #ff3c38;
}

.tab-button {
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #ff3c38;
    color: white;
}

.empty-state {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.gradient-bg {
    background: linear-gradient(135deg, #ff3c38, #03dac6);
}

.crypto-card {
    transition: all 0.3s ease;
}
.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Error pulse animation for form validation */
@keyframes errorPulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.3);
        transform: scale(1.02);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
        transform: scale(1);
    }
}

/* Error message styles */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message i {
    flex-shrink: 0;
}

/* Enhanced error state for form inputs */
input.border-red-500:focus,
textarea.border-red-500:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Checkbox error state */
input[type="checkbox"].border-red-500 {
    border-color: #ef4444;
    background-color: #fef2f2;
}

input[type="checkbox"].border-red-500:checked {
    background-color: #ef4444;
    border-color: #ef4444;
}

/* Terms checkbox container error state */
.terms-error .flex {
    border: 1px solid #ef4444;
    border-radius: 0.5rem;
    padding: 0.75rem;
    background-color: #fef2f2;
}