.produk-hero{
    position: relative;
}
.produk-hero .img-produk-hero{
    min-height: 480px;
    object-fit: cover;
}
.produk-hero .hero-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-blue);
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
}
.produk-hero .form-search-container{
    background: var(--dark-blue);
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 50px;
    border-radius: 10px;
    max-width: 700px;
    width: calc(100% - 30px);
}

.produk-hero .form-search-container label{
    color: white;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
.produk-hero .form-search-container .btn-search{
    font-weight: bold;
    text-transform: uppercase;
    color: var(--dark-blue);
    font-family: 'Poppins', sans-serif;
}

.product-detail{
    padding: 64px 0px;
}
.product-detail .product-title{
    font-size: 32px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-blue);
}
.product-detail-type-container .product-type-title{
    font-size: 24px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-blue);
}
.product-detail-type-container .select-product-type{
    max-width: 300px;
}
.product-detail-type-container .horizontal-line{
    width: 100%;
    height: 3px;
    margin-left: 40px;
    background: var(--dark-blue);
}
.product-detail-type-container .product-type-info{
    padding: 55px;
    background: var(--dark-blue);
    border-radius: 10px;
    height: 100%;
}
.product-detail-type-container .product-type-info .product-info-item{
    border-bottom: 1px solid white;
    margin-bottom: 12px;
}
.product-detail-type-container .product-type-info .product-info-item .product-info-content{
    color: var(--gold);
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
}
.product-detail-type-container .product-type-info .product-info-item .product-info-name{
    color: white;
    margin-bottom: 12px;
}
.product-detail-type-container .product-type-info .product-info-others{
    display: flex;
    justify-content: space-between;
}
.product-detail-type-container .product-type-info .product-info-others .info-number{
    background: var(--gold);
    font-weight: bold;
    border-radius: 5px;
    width: 45px;
    display: block;
    text-align: center;
    font-size: 32px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px){
    .produk-hero .img-produk-hero{
        min-height: 400px;
    }
    .produk-hero .hero-title{
        top: 35%;
    }
    .produk-hero .form-search-container{
        padding: 20px 30px;
    }
}