/* assets/css/home.css */


.home-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* AI Chat Widget - Wider and more prominent */
.ai-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 500px;
    max-height: 650px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.ai-chat-widget.show,
.ai-chat-widget.open {
    display: flex !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-chat-header {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ai-info {
    flex: 1;
}

.ai-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.ai-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
}

.status-dot.online {
    animation: pulse 2s infinite;
}

.ai-close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ai-close-btn:hover {
    background: rgba(255,255,255,0.3);
}

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

.ai-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e11d48;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #10b981;
}

.message-content {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 15px;
    background: #f1f5f9;
}

.user-message .message-content {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
}

.message-content p {
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.quick-question {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.quick-question:hover {
    background: #e11d48;
    color: white;
    border-color: #e11d48;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input input:focus {
    border-color: #e11d48;
}

.send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.send-btn:hover {
    transform: scale(1.05);
}

.quick-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-btn {
    background: white;
    border: 1px solid #e11d48;
    color: #e11d48;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-btn:hover {
    background: #e11d48;
    color: white;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 5px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #e11d48;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

.message.typing .message-content {
    padding: 15px 20px;
}

.ai-chat-footer {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.chat-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-row input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input-row input:focus {
    border-color: #e11d48;
}

.chat-input-row .send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chat-input-row .send-btn:hover {
    transform: scale(1.05);
}

.chat-actions {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.chat-action {
    flex: 1;
    padding: 8px 10px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s;
}

.chat-action:hover {
    background: #e11d48;
    color: white;
    border-color: #e11d48;
}

.ai-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    z-index: 9998;
    transition: all 0.3s;
}

.ai-fab:hover {
    transform: scale(1.1);
}

.ai-fab .ai-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ai-chat-widget {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 90px;
    }
    
    .ai-fab {
        right: 20px;
        bottom: 20px;
    }
}

/* ===== MODERN HERO SECTION ===== */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.85) 100%),
                url('https://images.unsplash.com/photo-1593642632559-0c6d3fc62b89?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
    padding: 120px 0 80px;
}

.modern-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.modern-hero > .container {
    position: relative;
    z-index: 2;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Grid Pattern Overlay */
.hero-bg-effects::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Animated Particles */
.hero-bg-effects::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.floating-shape {
    position: absolute;
    opacity: 0.12;
    color: #fb7185;
    animation: floatShape 20s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.3));
}

.floating-shape i {
    font-size: 5rem;
}

.shape-1 { top: 10%; left: 5%; animation-delay: 0s; }
.shape-2 { top: 15%; right: 15%; animation-delay: 3s; }
.shape-3 { bottom: 25%; left: 20%; animation-delay: 6s; }
.shape-4 { top: 50%; right: 8%; animation-delay: 9s; }
.shape-5 { bottom: 20%; right: 25%; animation-delay: 12s; }
.shape-6 { top: 65%; left: 10%; animation-delay: 15s; }

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(30px) rotate(-5deg); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.hero-main-content {
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    backdrop-filter: blur(10px);
    color: #fda4af;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 0.9rem;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(96, 165, 250, 0); }
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #fb7185, #fb7185, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

/* Modern Search Box */
.hero-search-wrapper {
    margin-bottom: 28px;
}

.modern-search-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px;
    gap: 12px;
    transition: all 0.3s;
    max-width: 620px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modern-search-box:focus-within {
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 15px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.search-icon-wrapper {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #e11d48, #e11d48);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.modern-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.05rem;
    padding: 12px 0;
    outline: none;
}

.modern-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #e11d48, #e11d48);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.search-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.search-btn-modern i {
    font-size: 0.9rem;
}

/* Quick Categories */
.quick-categories {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.quick-cat-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}

.quick-cat-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #fb7185;
    transform: translateY(-2px);
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-card-1 { animation-delay: 0s; }
.stat-card-2 { animation-delay: 0.1s; }
.stat-card-3 { animation-delay: 0.2s; }
.stat-card-4 { animation-delay: 0.3s; }

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-content .stat-text {
    font-size: 0.85rem;
    color: #64748b;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary-btn, .cta-secondary-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-radius: 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #e11d48, #e11d48);
    color: white;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-primary-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
}

.cta-secondary-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-title {
    font-weight: 700;
    font-size: 1rem;
}

.cta-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
}

