/* Modern Light Theme - Primary Color #f50 (Orange Red) */

/* Custom Animations */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 85, 0, 0.2), 0 0 30px rgba(255, 85, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 85, 0, 0.4), 0 0 50px rgba(255, 85, 0, 0.2);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 85, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 16px rgba(255, 85, 0, 0.4), 0 0 24px rgba(255, 85, 0, 0.2);
    }
}

@keyframes text-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
        filter: drop-shadow(0 0 6px rgba(255, 85, 0, 0.6));
    }
}

@keyframes error-shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Floating Navigation */
app-header {
    position: fixed !important;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
}

@media (min-width: 768px) {
    app-header {
        top: 20px;
        width: 90%;
    }
}

/* Mobile Menu Overlay */
#mobile-menu-overlay {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Bottom Sheet */
#mobile-menu {
    background: linear-gradient(to top,
        #ffffff 0%,
        #f8f9fa 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

#mobile-menu .overflow-y-auto {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 85, 0, 0.3) transparent;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar {
    width: 4px;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-track {
    background: transparent;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-thumb {
    background: rgba(255, 85, 0, 0.3);
    border-radius: 2px;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 85, 0, 0.5);
}

/* Adjust body content to account for fixed header */
@media (max-width: 767px) {
    body > main,
    main {
        margin-top: 84px !important;
    }

    #banner-section {
        margin-top: 84px !important;
    }
}

/* Mobile Menu - Transform utilities */
.translate-y-full {
    transform: translateY(100%);
}

.opacity-0 {
    opacity: 0;
}

.invisible {
    visibility: hidden;
}

/* Ensure mobile menu has proper transition */
#mobile-menu {
    transition: transform 0.3s ease;
}

