/* Footer Icons Fix CSS - Unicode Icons Version */

/* Social Links Styling with Unicode Icons */
.store-footer .social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50%;
    margin: 0.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-footer .social-links .social-link .social-icon {
    font-size: 1.2rem !important;
    display: inline-block !important;
    line-height: 1;
}

.store-footer .social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Specific social platform colors on hover */
.store-footer .social-links .social-link.facebook:hover {
    background-color: #1877f2 !important;
}

.store-footer .social-links .social-link.twitter:hover {
    background-color: #1da1f2 !important;
}

.store-footer .social-links .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}

.store-footer .social-links .social-link.linkedin:hover {
    background-color: #0077b5 !important;
}

.store-footer .social-links .social-link.whatsapp:hover {
    background-color: #25d366 !important;
}

.store-footer .social-links .social-link.telegram:hover {
    background-color: #0088cc !important;
}

/* Footer Copyright Styling */
.store-footer .footer-copyright {
    padding: 1rem 0;
    text-align: center !important;
    width: 100%;
}

.store-footer .footer-copyright p {
    margin: 0;
    line-height: 1.6;
    text-align: center !important;
}

.store-footer .footer-copyright a {
    transition: all 0.3s ease;
}

.store-footer .footer-copyright a:hover {
    text-shadow: 0 0 8px rgba(0, 122, 255, 0.5);
    transform: scale(1.05);
}

/* Force center alignment for footer copyright */
.store-footer .row.justify-content-center {
    justify-content: center !important;
    text-align: center !important;
}

.store-footer .col-12.text-center {
    text-align: center !important;
}

/* Override any RTL text alignment for copyright */
[dir="rtl"] .store-footer .footer-copyright,
[dir="rtl"] .store-footer .footer-copyright p,
[dir="rtl"] .store-footer .col-12.text-center {
    text-align: center !important;
}

/* RTL Support for Footer */
[dir="rtl"] .store-footer .social-links .social-link {
    margin-left: 0.25rem;
    margin-right: 0;
}

[dir="rtl"] .store-footer .payment-methods {
    flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-footer .footer-copyright {
        padding: 0.5rem 0;
    }

    .store-footer .social-links {
        justify-content: center;
    }
}
