.store-footer {
    background: #121417;
    padding-top: 50px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* تقسيم الأعمدة */
.store-footer .container {
    max-width: 1300px;
}

/* العناوين */
.store-footer h3,
.store-footer .footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

/* خط بسيط تحت العنوان */
.store-footer h3::after,
.store-footer .footer-title::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #2b8cff;
    display: block;
    margin-top: 8px;
    border-radius: 20px;
}

/* الروابط */
.store-footer a {
    color: #bfc7d1;
    transition: all 0.25s ease;
    font-size: 15px;
    line-height: 2.2;
    text-decoration: none;
}

/* تأثير hover */
.store-footer a:hover {
    color: #ffffff;
    padding-right: 6px;
}

/* وصف المتجر */
.store-footer p {
    color: #9ea7b3;
    line-height: 2;
    font-size: 14px;
}

/* أيقونات التواصل */
.store-footer .social-link,
.store-footer .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: all 0.25s ease;
}

/* حركة الأيقونات */
.store-footer .social-link:hover,
.store-footer .social-icons a:hover {
    background: #2b8cff;
    transform: translateY(-3px);
}

/* وسائل الدفع */
.store-footer .payment-icons img,
.store-footer .payments img {
    background: #ffffff;
    padding: 6px;
    border-radius: 10px;
    margin: 5px;
    height: 34px;
    object-fit: contain;
    transition: all 0.25s ease;
}

/* Hover وسائل الدفع */
.store-footer .payment-icons img:hover,
.store-footer .payments img:hover {
    transform: scale(1.05);
}

/* معلومات المتجر */
.store-footer .commercial-info {
    background: rgba(255,255,255,0.04);
    padding: 14px;
    border-radius: 14px;
    margin-top: 18px;
}

/* الخط السفلي */
.store-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 35px;
    padding-top: 18px;
    color: #8e98a5;
    font-size: 13px;
}

/* زر العودة للأعلى */
.store-footer .to-top {
    width: 45px;
    height: 45px;
    background: #1c2128;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.store-footer .to-top:hover {
    background: #2b8cff;
    transform: translateY(-4px);
}

/* تحسين الموبايل */
@media (max-width: 768px) {

    .store-footer {
        padding-top: 35px;
    }

    .store-footer .footer-block {
        margin-bottom: 28px;
    }

    .store-footer h3,
    .store-footer .footer-title {
        font-size: 16px;
    }

    .store-footer a {
        font-size: 14px;
        line-height: 2;
    }

    .store-footer .social-link,
    .store-footer .social-icons a {
        width: 38px;
        height: 38px;
    }

    .store-footer .payment-icons img,
    .store-footer .payments img {
        height: 30px;
    }
}