/* Marketplaces Premium Shared Styles */

.premium-marketplace-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Glassmorphism */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.premium-shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.premium-shadow:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.gradient-heading {
    background: linear-gradient(45deg, var(--brand, #007bff), #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}


.hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    /* Height is set per-page via inline styles or page-specific CSS */
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure slider images fill the wrapper */
.hero-image-wrapper .hero-img-slide {
    min-height: unset; /* override any conflicting min-height */
}

/* About Section */
.premium-about-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: scale(1.02);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.split-content {
    flex: 1 1 50%;
    padding: 2rem;
}

.split-image {
    flex: 1 1 50%;
    padding: 2rem;
}

@media (max-width: 991px) {
    .split-layout {
        flex-direction: column;
    }
    .split-content, .split-image {
        flex: 1 1 100%;
        width: 100%;
        padding: 1rem 0;
    }
    .hero-image-wrapper img, .about-image-wrapper img {
        min-height: 300px;
    }
}
