
/* Raşidi footer - Dost Sayfalar + Sosyal Medya */
#rashidi-footer-links {
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 auto;
    padding: 22px 10px 18px;
    background: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #000;
}

#rashidi-footer-links .rashidi-footer-box {
    min-width: 0;
    background: linear-gradient(to bottom, #252525 0%, #101010 52%, #050505 100%);
    border: 1px solid #333;
    border-radius: 7px;
    padding: 0 14px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.45);
}

#rashidi-footer-links .rashidi-footer-title {
    margin: 0 -14px 10px;
    padding: 9px 12px;
    text-align: center;
    background: var(--rashidi-accent, #386e21);
    color: var(--rashidi-accent-text, #fff) !important;
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255,255,255,.18);
}

#rashidi-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#rashidi-footer-links .rashidi-friend-link {
    display: block;
    margin: 5px 0;
    padding: 7px 9px;
    color: #eee !important;
    background: linear-gradient(to bottom, #303030 0%, #151515 100%);
    border: 1px solid #3b3b3b;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
}

#rashidi-footer-links .rashidi-friend-link:hover {
    color: #fff !important;
    background: var(--rashidi-accent, #386e21);
    border-color: var(--rashidi-accent, #386e21);
    transform: translateX(2px);
}

#rashidi-footer-links .rashidi-social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

#rashidi-footer-links .rashidi-social {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: #fff !important;
    background: linear-gradient(to bottom, #3b3b3b 0%, #111 100%);
    border: 1px solid #555;
    border-radius: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 1px 2px #000;
    transition: .2s ease;
}

#rashidi-footer-links .rashidi-social.small-text {
    font-size: 16px;
}

#rashidi-footer-links .rashidi-social:hover {
    color: #fff !important;
    background: var(--rashidi-accent, #386e21);
    border-color: var(--rashidi-accent, #386e21);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,.45);
}

#rashidi-footer-links .rashidi-social-label {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    color: #aaa;
    font-size: 11px;
}

@media (max-width: 800px) {
    #rashidi-footer-links {
        grid-template-columns: 1fr 1fr;
    }
    #rashidi-footer-links .rashidi-footer-box:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    #rashidi-footer-links {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 7px;
    }
    #rashidi-footer-links .rashidi-footer-box:last-child {
        grid-column: auto;
    }
    #rashidi-footer-links .rashidi-social {
        width: 44px;
        height: 44px;
    }
}
		
		
		