.filter-and-products {
    display: flex;
    gap: 3rem;

    @media (max-width: 767.98px) {
        flex-direction: column;
        gap: 1rem;
    }
}

.filter-and-products .filter label {
    font-size: 1rem;
}

.filter-and-products .product-container {
    flex: 1
}

.filter-and-products .product-container .search-and-filter-info,
.filter-and-products .product-container .search-and-filter-info select {
    font-size: 0.9rem;
}

.product {
    display: grid;
    grid-template-columns: 0.5fr 4fr 0.5fr 1.5fr;
    gap: 1rem;
    align-items: center;
    border: 1px solid rgba(33, 37, 41, 0.3);
    border-radius: 4px;

    @media (max-width: 767.98px) {
        grid-template-columns: 1fr 2.5fr;
    }
}

.product .product-image-container img {
    width: 100%;
}

.product .default-product-image-icon-container {
    opacity: 30%;
}

.product .name .brand-name {
    font-size: 0.8rem;

    @media (max-width: 767.98px) {
        line-height: 1;
    }
}

.product .name .product-name {
    font-size: 1.25rem;
    overflow-wrap: break-word;
    hyphens: auto;
    word-break: break-all;

    @media (max-width: 767.98px) {
        font-size: 1.225rem;
        line-height: 1.25;
    }
}

.product .name .product-cta {
    font-size: 1rem;
}

.product-list a {
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 1rem;

    &:hover .product-name,
    &:hover .product-cta {
        text-decoration: underline;
    }
}

.product .product-min-price .badge-lowest-price {
    font-weight: 400;
    font-size: 0.7rem;
    background-color: #fff!important;
    text-wrap: nowrap;
}

.product .product-min-price .price-amount {
    font-weight: 500;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: end;
    white-space: nowrap;

    @media (max-width: 767.98px) {
        justify-content: start;
        flex-direction: row-reverse;
    }
}

.pagination a.page-link {
    color: var(--bs-body-color);
}

.product .product-min-price .price-amount .discount-icon {
    display: flex;
    color: #E74C3C;
}

.product .product-min-price .unavailable-message {
    font-weight: 600;
    color: #c2bcc8;
    font-size: 0.9rem;
}

.filter-badge {
    cursor: pointer;
    font-weight: 400;

    :hover .btn-close {
        opacity: .5;
    }
}

.filter-badge .filter-text {
    font-weight: 600;
}

.filter-badge .btn-close {
    font-size: 0.6rem;
}

.adsbygoogle ins {
    margin-bottom: 3rem;
}
