/* تنسيق الفوتر مع قسم الحقوق */
.footer-is-light .store-footer {
    background-color: #a38f85; /* نفس لون الفوتر */
    color: #fff;
    margin-top: 50px;
}

.footer-is-light .store-footer .store-footer__inner {
    /* إزالة لون الخلفية من هنا لأنه أصبح في العنصر الأب */
    background-color: transparent;
    
    /* الزوايا المنحنية */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    
    /* التنسيقات العامة */
    padding: 40px 20px 20px; /* تقليل padding السفلي */
    box-shadow: none; /* إزالة الظل */
    
    /* تنسيق النص */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* قسم الحقوق */
.footer-is-light .store-footer .copyright-section {
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1); /* تدرج لوني فاتح */
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* بقية التنسيقات كما هي */
.footer-is-light .store-footer .store-footer__inner h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-is-light .store-footer .store-footer__inner h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d4b2a7;
}

.footer-is-light .store-footer .store-footer__inner a {
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.footer-is-light .store-footer .store-footer__inner a:hover {
    color: #d4b2a7;
    text-decoration: none;
}

.footer-is-light .store-footer .store-footer__inner .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-is-light .store-footer .store-footer__inner .social-icons a:hover {
    background-color: #d4b2a7;
    transform: translateY(-3px);
}

/* تعديل تنسيق حقوق النشر ليكون جزءًا من الامتداد */
.footer-is-light .store-footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .footer-is-light .store-footer .store-footer__inner {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        padding: 30px 15px 15px;
    }
    
    .footer-is-light .store-footer .store-footer__inner h4 {
        font-size: 16px;
    }
    
    .footer-is-light .store-footer .copyright-section {
        padding: 15px;
    }
}