/*
 * Plugin: Rolex Custom Components
 * Author: Rida Labbar
 * Year: 2026
 * File: components\rolex-footer\assets\footer.css
 */

.rcc-footer {
    font-family: var(--rcc-font);
    color: #ffffff;
    background: linear-gradient(90deg, #0b3e27, #197149);
    text-align: center;
}

.rcc-footer__brand {
    padding: 48px 8vw 40px;
    display: flex;
    justify-content: center;
}

.rcc-footer__logo-link {
    display: inline-flex;
}

.rcc-footer__logo {
    height: 32px;
    width: auto;
}

.rcc-footer__back {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 8vw 22px;
}

.rcc-footer__back-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    /* gap: 6px; */
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.rcc-footer__back-link:hover {
    color: #9bf9ce !important;
}

.rcc-footer__back-link:focus {
    color: inherit !important;
}

.rcc-footer__back-icon svg {
    display: block;
    fill: currentColor;
    transform: rotate(-90deg);
    transition: fill 0.2s ease;
}

@media (min-width: 640px) {
    .rcc-footer__logo {
        height: 40px;
    }
}

