/* ═══════════════════════════════════════════════════════════════
   Footer V2 - تصميم حصري لامجاد الفلاح
═══════════════════════════════════════════════════════════════ */

.footer-v2 {
    background: linear-gradient(to bottom, #1a3c34, #0d1f1a);
    font-family: 'Cairo', sans-serif;
}

/* شريط المميزات العلوي */
.fv2-features-bar {
    background: #1f2937;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fv2-features-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fv2-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.fv2-feature-item i {
    font-size: 20px;
    color: #a7f3d0;
}

.fv2-feature-item span {
    font-size: 13px;
    font-weight: 500;
}

/* القسم الرئيسي */
.fv2-main {
    padding: 50px 0;
}

.fv2-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* عن المتجر */
.fv2-about {
    padding-left: 20px;
}

.fv2-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fv2-logo-area img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
}

.fv2-logo-area h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.fv2-about-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* أيقونات التواصل */
.fv2-social-links {
    display: flex;
    gap: 12px;
}

.fv2-social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.fv2-social-link:hover {
    transform: translateY(-4px);
}

.fv2-social-link.wa:hover { background: #25d366; }
.fv2-social-link.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743); }
.fv2-social-link.tw:hover { background: #1da1f2; }
.fv2-social-link.sc:hover { background: #fffc00; color: #000; }

/* عناوين الأقسام */
.fv2-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.fv2-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: #4ade80;
}

/* قائمة الروابط */
.fv2-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fv2-nav-list li {
    margin-bottom: 14px;
}

.fv2-nav-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.fv2-nav-list a:hover {
    color: #4ade80;
    padding-right: 8px;
}

/* معلومات التواصل */
.fv2-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fv2-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fv2-contact-row i {
    width: 35px;
    height: 35px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #4ade80;
    flex-shrink: 0;
}

.fv2-contact-row .info {
    display: flex;
    flex-direction: column;
}

.fv2-contact-row .info small {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 2px;
}

.fv2-contact-row .info span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* شريط الدفع */
.fv2-payment-bar {
    background: rgba(0,0,0,0.25);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fv2-payment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.fv2-payment-title {
    color: #6b7280;
    font-size: 13px;
}

.fv2-payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fv2-payment-badge {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.fv2-payment-badge span {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.fv2-payment-badge:hover {
    background: rgba(74, 222, 128, 0.15);
}

.fv2-payment-badge:hover span {
    color: #4ade80;
}

/* حقوق النشر */
.fv2-copyright-bar {
    padding: 18px 0;
    background: rgba(0,0,0,0.3);
}

.fv2-copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fv2-copyright-text {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.fv2-copyright-text strong {
    color: #4ade80;
    font-weight: 600;
}

.fv2-legal-links {
    display: flex;
    gap: 20px;
}

.fv2-legal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.fv2-legal-links a:hover {
    color: #4ade80;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fv2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .fv2-about {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .fv2-features-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .fv2-main {
        padding: 40px 0;
    }
    
    .fv2-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .fv2-logo-area {
        justify-content: center;
    }
    
    .fv2-section-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .fv2-social-links {
        justify-content: center;
    }
    
    .fv2-contact-list {
        align-items: center;
    }
    
    .fv2-payment-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fv2-copyright-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fv2-social-link {
        width: 38px;
        height: 38px;
    }
    
    .fv2-payment-badge {
        padding: 6px 12px;
    }
}
