.navbar.navbar-marketing {
    background-color: var(--white);
    border-bottom: 1px solid #ebebeb;
}

.product-container {
    padding-top: 180px;
    margin-bottom: 56px;
}

.product-container .section-header { margin-bottom: 42px; }

.product-container .section-header .header-line {
    width: 84px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 20px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

.product-container .section-header .header-title {
    text-align: center;
    font-size: 32px;
    line-height: calc(32px * 1.5);
    color: var(--dark);
    font-weight: 700;
}

.product-container .section-header .search-row-layout { margin-top: 32px; }

.product-container .section-header .search-row-layout .form-control {
    height: 55px;
    border-radius: 10px;
}

.product-container .section-header .search-row-layout .btn-submit-search {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
    position: absolute;
    right: 6px;
    top: 6px;
}

.product-container .section-body .product-row { row-gap: 42px }

.product-container .section-body .product-row .card {
    box-shadow: none;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.product-container .section-body .product-row .card:hover {
    border-color: var(--primary);
}

.product-container .section-body .product-row .card .product-name {
    font-size: 18px;
    line-height: calc(18px * 1.5);
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 24px;
}

.product-container .section-body .product-row .card .product-img {
    width: 100%;
    height: 245px;
}

.product-container .section-body .product-row .card .btn-redirect {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 10px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .product-container .section-header .header-title {
        font-size: 24px;
        line-height: calc(24px * 1.5);
    }
}