/* ── PRODUCT PAGES (Manpower Tracking, Human Resource, etc) ── */

/* Breadcrumb */
.page-breadcrumb {
    background: #ffffff;
    padding-top: 72px;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.breadcrumb-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #3a5270;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #2c3f58;
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #d1d5db;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

/* Main Section */
.product-main-section {
    background: #ffffff;
    padding: 2rem;
}

.product-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Banner */
.product-banner {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.product-banner-bg {
    position: absolute;
    inset: 0;
}

.product-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 30, 55, 0.90) 0%,
        rgba(30, 45, 70, 0.85) 50%,
        rgba(40, 55, 85, 0.75) 100%
    );
}

.product-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.product-banner-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.product-banner-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.90);
    max-width: 550px;
    margin: 0 auto;
}

/* Content Area */
.product-content-area {
    text-align: center;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Box */
.product-image-box {
    background: #e8eaed;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
}

.product-image-box svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-inner {
        padding: 0.75rem 1rem;
    }

    .breadcrumb-text {
        font-size: 0.75rem;
    }

    .product-banner {
        height: 180px;
        margin-bottom: 2rem;
    }

    .product-banner-heading {
        font-size: 1.5rem;
    }

    .product-banner-desc {
        font-size: 0.85rem;
    }

    .product-banner-content {
        padding: 1.5rem;
    }

    .product-main-section {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .product-image-box {
        padding: 0;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-text {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

    .product-banner {
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .product-banner-heading {
        font-size: 1.2rem;
    }

    .product-banner-desc {
        font-size: 0.75rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .product-image-box {
        padding: 0;
        height: 220px;
    }
}
