/**
 * Premium Dark Design Styles for ShopHub
 * Smart, sophisticated 3-color premium theme
 */

/* Premium Body Background - Subtle light gray */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    background-attachment: fixed;
}

/* Premium Hero Banner - 3 Colors: Dark Blue + Teal + Gold accents */
.hero-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 50%, #d97706 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Shop Hero - 3 Colors: Navy + Slate + Silver */
.shop-hero {
    background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #64748b 100%);
    color: white;
}

/* Contact Hero - 3 Colors: Dark + Teal + Light */
.contact-hero {
    background: linear-gradient(135deg, #1e293b 0%, #14b8a6 50%, #f1f5f9 100%);
    color: white;
}

/* About Hero - 3 Colors: Deep Blue + Purple + Pink */
.about-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #7c3aed 50%, #db2777 100%);
    color: white;
}

/* Section Backgrounds */
.section-soft {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-warm {
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 50%, #f0ede8 100%);
}

.section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}

/* Premium Cards */
.card-premium {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

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

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 50%, #d97706 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: white;
}

/* Section Headers */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #0d9488, #d97706);
    border-radius: 2px;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.category-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 50%, #d97706 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Text Gradient - 3 Colors */
.text-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badges */
.badge-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
    color: white;
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 500;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filter Card */
.filter-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Newsletter Section - 3 Colors */
.newsletter-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0d9488 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Featured Section */
.featured-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* New Arrivals Section */
.new-arrivals-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #fffbeb 100%);
}

/* Team Section */
.team-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Price Tag */
.price-tag {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
}

/* Team Card Hover */
.team-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.team-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Gradient Divider */
.divider-gradient {
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #0d9488, #d97706);
    border: none;
    margin: 40px 0;
}
