/* Why My Mall Page Specific Styles */

/* Custom gradient backgrounds for different sections */
.why-mall-gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.why-mall-gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.why-mall-gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Enhanced feature card hover effects */
.feature-card-enhanced {
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card-enhanced:hover::after {
    opacity: 1;
    animation: shimmer 0.6s ease;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Mobile optimizations for feature cards */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.6rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .why-mall-hero h1,
    .why-mall-hero .hero-subtitle,
    .why-mall-hero .hero-description {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card {
        border: 2px solid #000;
    }

    .why-mall-hero {
        background: #000;
        color: #fff;
    }
}