#mobile-menu-overlay {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Subtle Grid Background */
.subtle-grid-bg {
    background-image:
        linear-gradient(rgba(255, 85, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 85, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Modern Border Effects */
.modern-border {
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #f50, #ff7300) border-box;
}

.gradient-text {
    background: linear-gradient(135deg, #f50 0%, #ff7300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-text-shimmer {
    background: linear-gradient(90deg, #f50 0%, #ff7300 50%, #f50 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s linear infinite;
}

.smooth-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smooth-hover:hover {
    box-shadow: 0 8px 30px rgba(255, 85, 0, 0.15);
    transform: translateY(-2px);
}

/* Asymmetrical Grid Layouts */
.asym-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
}

.asym-grid .main-card {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.asym-grid .side-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.asym-grid .side-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.asym-grid .side-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.asym-grid .side-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

/* Modern Button */
.modern-button {
    background: linear-gradient(135deg, #f50 0%, #ff7300 100%);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.modern-button:hover::before {
    left: 100%;
}

.modern-button:hover {
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.4);
    transform: translateY(-2px);
}

/* Outline Button */
.modern-button-outline {
    background: transparent;
    color: #f50;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #f50;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-button-outline:hover {
    background: #f50;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
}

/* Card Styling - Modern Light Theme */
.modern-card {
    background: #ffffff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Subtle gradient overlay */
.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 85, 0, 0.02) 0%,
        rgba(255, 115, 0, 0.01) 50%,
        rgba(255, 85, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

/* Top accent line */
.modern-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #f50 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Ensure card content is above pseudo-elements */
.modern-card > * {
    position: relative;
    z-index: 2;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover::after {
    opacity: 1;
}

.modern-card:hover {
    border-color: rgba(255, 85, 0, 0.2);
    box-shadow:
        0 8px 30px rgba(255, 85, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

/* Card with shadow */
.modern-card.elevated {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 16px 40px rgba(0, 0, 0, 0.1);
}

.modern-card.elevated:hover {
    box-shadow:
        0 8px 30px rgba(255, 85, 0, 0.15),
        0 16px 50px rgba(0, 0, 0, 0.12);
}

/* Card with icon hover effect */
.modern-card.icon-hover .card-icon {
    transition: all 0.3s ease;
}

.modern-card.icon-hover:hover .card-icon {
    background: linear-gradient(135deg, #f50, #ff7300);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4);
}

/* Service Card */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    border-color: rgba(255, 85, 0, 0.2);
    box-shadow: 0 8px 30px rgba(255, 85, 0, 0.12);
    transform: translateY(-4px);
}

.service-card .service-icon {
    background: linear-gradient(135deg, #fff0e6, #ffe6cc);
    color: #f50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #f50, #ff7300);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4);
}

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: #f50 !important;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #f50;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #f50, #ff7300) !important;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.4);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f50, #ff7300);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e64500, #f50);
}

/* Banner Section Enhancement */
.banner-enhanced {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05) 0%, rgba(255, 115, 0, 0.05) 100%);
    border: 1px solid rgba(255, 85, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Text Effects */
.gradient-text-orange {
    background: linear-gradient(135deg, #f50 0%, #ff7300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge */
.badge {
    background: linear-gradient(135deg, #f50 0%, #ff7300 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.3);
}

.badge-outline {
    background: transparent;
    color: #f50;
    border: 1.5px solid #f50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Input Fields */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #f50;
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    color: #999;
}

/* Error State */
input.border-red-500,
textarea.border-red-500,
select.border-red-500 {
    border-color: #ef4444 !important;
}

input.border-red-500:focus,
textarea.border-red-500:focus,
select.border-red-500:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.text-red-400 {
    color: #ef4444;
}

/* Success State */
input.border-green-500,
textarea.border-green-500 {
    border-color: #10b981 !important;
}

input.border-green-500:focus,
textarea.border-green-500:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Responsive Design Optimizations */
@media (max-width: 768px) {
    .asym-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .asym-grid .main-card {
        grid-column: 1;
        grid-row: 1;
    }

    .asym-grid .side-card:nth-child(1),
    .asym-grid .side-card:nth-child(2),
    .asym-grid .side-card:nth-child(3),
    .asym-grid .side-card:nth-child(4) {
        grid-column: 1;
    }

    /* Mobile header adjustments */
    app-header .container {
        padding: 0 0.75rem;
    }

    app-header .text-3xl {
        font-size: 1.5rem;
    }

    /* Mobile banner adjustments */
    #banner-section h2 {
        font-size: 2.5rem;
    }

    /* Mobile service cards */
    #services .service-card {
        padding: 1.5rem;
    }

    /* Mobile section spacing */
    section {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 640px) {
    .modern-button,
    .modern-button-outline {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .modern-card {
        padding: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card .w-16 {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
}

/* Performance optimizations */
.modern-card,
.service-card,
.modern-button {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .animate-float,
    .animate-pulse-glow,
    .animate-text-shimmer,
    .animate-icon,
    .animate-error-shake,
    .animate-bounce-gentle {
        animation: none;
    }

    .smooth-hover:hover {
        transform: none;
    }
}

/* Animation Classes */
.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-icon {
    animation: icon-bounce 2s ease-in-out infinite;
}

.animate-error-shake {
    animation: error-shake 0.5s ease-in-out;
}

.animate-bounce-gentle {
    animation: bounce-gentle 2s ease-in-out infinite;
}

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%);
    margin: 4rem 0;
}

/* Link styles */
a {
    color: #f50;
    transition: color 0.3s ease;
}

a:hover {
    color: #e64500;
}

/* Product image placeholder */
.product-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Toast notifications */
.toast {
    background: #ffffff;
    border-left: 4px solid #f50;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.info {
    border-left-color: #3b82f6;
}

/* Loading spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(255, 85, 0, 0.1);
    border-top-color: #f50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Price styling */
.price {
    color: #f50;
    font-weight: 700;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 0.875em;
}

.price-discount {
    background: linear-gradient(135deg, #f50, #ff7300);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 600;
}

/* Star rating */
.star-rating {
    color: #fbbf24;
}

.star-rating .empty {
    color: #e5e7eb;
}

/* Tag styles */
.tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #f50;
    color: white;
}

.tag.active {
    background: #f50;
    color: white;
}

/* Card tags overlay */
.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f50, #ff7300);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.3);
    z-index: 10;
}

/* Wishlist button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background: #f50;
    color: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #f50;
    color: white;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #f50, #ff7300);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.4);
}

/* Footer styling */
.footer {
    background: #1a1a1a;
    color: #fff;
}

.footer-link {
    color: #999;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f50;
}

/* Social media icons */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f50;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.4);
}

/* Divider */
.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Notice box */
.notice-box {
    background: linear-gradient(135deg, #fff0e6, #ffe6cc);
    border-left: 4px solid #f50;
    padding: 16px 20px;
    border-radius: 8px;
}

.notice-box.info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #3b82f6;
}

.notice-box.success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left-color: #10b981;
}

.notice-box.warning {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-left-color: #ffa000;
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: #f50;
    color: white;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

/* Progress bar */
.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f50, #ff7300);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Tab navigation */
.tab-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.tab-item {
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #666;
}

.tab-item:hover {
    color: #f50;
}

.tab-item.active {
    color: #f50;
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f50, #ff7300);
}

/* Accordion */
.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #666;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #f50;
}

.breadcrumb span {
    color: #999;
}

/* Search box */
.search-box {
    position: relative;
}

.search-box input {
    padding-right: 45px;
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #f50;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #e64500;
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.4);
}

/* Filter sidebar */
.filter-item {
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-item:hover {
    background: #f8f9fa;
}

.filter-item.active {
    background: linear-gradient(135deg, #f50, #ff7300);
    color: white;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #f50;
}

/* ===== Enhanced Animations & Effects ===== */

/* Fade In Up Animation */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.5s ease-out forwards;
}

/* Staggered Animation Delays */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* Scale In Animation */
@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scale-in 0.3s ease-out forwards;
}

/* Slide In From Left */
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slide-in-left 0.4s ease-out forwards;
}

/* Slide In From Right */
@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slide-in-right 0.4s ease-out forwards;
}

/* Ripple Effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 85, 0, 0.3);
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    animation: ripple 0.6s linear;
}

/* Shine Effect */
@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: shine 3s infinite;
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.3);
}

.magnetic-btn:active {
    transform: scale(0.98);
}

/* Text Gradient Animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animated-gradient-text {
    background: linear-gradient(90deg, #f50, #ff7300, #f50);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Border Glow Animation */
@keyframes border-glow {
    0%, 100% {
        border-color: rgba(255, 85, 0, 0.3);
        box-shadow: 0 0 10px rgba(255, 85, 0, 0.1);
    }
    50% {
        border-color: rgba(255, 85, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
    }
}

.border-glow-animated {
    animation: border-glow 2s ease-in-out infinite;
}

/* Loading Skeleton */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

/* Pulse Ring Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid #f50;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* Counter Animation */
@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    display: inline-block;
    animation: count-up 0.5s ease-out forwards;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image Zoom Effect */
.img-zoom-container {
    overflow: hidden;
}

.img-zoom-container img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom-container:hover img {
    transform: scale(1.1);
}

/* Text Reveal Animation */
@keyframes text-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: text-reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    animation: fade-in-up 0.5s ease-out forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }

/* Parallax Scroll Effect */
.parallax-slow {
    will-change: transform;
}

/* Glass Morphism Enhanced */
.glass-morphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Neon Border Animation */
@keyframes neon-border {
    0%, 100% {
        box-shadow:
            0 0 5px rgba(255, 85, 0, 0.2),
            0 0 10px rgba(255, 85, 0, 0.1),
            inset 0 0 5px rgba(255, 85, 0, 0.1);
    }
    50% {
        box-shadow:
            0 0 10px rgba(255, 85, 0, 0.4),
            0 0 20px rgba(255, 85, 0, 0.2),
            inset 0 0 10px rgba(255, 85, 0, 0.2);
    }
}

.neon-border-animated {
    animation: neon-border 2s ease-in-out infinite;
}

/* Typing Effect */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.typing-effect::after {
    content: '|';
    animation: blink 1s infinite;
}

/* Morphing Shape */
@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.morphing-shape {
    animation: morph 8s ease-in-out infinite;
}

/* Wave Animation */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(5px);
    }
}

.wave-text span {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.1s; }
.wave-text span:nth-child(3) { animation-delay: 0.2s; }
.wave-text span:nth-child(4) { animation-delay: 0.3s; }
.wave-text span:nth-child(5) { animation-delay: 0.4s; }

/* 3D Card Flip */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Spotlight Effect */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.spotlight:hover::before {
    opacity: 1;
}

/* Bounce In Animation */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Rotating Border */
@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotating-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: conic-gradient(from 0deg, #f50, #ff7300, #f50);
    border-radius: inherit;
    animation: rotate-border 3s linear infinite;
    z-index: -1;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: rgba(255, 85, 0, 0.3);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(255, 85, 0, 0.3);
    color: #1a1a1a;
}

/* Focus Visible Styles */
*:focus-visible {
    outline: 2px solid #f50;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
