/* =========================================================
   Thrifty Theme — Footer
   ========================================================= */

.thrifty-footer {
    background: var(--tt-black);
    color: rgba(255,255,255,0.78);
    position: relative;
    overflow: hidden;
}
.thrifty-footer::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(220,38,38,0.08), transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(220,38,38,0.05), transparent 50%);
    pointer-events: none;
}

.thrifty-footer-inner {
    position: relative;
    max-width: var(--tt-container);
    margin: 0 auto;
    padding: 80px 24px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.thrifty-footer-brand {
    max-width: 380px;
}
.thrifty-footer-logo {
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}
.thrifty-footer-logo .custom-logo,
.thrifty-footer-logo .thrifty-logo-img { max-height: 56px; }
.thrifty-footer-logo .thrifty-logo-text { filter: none; }
.thrifty-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin: 0 0 22px;
}

.thrifty-socials {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 10px;
}
.thrifty-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--tt-ease), transform 0.18s var(--tt-spring), color var(--tt-tx);
    text-decoration: none;
}
.thrifty-socials a:hover {
    background: var(--tt-red);
    transform: translateY(-3px) rotate(-4deg);
    color: #fff;
}

.thrifty-footer-widget-title {
    font-family: var(--tt-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}
.thrifty-footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 3px;
    background: var(--tt-red);
    border-radius: 2px;
}

.thrifty-footer-address {
    font-style: normal;
    line-height: 1.7;
    margin: 0 0 16px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
}

.thrifty-footer-meta {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.thrifty-footer-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.thrifty-footer-meta i {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(220,38,38,0.18);
    color: var(--tt-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.thrifty-footer-meta a { color: rgba(255,255,255,0.85); }
.thrifty-footer-meta a:hover { color: var(--tt-red); }

.thrifty-footer-hours {
    list-style: none;
    margin: 0; padding: 0;
}
.thrifty-footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.thrifty-footer-hours li:last-child { border-bottom: 0; }
.thrifty-footer-hours .thrifty-day {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}
.thrifty-footer-hours .thrifty-time { color: rgba(255,255,255,0.7); }

.thrifty-footer-menu,
.thrifty-utility-menu {
    list-style: none;
    margin: 0; padding: 0;
}
.thrifty-footer-menu a,
.thrifty-utility-menu a {
    display: inline-block;
    padding: 6px 0;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--tt-tx), padding-left var(--tt-tx);
    position: relative;
}
.thrifty-footer-menu a::before {
    content: '\2192';
    color: var(--tt-red);
    margin-right: 8px;
    opacity: 0;
    transition: opacity var(--tt-tx), transform var(--tt-tx);
    transform: translateX(-6px);
    display: inline-block;
}
.thrifty-footer-menu a:hover { color: #fff; padding-left: 4px; }
.thrifty-footer-menu a:hover::before { opacity: 1; transform: translateX(0); }

/* ----- Trust strip ----- */
.thrifty-footer-trust {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    background: rgba(0,0,0,0.3);
}
.thrifty-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.thrifty-trust-item i {
    color: var(--tt-red);
    font-size: 18px;
}

/* ----- Footer bottom ----- */
.thrifty-footer-bottom {
    position: relative;
}
.thrifty-footer-bottom-inner {
    max-width: var(--tt-container);
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.thrifty-copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.thrifty-utility-menu {
    display: flex;
    gap: 18px;
}
.thrifty-utility-menu a {
    font-size: 13px;
    padding: 0;
    color: rgba(255,255,255,0.55);
}
.thrifty-utility-menu a:hover { color: #fff; }
.thrifty-payments {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 28px;
}
.thrifty-payments i { transition: color var(--tt-tx); }
.thrifty-payments i:hover { color: #fff; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .thrifty-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 60px 24px 36px; }
    .thrifty-footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 600px) {
    .thrifty-footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .thrifty-footer-trust { gap: 18px 24px; padding: 18px; }
    .thrifty-trust-item { font-size: 12px; }
    .thrifty-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .thrifty-utility-menu { flex-wrap: wrap; gap: 12px; }
}
