@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-hero-banner {
    display: flex;
    height: 424px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    position: relative;
    background-color: #C4C4C4;
    box-sizing: border-box;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-flex-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding: 0 var(--space-80);
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 1s ease-out;
}

.our-product-label {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-bottom: var(--space-24);
}

.type-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.type-page-breadcrumb .parent-link {
    color: var(--Color-Neutral-grey-700);
    font-family: Inter, "IBM Plex Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none;
}

.type-page-breadcrumb .current-page {
    color: var(--Text-Base-White);
    font-family: Inter, "IBM Plex Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-hero-banner {
        height: 235px !important;
    }

    .hero-flex-container {
        padding: 0 var(--space-24) !important;
    }
}

@media (max-width: 767px) {
    .product-hero-banner {
        height: 270px !important;
    }

    .hero-flex-container {
        padding: 0 var(--space-24) !important;
    }
}