/* Header */
.page-header {
    padding-top: 122px;
    padding-bottom: 0;
}

.header-input-group .btn {
    background-color: var(--primary);
    color: var(--white);
}
/* End Header */

/* Divider */
.divider hr {
    border-color: var(--primary);
    margin: 32px 0;
}
/* End Divider */


/* Products */
#products {
    margin-top: 32px;
    margin-bottom: 64px;
}

.products-card {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.products-card .card-body {
    padding: 16px;
}

.products-card .card-img-top {
    width: 100%;
    height: 249px;
    object-fit: cover;
}

.products-item {
    margin-bottom: 24px;
}

.products-btn {
    background-color: var(--primary);
    color: var(--white);
    transition: var(--transition);
    margin: 48px auto 0 auto;
    display: block;
}

.products-btn:hover {
    filter: brightness(.9);
    color: var(--white);
}

.star-icon {
    font-size: 16px;
    color: #FFC107;
}

.products-pagination {
    box-shadow: var(--shadow);
    width: fit-content;
    margin: 0 auto;
}

.products-pagination .page-link {
    border-left-color: var(--primary);
    border-right-color: var(--primary);
}

.products-pagination .active > .page-link {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
/* End Products */

/* Filter */
.filter-input {
    width: 200px;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    margin-right: 8px;
    box-shadow: var(--shadow);
}
/* End Filter */

@media (min-width: 768px) and (max-width: 997.98px) {

    .products-card .card-img-top {
        height: 200px;
    }

}

@media (max-width: 767.98px) {

    /* Products */
    .products-gutter {
        margin-left: -8px;
        margin-right: -8px;
    }

    .products-gutter > [class^="col-"],
    .products-gutter > [class^=" col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .products-item {
        margin-bottom: 16px
    }

    .products-card {
        height: 100%;
    }

    .products-card .card-img-top {
        height: 160px
    }
    /* End Products */

}
