/* ============================================
   Commerzy - Marketplace Page Styles
   ============================================ */

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(to right, #8cd45f 0%, #0091ac 100%);
    padding: 80px 0;
    color: #fff;
}

.page-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-hero .hero-text {
    flex: 1;
}

.page-hero .hero-text .badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.page-hero .hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-hero .hero-image {
    flex: 1;
}

.page-hero .hero-image img {
    max-width: 100%;
    height: auto;
}

/* ========== PROBLEMS SECTION ========== */
.problems-section {
    padding: 60px 0;
}

.problems-section .section-title {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-item {
    text-align: center;
    padding: 30px 20px;
}

.problem-item .icon {
    font-size: 48px;
    color: #a80000;
    margin-bottom: 20px;
}

.problem-item h3 {
    color: #a80000;
    font-size: 18px;
    margin-bottom: 15px;
}

.problem-item p {
    color: #777777;
    line-height: 1.7;
}

/* ========== SOLUTION BANNER ========== */
.solution-banner {
    background: rgba(221,0,0,0.09);
    padding: 80px 0;
    text-align: center;
}

.solution-banner h2 {
    color: #a80000;
    font-size: 36px;
    line-height: 1.4;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 50px 0 80px;
}

.features-section .section-title {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.feature-row .feature-image {
    flex: 0 0 35%;
    text-align: center;
}

.feature-row .feature-image img {
    max-width: 100%;
    height: auto;
}

.feature-row .feature-content {
    flex: 1;
}

.feature-row .feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-row .feature-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.feature-row .feature-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8cd45f;
    font-weight: bold;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero .hero-text,
    .page-hero .hero-image {
        flex: none;
        max-width: 100%;
    }

    .page-hero .hero-image {
        margin-top: 30px;
    }

    .page-hero .hero-text h1 {
        font-size: 32px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero .hero-text h1 {
        font-size: 28px;
    }

    .page-hero .hero-text p {
        font-size: 16px;
    }

    .problems-section .section-title,
    .solution-banner h2,
    .features-section .section-title {
        font-size: 26px;
    }

    .feature-row {
        flex-direction: column;
        text-align: center;
    }

    .feature-row .feature-image {
        flex: none;
        margin-bottom: 20px;
    }

    .feature-row .feature-content li {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .page-hero .hero-text h1 {
        font-size: 24px;
    }

    .page-hero .hero-text .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .problem-item {
        padding: 20px 15px;
    }
}
