footer {
    /* background-color: #fffcf9; */

    display: flex;
    flex-direction: column;

    position: relative;
}

.footer__top-border {
    height: 1px;

    background-color: var(--color-05);
}

.footer__top {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-xxxl);
    
    padding: var(--space-xxxl);
}

.footer__col {
    width: calc(25% - (3 * var(--space-xxxl) / 4));

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
}

.footer__col > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
}

.footer__hr {
    width: 100%;
    height: 1px;

    background-color: var(--color-05);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-m);

    padding: var(--space-m) var(--space-xxxl);
}

.footer__bottom-group {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.footer__payment-option-img {
    height: 16px;
}

.footer__social-media-img-wrapper {
    height: 16px;

    display: flex;
}

.footer__social-media-img {
    height: 100%;
}

@media (max-width: 1280px) {
    
}

@media (max-width: 1024px) {
    .footer__col {
        width: calc(50% - (var(--space-xxxl) / 2));
    }
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        gap: var(--space-m);
    }

    .footer__col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer__bottom-group:first-child {
        display: none;
    }
}