.cta-arrow {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #64748b;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #64748b;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

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

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(6px); }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 100px 0 60px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .stat-content .stat-number {
        font-size: 1.4rem;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modern-search-box {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .modern-search-box input {
        min-width: 100%;
    }
    
    .search-btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-badge-modern {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
}

/* ===== END MODERN HERO ===== */

/* Old styles kept for compatibility */
.hero-section { display: none; }

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s;
}

.hero-image-container:hover .main-image {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    animation-delay: 2s;
}

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

.card-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-content h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 1rem;
}

.card-content p {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
}

/* Search Section */
.search-section {
    background: white;
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.search-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.search-form {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 15px;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-icon {
    color: #64748b;
    margin: 0 1rem;
    font-size: 1.25rem;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #1e293b;
    outline: none;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-btn {
    background: #e11d48;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #be123c;
    transform: translateY(-2px);
}

.quick-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #1e293b;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-tips {
    padding: 15px;
    background: #fff1f2;
    border-radius: 10px;
    border-left: 4px solid #e11d48;
}

.search-tips p {
    margin: 0;
    color: #9f1239;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* AI Banner */
.ai-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 30px 0;
    margin: 40px 0;
}

.ai-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .ai-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

.ai-banner-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ai-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 1.8rem;
}

.ai-banner-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.ai-banner-text p {
    margin: 0;
    opacity: 0.9;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #f1f5f9;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8fafc;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #ffe4e6;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge.featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge.used {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge.refurbished {
    background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    color: white;
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 4rem;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    background: white;
    border: none;
    border-radius: 12px;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-btn:hover {
    color: #ef4444;
    transform: scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.25);
}

.product-info {
    padding: 20px;
    background: #ffffff;
    position: relative;
    border-radius: 0 0 18px 18px;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f1f5f9, transparent);
}

