/* =========================================
   MARKETPLACE SECTION (FINAL)
========================================= */
.marketplace {
    padding: 100px 0;

    /* 🔥 CLEAN GRADIENT BACKGROUND */
    background: linear-gradient(
        135deg,
        #eef2ff 0%,
        #f8fafc 100%
    );
}

/* LAYOUT */
.marketplace-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================================
   LEFT CONTENT
========================================= */
.marketplace-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BADGE */
.marketplace-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 91, 219, 0.1);
    color: #3b5bdb;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #3b5bdb;
    border-radius: 50%;
}

/* TITLE */
.marketplace-title {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
}

.highlight {
    color: #3b5bdb;
}

/* TEXT */
.marketplace-subtitle {
    color: #64748b;
    font-size: 15px;
    max-width: 480px;
}

/* FEATURES */
.marketplace-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature {
    display: flex;
    gap: 12px;
}

.feature-icon {
    font-size: 20px;
}

.feature h4 {
    font-size: 14px;
    font-weight: 600;
}

.feature p {
    font-size: 13px;
    color: #64748b;
}

/* BUTTON */
.btn-primary {
    margin-top: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #3b5bdb, #4c6ef5);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    transition: 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 91, 219, 0.3);
}

/* =========================================
   RIGHT VISUAL
========================================= */
.marketplace-visual {
    position: relative;
}

/* TAG */
.market-preview-tag {
    position: absolute;
    top: -20px;
    left: 20px;

    background: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;

    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* IMAGE */
.marketplace-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.marketplace-image-wrap img {
    width: 100%;
    display: block;
}

/* =========================================
   FLOAT CARDS
========================================= */
.market-float {
    position: absolute;
    background: white;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-size: 12px;
}

/* POSITIONS */
.market-float--revenue {
    top: 40%;
    left: -20px;
}

.market-float--orders {
    bottom: 20px;
    right: -20px;
}

.float-label {
    color: #64748b;
}

.float-value {
    font-weight: 600;
}

.float-trend {
    font-size: 11px;
    color: #64748b;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .marketplace-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .marketplace-content {
        align-items: center;
    }

    .marketplace-visual {
        margin-top: 40px;
    }

    .market-float {
        display: none;
    }
}