/* Footer Styles - Kurdish */

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

footer > div {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

footer h3 {
    font-family: 'Vazirmatn', 'Tajawal', 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer h3 img {
    width: 32px;
    height: 32px;
}

footer .company-desc {
    color: #C0C0C0;
    line-height: 1.8;
}

footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

footer .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .social-link:hover {
    background: var(--cta);
    transform: translateY(-3px);
}

footer h4 {
    font-family: 'Vazirmatn', 'Tajawal', 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--cta);
}

footer .quick-links {
    list-style: none;
}

footer .quick-links li {
    margin-bottom: 0.5rem;
}

footer .quick-links a {
    color: #C0C0C0;
    transition: color 0.2s;
}

footer .quick-links a:hover {
    color: var(--white);
}

footer .contact-info p {
    margin-bottom: 0.5rem;
    color: #C0C0C0;
}

footer .contact-info i {
    color: var(--cta);
    margin-left: 0.5rem;
}

footer .ceo-section {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 1rem 0;
}

footer .ceo-title {
    font-family: 'Vazirmatn', 'Tajawal', 'Poppins', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--cta);
    font-size: 1rem;
}

footer .ceo-name {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

footer .ceo-position {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

footer .working-hours {
    list-style: none;
}

footer .working-hours li {
    margin-bottom: 0.35rem;
    color: #C0C0C0;
}

footer .closed-status {
    color: #EF4444;
}

footer .copyright {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #C0C0C0;
    font-size: 0.875rem;
}

/* Product Modal */

#productModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#productModal > div {
    background: #1a1a1a;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

#productModal .close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

#productModal .modal-content {
    padding: 2rem;
}

.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.modal-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.modal-product-details {
    color: #ffffff;
}

.modal-product-details h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.modal-product-details p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-price {
    font-size: 1.5rem !important;
    color: #FFC107 !important;
    font-weight: bold;
    margin-bottom: 1rem !important;
}

.modal-order-btn {
    background: transparent;
    border: 1px solid #D4A574;
    color: #D4A574;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.modal-order-btn:hover {
    background: #D4A574;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.modal-order-btn:active {
    background: #D4A574;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .modal-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .modal-product-image img {
        height: 350px;
    }
    .modal-product-details h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .modal-product-details p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    .modal-price {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    .modal-order-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Animations */

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    transform: translateY(30px);
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}
