#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer p,
#footer ul,
#footer ol,
#footer li {
    margin: 0;
    padding: 0;
    color: inherit;
}


#footer.footer {
 border-top: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  background-color: #21212C;
  color: #fff;
  padding: 100px 0;
  line-height: 1.5;
}

#footer.footer::before {
  pointer-events: none;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("/wp-content/themes/storefront/external/components/footer/assets/footer-bg.png");
  background-position: bottom center;
  background-size: cover;
  opacity: .3;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

#footer .footer__container {}

#footer .footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

#footer .footer__grid-item {

}

#footer .footer__heading {
    font-size: 30px;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 15px;
}

#footer .footer__description {
    font-size: 15px;
    text-align: justify;
}



#footer .footer__title {
    font-size: 18px;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 28px;
}

#footer .footer__contact-link {
    font-size: 15px; 
    color: inherit;
    display: block;
    margin-bottom: 16px;
}


#footer .footer__smList {
    display: flex;
    gap: 26px;
    margin-top: 25px;
}

#footer .footer__smList-item {
    align-items: center;
    display: flex;
    justify-content: center
}

#footer .footer__smList-item svg {
    height: 16px;
    width: 16px;
    fill: #fff;
    transition: .3s all ease-in-out
}

#footer .footer__smList-item:hover svg {
    fill: #ba9a63;
}



#footer .footer__grid-item--newsletter {
    display: flex;
    flex-direction: column;
}

#footer .footer__cta {
    display: block;
}

#footer .footer__copy-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 13px;
    padding: 32px 0;
    margin-top: 3rem;
}

#footer .footer__copyright {
    opacity: 0.6;
}

#footer .footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
}

#footer .footer__list-item {}

#footer .footer__list-link {
    color: inherit;
    transition: .3s all ease-in-out;
}
#footer .footer__list-link:hover {
    color: #D5846E;
}



#footer .footer__input-group {
    display: flex;
}

#footer .footer__input {
    padding: 1rem;
    border: none;
    flex: 1;
    outline: none !important;
    font-size: 14px;
}

#footer .footer__cta {
    padding: .5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EC4400;
    box-shadow: 0px 10px 20px 0px rgba(255, 83.99, 83.99, 0.24);
    color: #fff;
    font-size: 14px;
    transition: .3s all ease-in-out;
}

#footer .footer__cta:hover {
    background: #000;
}


@media(max-width: 1024px) {

    #footer .footer__grid {
        gap: 40px;
    }
}

@media(max-width: 950px) {
    #footer .footer {
        padding: 50px 0;
    }
    #footer .footer__grid {
        grid-template-columns: 1fr;
    }

    #footer .footer__heading {
        margin-bottom: 1rem;
    }
    
    #footer .footer__title {
        padding-bottom: 0;
        margin-bottom: 1rem;
    }
    

    #footer .footer__copy-wrapper {
        flex-direction: column-reverse;
        padding-bottom: 0;
        gap: 4rem;
    }
}

@media(max-width: 800px) {
    #footer .footer__list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr)
    }
}

@media(max-width: 660px) {
    #footer .footer__list {
        grid-template-columns: repeat(3, 1fr)
    }
}


@media(max-width: 460px) {
    #footer .footer__list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
