.rp-footer {
    margin-top: 60px;
    margin-bottom: 30px;
}

.rp-footer__panel {
    background: #8e8e96;
    border-radius: 16px;
    padding: 20px;
    background: #868691;
    border-top: 1.6px solid #c1c3c6;
}

.rp-footer__title {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.rp-footer__menu {
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
}

.rp-footer__menu li {
    margin: 0 8px 0px 0;
    display: inline;
}

.rp-footer__menu a {
    color: var(--rp-color-text-muted);
    text-decoration: none;
}

.rp-footer__menu a:hover {
    color: var(--rp-color-secondary);
}

.rp-footer__contact {
    display: block;
    flex-direction: column;
    padding-bottom: 15px;

    /*     margin-top: 0px; */
}

.rp-footer__phone,
.rp-footer__email {
    display: inline;
    color: var(--rp-color-text);
    text-decoration: none;
    white-space: nowrap;
}

.rp-footer__phone {
    margin-right: 15px;
}

.rp-footer__phone:hover,
.rp-footer__email:hover {
    color: var(--rp-color-secondary);
}

.rp-footer__shipping-text {
    line-height: 1.5;
}

.rp-footer__reviews-placeholder {
    color: var(--rp-color-text-muted);
}

.wp-gr.wp-dark .wp-google-based {
    background: white;
    border-radius: 5px;
    padding: 2px 10px !important;
}

.wp-gr .wp-google-powered {
    display: none;
}

.rp-footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
}

.rp-footer__copyright {
    font-size: .875rem;
}

.rp-footer__payment-cards {
    display: block;
    max-width: 300px !important;
    width: 100%;
    height: auto;
}

/* Mobile */

@media (max-width:479px) {

    .rp-footer__panel {
        max-width: 420px;
        margin: 0 auto;
    }

    .rp-footer__top {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .rp-footer__meta {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .rp-footer__payment-cards {
        margin: 0 auto;
    }

}

/* Tablet */

@media (min-width:480px) {

    .rp-footer__top {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

}

/* Desktop */

@media (min-width:769px) {

    .rp-footer__top {
        gap: 30px;
    }

    .rp-footer__panel {
        padding: 30px;
    }

}