/* 
    footer
*/

.footer-info{
    padding: 3rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    /* min-height: 60svh; */
}

.footer-contact{
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-large-text *{
    font-family: var(--serifik);
    font-size: var(--fs-footer-large);
    line-height: normal;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

.contact-phone {
    text-decoration: none;
    color: var(--black);
    font-size: var(--fs-footer-large);
    display: block;
    margin: 0.5rem 0;
}

.contact-email {
    color: var(--grey);
    margin: 0.5rem 0;
}

.contact-hours {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-hours li {
    margin-bottom: 0.5rem;
    color: var(--grey);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.social-link {
    max-width: 200px;
    display: block;
}
@media (max-width: 767px) {
    .social-link {
        max-width: unset;
    }
}


.external-link{
    width: 14px;
    height: 14px;
    font-size: 1.5rem;
}

.footer-image{
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
}

.footer-image-img {
    width: 100%;
    height: auto;
}

.seo-bomb {
    margin-top: 20vh;
    display: flex;
    flex-direction: row;
    padding: 3rem;
    gap: 2rem;
}

.product-column{
    flex: 1;
}

@media (min-width:768px){
    .product-column:nth-child(2){
        transform: translateY(5rem);
    }
}

.product-title {
    font-size: var(--fs-md);
    margin-bottom: 1rem;
    color: var(--black);
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-footer-category {
    color: var(--grey);
    text-decoration: none;
    font-size: var(--fs-xs);
    line-height: 1.5;
    display: block;
    margin-bottom: 0.25em;
}
@media (max-width: 767px) {
    .product-footer-category {
        margin: 0;
    }
}

.product-footer-category:hover {
    color: var(--black);
}

.footer-link {
    color: var(--grey);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--black);
}

.center-me *:not(.seo-bomb){
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lil-extra{
    margin-top: 4rem;
    padding: 3rem;
    /* border: 1px solid red; */
    align-items: start;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer-info {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .footer-contact {
        order: 2;
    }

    .footer-image {
        order: 1;
        margin-bottom: 2rem;
        justify-content: center;
    }

    .footer-large-text * {
        font-size: var(--fs-footer-large-mobile);
    }

    .seo-bomb {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
}