:root {
    --orange: #f37a2d;
    --teal: #00a87d;
    --primary-dark: #232323;
}

a:hover {
    text-decoration: none;
}

.prod-cat-list {
	display: flex;
	align-items: center;
}

.prod-cat-item {
    background-color: unset;

    h3 {
        font-size: 2rem;
        margin: 0;
    }

    .prod-buttons {
        display: none;
    }
}

.prod-cat-item:hover {
    border: none;
}

.footer {
    padding: 30px 0 60px;
    color: var(--primary-dark);

    a:link, .footer-col-title {
        color: var(--primary-dark);
    }

    h4 {
        text-transform: uppercase;
        font-weight: bold;
    }
}

.footer-bottom {
    display: none;
}


.bulk-discount {
    font-size: 3rem;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 2rem;
    color: var(--orange);
}

@media screen and (max-width: 760px) {
    body {
        .bulk-discount {
            width: 100%;
        }
    }
}
