.site-footer {
    margin-top: 60px;
    background-color: rgba(236, 230, 225, 0.5);
    color: #1a1a1a;
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 40px;
}

.site-footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    text-align: right;
}

.site-footer-row-links {
    align-items: start;
}

.site-footer-row-brand-social {
    margin-top: 48px;
    align-items: start;
}

.site-footer-row-brand-social .site-footer-col-social {
    grid-column: 1;
}

.site-footer-row-brand-social .site-footer-col-payments {
    grid-column: 2;
}

.site-footer-row-brand-social .site-footer-brand {
    grid-column: 3;
}

.site-footer-col {
    display: flex;
    flex-direction: column;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
}

.site-footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.site-footer-brand .footer-logo-icon {
    font-size: 1.5rem;
}

.site-footer-tagline {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.site-footer-col h3 {
    margin: 0 0 16px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.site-footer-links a:hover {
    color: #6F4E37;
}

.site-footer-contact li {
    margin: 0;
}

.site-footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.6;
    transition: color 0.2s;
}

.site-footer-contact-item:hover {
    color: #6F4E37;
}

.site-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.site-footer-contact-icon svg {
    width: 18px;
    height: 18px;
}

.site-footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(18, 17, 15, 0.2);
    border-radius: 50%;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.site-footer-social a svg {
    width: 18px;
    height: 18px;
}

.site-footer-social a:hover {
    background: rgba(18, 17, 15, 0.06);
    border-color: rgba(18, 17, 15, 0.35);
}

.site-footer-payments {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer-payments span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(18, 17, 15, 0.12);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.03em;
}

.site-footer-bottom {
    border-top: 1px solid rgba(18, 17, 15, 0.15);
}

.site-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer-bottom-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer-bottom-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.site-footer-bottom-links a:hover {
    color: #6F4E37;
}

.site-footer-copyright {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.85rem;
    text-align: left;
}

@media (max-width: 960px) {
    .site-footer-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer-row-brand-social .site-footer-brand,
    .site-footer-row-brand-social .site-footer-col-social,
    .site-footer-row-brand-social .site-footer-col-payments {
        grid-column: auto;
    }

    .site-footer-row-brand-social {
        margin-top: 40px;
    }
}

@media (max-width: 560px) {
    .site-footer-inner {
        padding: 36px 20px 28px;
    }

    .site-footer-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer-row-brand-social {
        margin-top: 32px;
    }

    .site-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .site-footer-copyright {
        text-align: right;
    }
}
