.custom-footer {
    padding: 72px 0 28px;
    background:
        radial-gradient(circle at top right, rgba(211, 47, 47, 0.18), transparent 22%),
        linear-gradient(180deg, #0f131b 0%, #111827 100%);
    color: #d0d5dd;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.2fr);
    gap: 28px;
    padding-bottom: 34px;
}

.footer-brand-mark img {
    display: block;
    width: auto;
    max-width: 220px;
    height: auto;
}

.footer-brand-copy,
.footer-newsletter-copy {
    margin: 18px 0 0;
    color: rgba(208, 213, 221, 0.76);
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-card {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    /* background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08); */
}

.footer-contact-card span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-contact-card a {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.custom-footer h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.footer-links li+li {
    margin-top: 12px;
}

.footer-links a {
    color: rgba(208, 213, 221, 0.78);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.footer-links a:hover,
.footer-bottom a:hover,
.footer-contact-card a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    background: #c70a0a;
    border-color: rgba(255, 255, 255, 0.18);
}

.footer-newsletter-form {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.footer-newsletter-form input {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0 16px;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.footer-newsletter-form button {
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: #c70a0a;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-methods {
    margin-top: 22px;
}

.footer-payment-image {
    width: 100%;
    max-width: 360px;
    height: auto;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* background-color: #111; */
}

.mobile-mid-bar a {
    color: #fff;
}

.footer-bottom p {
    margin: 0;
    color: rgba(208, 213, 221, 0.66);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom a {
    color: #fff;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .footer-top-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .custom-footer {
        padding: 52px 0 20px;
    }

    .footer-top-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-contact-card a {
        font-size: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}