/* Footer refresh: compact trust signals, useful internal links and clear contact details. */
body.storefront .footer-part.footer-seo {
    position: relative;
    margin-top: 64px;
    padding: 0;
    overflow: hidden;
    color: #b9c6da;
    background: #111b30;
}

body.storefront .footer-part.footer-seo::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--primary), #f6c945, #7c8cff);
}

body.storefront .footer-seo .footer-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

body.storefront .footer-seo .footer-trust__item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    min-height: 68px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

body.storefront .footer-seo .footer-trust__icon {
    display: inline-flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #ffe18a;
    background: rgba(255, 210, 59, .13);
}

body.storefront .footer-seo .footer-trust__item p {
    min-width: 0;
    margin: 0;
}

body.storefront .footer-seo .footer-trust__item strong,
body.storefront .footer-seo .footer-trust__item span {
    display: block;
}

body.storefront .footer-seo .footer-trust__item strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
}

body.storefront .footer-seo .footer-trust__item span {
    margin-top: 2px;
    color: #99a9c2;
    font-size: 12.5px;
    line-height: 1.45;
}

body.storefront .footer-seo__main {
    padding: 46px 0 38px;
}

body.storefront .footer-seo .footer-widget {
    display: block;
    height: 100%;
}

body.storefront .footer-seo .footer-logo {
    display: inline-block;
    margin-bottom: 17px;
}

body.storefront .footer-seo .footer-logo img {
    width: auto;
    max-width: 190px;
    max-height: 44px;
    object-fit: contain;
}

body.storefront .footer-seo .footer-desc {
    max-width: 360px;
    margin: 0;
    color: #aebbd0;
    font-size: 14px;
    line-height: 1.75;
}

body.storefront .footer-seo .footer-title {
    position: relative;
    margin: 5px 0 18px;
    padding-bottom: 11px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

body.storefront .footer-seo .footer-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    border-radius: 2px;
    content: "";
    background: var(--primary);
}

body.storefront .footer-seo .footer-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.storefront .footer-seo .footer-links li {
    margin: 0;
}

body.storefront .footer-seo .footer-links li a {
    display: inline-flex;
    align-items: center;
    color: #b9c6da;
    font-size: 14.5px;
    line-height: 1.45;
    text-decoration: none;
}

body.storefront .footer-seo .footer-links li a::before {
    width: 5px;
    height: 5px;
    margin-right: 9px;
    border-radius: 50%;
    content: "";
    background: #f6c945;
    opacity: .9;
}

body.storefront .footer-seo .footer-links li a:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
}

body.storefront .footer-seo .footer-contact-block {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

body.storefront .footer-seo .footer-contact {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.storefront .footer-seo .footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #b9c6da;
    font-size: 14px;
}

body.storefront .footer-seo .footer-contact li i {
    width: 20px;
    margin: 0;
    color: #ffe18a;
    font-size: 18px;
    text-align: center;
}

body.storefront .footer-seo .footer-contact a {
    color: #d4deed;
    text-decoration: none;
}

body.storefront .footer-seo .footer-contact a:hover {
    color: #ffffff;
}

body.storefront .footer-seo .footer-bottom {
    min-height: 68px;
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .11);
    border-radius: 0;
    background: transparent;
}

body.storefront .footer-seo .footer-copytext {
    margin: 0;
    color: #91a1bb;
    font-size: 13px;
}

body.storefront .footer-seo .footer-copytext a {
    color: #d5e0ee;
    text-decoration: none;
}

body.storefront .footer-seo .footer-copytext a:hover {
    color: #ffffff;
}

body.storefront .footer-seo .footer-card a img {
    width: 46px;
}

@media (max-width: 991px) {
    body.storefront .footer-seo .footer-contact-block {
        margin-top: 32px;
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 767px) {
    body.storefront .footer-part.footer-seo {
        margin-top: 38px;
    }

    body.storefront .footer-seo .footer-trust {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 18px 0;
    }

    body.storefront .footer-seo__main {
        padding: 34px 0 28px;
    }

    body.storefront .footer-seo .footer-widget {
        margin-bottom: 28px;
    }

    body.storefront .footer-seo .footer-contact-block {
        margin-top: 0;
    }

    body.storefront .footer-seo .footer-bottom {
        display: grid;
        gap: 12px;
        justify-content: start;
    }
}
