/* ============================================
   Commerzy - Inventory Page Styles
   ============================================ */

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

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

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

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

.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 {
    flex: 1;
}

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

.page-hero .hero-text p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

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

.feature-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-card .feature-image {
    padding-top: 20px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.feature-card .feature-image img {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 18px;
    color: #0091ac;
    padding: 20px 20px 15px;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.feature-card ul {
    padding: 0 20px 25px;
    margin: 0;
    list-style: none;
}

.feature-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

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

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

    .page-hero .hero-content {
        gap: 40px;
    }

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

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

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

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

    .page-hero .hero-image {
        max-width: 600px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-section .section-title {
        font-size: 26px;
    }
}

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

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

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

    .features-section {
        padding: 60px 0;
    }

    .features-section .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card h3 {
        font-size: 16px;
        padding: 15px 15px 10px;
    }

    .feature-card ul {
        padding: 0 15px 20px;
    }

    .feature-card ul li {
        font-size: 13px;
    }
}

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

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

    .features-section .section-title {
        font-size: 20px;
    }
}
