﻿.woocommerce-products-header.image-exists {
    display: none !important;
}

.cat-boxes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media screen and (max-width: 900px) {
    .cat-boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 660px) {
    .cat-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 375px) {
    .cat-boxes {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cat-boxes__box {
    position: relative;
    transition: all 0.5s ease-in-out;
}

.cat-boxes__img {
    display: block;
    width: 100%;
    height: auto;
}

.cat-boxes__title {
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #efcabb;
    padding: 20px;
    width: 100%;
    margin: 0;
    transition: background 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.cat-boxes__box:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 0px 32px -18px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 32px -18px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 32px -18px rgba(0, 0, 0, 1);
}

.sticky-footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
}

.woocommerce-products-header__title, .woocommerce-breadcrumb {
    display: none;
}

@media (min-width: 993px) {
    .col-full-nav {
        background: #efcabb !important;
    }
}

