/* Aurelielle Footer — brand-styled multi-column footer with legal links.
   Injected before Kadence's default copyright bar. */

.aur-footer {
    background: #1a1a1a;
    color: #d8d4cf;
    padding: 64px 24px 24px;
    margin-top: 80px;
    font-family: var(--global-body-font-family, 'DM Sans', sans-serif);
}

.aur-footer__inner {
    max-width: 1290px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

@media (max-width: 1024px) {
    .aur-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}

@media (max-width: 600px) {
    .aur-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .aur-footer { padding: 48px 20px 20px; }
}

/* Brand column */
.aur-footer__brand .aur-footer__logo {
    font-family: var(--global-heading-font-family, inherit);
    font-weight: 700;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin: 0 0 12px;
}

.aur-footer__brand .aur-footer__tagline {
    color: #b6b0a7;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 320px;
}

.aur-footer__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c9a96e;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 16px;
    word-break: break-all;
}

.aur-footer__contact:hover { color: #e0c188; }

.aur-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.aur-footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d8d4cf;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    font-size: 16px;
}

.aur-footer__social:hover {
    background: #c9a96e;
    color: #1a1a1a;
}

/* Column headings */
.aur-footer__heading {
    font-family: var(--global-heading-font-family, inherit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin: 0 0 16px;
}

/* Link lists */
.aur-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aur-footer__list li { margin-bottom: 10px; }

.aur-footer__list a {
    color: #d8d4cf;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.aur-footer__list a:hover { color: #ffffff; }

/* Trust badges inside footer */
.aur-footer__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.aur-footer__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #b6b0a7;
    background: rgba(255,255,255,0.04);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Bottom strip */
.aur-footer__legal {
    max-width: 1290px;
    margin: 40px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #8a857d;
    font-size: 12px;
}

.aur-footer__legal p { margin: 0; }

.aur-footer__legal a { color: #b6b0a7; text-decoration: none; }
.aur-footer__legal a:hover { color: #ffffff; }

/* Payment icons row */
.aur-footer__pay {
    display: flex;
    gap: 8px;
    align-items: center;
}

.aur-footer__pay svg {
    height: 22px;
    width: auto;
}

/* Hide Kadence's default footer - our .aur-footer replaces it entirely. */
footer#colophon.site-footer {
    display: none !important;
}
