.zaro-footer {
    background: var(--zf-bg, #0D0D0D);
    color: var(--zf-text, #ffffff);
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* ---- Trust badge strip ---- */
.zaro-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-sizing: border-box;
}
.zaro-footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 220px;
}
.zaro-footer-badge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zaro-footer-badge-icon img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    display: block;
}
.zaro-footer-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.zaro-footer-badge-text strong {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--zf-badge-title-1, #1fae4d), var(--zf-badge-title-2, #ffffff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--zf-badge-title-1, #1fae4d);
}
.zaro-footer-badge-text span {
    font-size: 12px;
    color: var(--zf-muted, #9CA3AF);
}

/* ---- Main columns ---- */
.zaro-footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
    width: 100%;
    padding: 36px 40px;
    box-sizing: border-box;
}
@media (max-width: 992px) {
    .zaro-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .zaro-footer-main {
        grid-template-columns: 1fr;
    }
}

.zaro-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.zaro-footer-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.zaro-footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--zf-text, #fff);
}
.zaro-footer-tagline {
    font-size: 13px;
    color: var(--zf-muted, #9CA3AF);
    line-height: 1.6;
    margin: 0 0 16px;
}
.zaro-footer-socials {
    display: flex;
    gap: 10px;
}
.zaro-footer-social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zf-text, #fff);
    transition: background 0.2s ease, color 0.2s ease;
}
.zaro-footer-social-btn:hover {
    background: var(--zf-accent, #1fae4d);
    color: #fff;
}

.zaro-footer-col-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--zf-text, #fff);
    margin: 0 0 14px;
}

.zaro-footer-link-list,
.zaro-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zaro-footer-link-list a {
    color: var(--zf-muted, #9CA3AF);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
}
.zaro-footer-link-list a:hover {
    color: var(--zf-accent, #1fae4d);
}

.zaro-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--zf-muted, #9CA3AF);
}
.zaro-footer-contact-icon {
    color: var(--zf-accent, #1fae4d);
    flex-shrink: 0;
    margin-top: 2px;
}

.zaro-footer-newsletter-text {
    font-size: 13px;
    color: var(--zf-muted, #9CA3AF);
    line-height: 1.6;
    margin: 0 0 14px;
}
.zaro-footer-newsletter-form {
    display: flex;
    gap: 0;
}
.zaro-footer-newsletter-input {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 0 12px;
    font-size: 13px;
    background: rgba(255,255,255,0.08);
    color: var(--zf-text, #fff);
}
.zaro-footer-newsletter-input::placeholder {
    color: var(--zf-muted, #9CA3AF);
}
.zaro-footer-newsletter-btn {
    width: 44px;
    height: 40px;
    border: none;
    border-radius: 0 6px 6px 0;
    background: var(--zf-accent, #1fae4d);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.zaro-footer-newsletter-msg {
    font-size: 12px;
    margin: 8px 0 0;
    color: var(--zf-accent, #1fae4d);
}
.zaro-footer-newsletter-msg.zaro-footer-newsletter-error {
    color: #ff5c5c;
}

/* ---- Bottom bar ---- */
.zaro-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    padding: 16px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-sizing: border-box;
}
.zaro-footer-copyright {
    font-size: 12.5px;
    color: var(--zf-muted, #9CA3AF);
}
.zaro-footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}
.zaro-footer-payment-icon {
    height: 20px !important;
    width: auto !important;
    max-width: 44px !important;
    object-fit: contain !important;
    display: block;
}