/* Marketplace Marketing Styles */

.marketplace-sell-hero {
    background: #0f111a; /* Base dark background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-text-side {
    background: linear-gradient(90deg, #0f111a 0%, #0f111a 80%, rgba(15, 17, 26, 0.8) 100%);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50px;
    color: #22d3ee;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-image-side {
    position: relative;
    min-height: 405px;
    z-index: 1;
    background-size: cover;
    background-position: center left;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* This creates the seamless blend from the dark side to the image side */
    background: linear-gradient(90deg, #0f111a 0%, rgba(15, 17, 26, 0.4) 45%, transparent 100%);
}

.pulse-animation {
    animation: shadow-pulse 2s infinite;
    transition: transform 0.3s ease;
}

.pulse-animation:hover {
    transform: translateY(-2px);
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(34, 211, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

/* Feature tags styling */
.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustment */
@media (max-width: 991.98px) {
    .hero-text-side {
        background: #0f111a;
        padding: 3rem !important;
    }
    
    .hero-image-side {
        min-height: 250px;
    }
    
    .hero-overlay {
        background: linear-gradient(0deg, #0f111a 0%, transparent 100%);
    }

    .marketplace-sell-hero .display-5 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-text-side {
        padding: 2rem 1.5rem !important;
    }

    .hero-badge {
        padding: 6px 15px;
        font-size: 0.7rem;
    }

    .marketplace-sell-hero h2 {
        font-size: 1.5rem !important;
    }

    .marketplace-sell-hero p {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }

    .feature-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
}
