.site-footer {
    --footer-bg-start: #0f172a;
    --footer-bg-end: #1e1b4b;
    --footer-text: #cbd5e1;
    --footer-text-muted: #94a3b8;
    --footer-text-hover: #f8fafc;

    background: linear-gradient(135deg, var(--footer-bg-start) 0%, var(--footer-bg-end) 100%);
    color: var(--footer-text);
    margin-top: 1rem;
    min-height: 64px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    font-family: 'Tajawal', 'Inter', system-ui, sans-serif;
}

.site-footer-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-footer-start {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.site-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: var(--footer-text);
    background: rgba(255, 255, 255, .08);
    transition: color .12s ease, background .12s ease;
}

.site-social-link:hover {
    color: var(--footer-text-hover);
    background: rgba(255, 255, 255, .16);
}

.site-footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer-link {
    color: var(--footer-text);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: color .12s ease;
    white-space: nowrap;
}

.site-footer-link:hover {
    color: var(--footer-text-hover);
}

.site-footer-sep {
    color: var(--footer-text-muted);
    font-size: 12px;
    line-height: 1;
}

.site-footer-copy {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    color: var(--footer-text-muted);
    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .site-footer {
        min-height: 0;
        max-height: none;
        padding: 18px 16px 16px;
    }

    .site-footer-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .site-footer-start {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .site-social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 100%;
    }

    .site-social-link {
        width: 34px;
        height: 34px;
    }

    .site-footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 10px;
        max-width: 100%;
    }

    .site-footer-link {
        white-space: normal;
        line-height: 1.4;
    }

    .site-footer-copy {
        white-space: normal;
        text-align: center;
        max-width: 22rem;
        padding: 0 4px;
    }
}



.site-search-field {
    position: relative;
    width: 100%;
}

.site-search-suggest {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 200;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
    max-height: 320px;
    overflow-y: auto;
    padding: 6px;
}

.site-search-suggest-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color .12s ease;
}

.site-search-suggest-item:hover,
.site-search-suggest-item.is-active {
    background: #eff6ff;
}

.site-search-suggest-label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.site-search-suggest-meta {
    font-size: 11px;
    color: #64748b;
}

.site-search-suggest-empty {
    padding: 10px 12px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

.header-search-container {
    position: relative;
}

.header-search-container .site-search-suggest {
    top: calc(100% + 8px);
}

.hero-search-form .site-search-field {
    flex: 1;
    min-width: 0;
}