.product-category {
    color: #f43f5e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.product-title {
    margin: 0 0 12px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover {
    color: #e11d48;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.product-specs span i {
    color: #e11d48;
    font-size: 0.7rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.negotiable {
    background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
    color: #be123c;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #fda4af;
}

.product-seller {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e2e8f0;
}

.product-seller i {
    color: #f43f5e;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.no-products h3 {
    margin: 0 0 10px 0;
    color: #475569;
}

.no-products p {
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #e11d48;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
    color: inherit;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.category-content p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.category-arrow {
    color: #94a3b8;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* PC Wizard Banner */
.pc-wizard-banner {
    background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.pc-wizard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .pc-wizard-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.pc-wizard-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pc-wizard-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.wizard-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .wizard-features {
        grid-template-columns: 1fr;
    }
}

.wizard-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pc-wizard-action {
    text-align: center;
}

.wizard-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Latest Products */
.latest-products {
    padding: 80px 0;
    background: #f8fafc;
}

.products-carousel .product-card {
    margin: 10px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #fff1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.step-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Top Sellers */
.top-sellers {
    padding: 80px 0;
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seller-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.seller-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.5rem;
    overflow: hidden;
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-info h3 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 1.125rem;
}

.seller-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.seller-rating i {
    color: #f59e0b;
    font-size: 0.875rem;
}

.rating-number {
    color: #64748b;
    font-size: 0.875rem;
}

.seller-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seller-actions {
    display: flex;
    gap: 10px;
}

.no-sellers {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-style: italic;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-carousel .testimonial-card {
    margin: 15px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #475569;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-avatar i {
    margin: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.2s;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #e11d48;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.875rem;
    color: #64748b;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
    background: #f8fafc;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.link-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
}

.link-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.link-card h3 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.link-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.link-card a {
    color: #e11d48;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.link-card a:hover {
    gap: 10px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #ef4444;
}

.modal-body {
    padding: 30px;
}

/* PC Wizard Modal */
.wizard-modal .modal-content {
    max-width: 600px;
}

.wizard-steps {
    min-height: 400px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h4 {
    margin: 0 0 20px 0;
    color: #1e293b;
    font-size: 1.25rem;
    text-align: center;
}

.use-case-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.use-case-option {
    padding: 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.use-case-option:hover {
    border-color: #e11d48;
    background: #fff1f2;
}

.use-case-option.selected {
    background: #ffe4e6;
    border-color: #e11d48;
    color: #be123c;
}

.use-case-option i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #e11d48;
}

.use-case-option span {
    display: block;
    font-weight: 500;
}

.budget-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.budget-option {
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.budget-option:hover {
    border-color: #e11d48;
    background: #fff1f2;
}

.budget-option.selected {
    background: #ffe4e6;
    border-color: #e11d48;
    color: #be123c;
}

.portability-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.portability-option {
    padding: 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.portability-option:hover {
    border-color: #e11d48;
    background: #fff1f2;
}

.portability-option.selected {
    background: #ffe4e6;
    border-color: #e11d48;
    color: #be123c;
}

.portability-option i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #e11d48;
}

.portability-option span {
    display: block;
    font-weight: 500;
}

.wizard-results {
    text-align: center;
}

.wizard-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wizard-product {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.wizard-product-image {
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wizard-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.wizard-product-info h5 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 0.875rem;
}

.wizard-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.wizard-tips {
    background: #fff1f2;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.wizard-tips h5 {
    margin: 0 0 10px 0;
    color: #9f1239;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wizard-tips p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.wizard-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

/* AI Assistant Fixed Button */
.ai-assistant-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.ai-assistant-btn {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.ai-assistant-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Loading States */
.loading {
    text-align: center;
    padding: 40px;
}

.loading i {
    font-size: 2rem;
    color: #e11d48;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

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

.loading p {
    color: #64748b;
    margin: 0;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-info {
    border-left: 4px solid #e11d48;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 10px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8fafc;
}

.suggestion-item i {
    color: #94a3b8;
}

.suggestion-item span {
    color: #475569;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 10px auto;
        max-width: 250px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        padding: 15px;
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .quick-filters {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image {
        height: 100px;
    }

    .product-image img {
        padding: 10px;
    }

    .product-info {
        padding: 10px 12px 12px;
    }

    .product-title {
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .product-price .price {
        font-size: 0.85rem;
    }

    .product-actions .btn {
        padding: 6px 8px;
        font-size: 0.72rem;
    }

    .product-badge {
        top: 8px;
        left: 8px;
    }

    .badge {
        padding: 3px 7px;
        font-size: 0.55rem;
    }

    .wishlist-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-assistant-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .ai-assistant-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Category Featured Sections */
.category-featured-section {
    padding: 70px 0;
    position: relative;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.category-featured-section:last-child {
    border-bottom: none;
    background: #f8fafc;
}

.category-featured-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.category-featured-section .section-title-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-featured-section .section-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
    position: relative;
    overflow: hidden;
}

.category-featured-section .section-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.category-featured-section .section-title-group h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.category-featured-section .section-title-group p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #64748b;
}

.category-featured-section .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.category-featured-section .btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    gap: 12px;
}

.category-featured-section .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

@media (max-width: 768px) {
    .category-featured-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .category-featured-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-featured-section .product-image {
        height: 100px;
    }

    .category-featured-section .product-info {
        padding: 10px 12px 12px;
    }

    .category-featured-section .product-title {
        font-size: 0.8rem;
    }
    
    .category-featured-section .section-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
    
    .category-featured-section .section-title-group h2 {
        font-size: 1.5rem;
    }
}