/**
 * Abhirang Store - Footer
 */

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
    background: #f9fafb;
    color: #6b7280;
    padding: 60px 0 30px;
    margin-top: 0;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #1a1a1a;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom strong {
    color: #6b7280;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #f9fafb;
    color: #1a1a1a;
    border-color: #d1d5db;
}

/* Footer Brand */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* Footer Newsletter */
.footer-newsletter {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.footer-newsletter h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d1d5db;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.newsletter-form button {
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: #374151;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content {
    text-align: center;
    flex: 1;
}

.footer-bottom-content p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom strong {
    color: #6b7280;
}

.footer-made-with {
    margin-top: 8px;
}

.footer-made-with .heart {
    color: #ec4899;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.payment-methods i {
    font-size: 24px;
    color: #9ca3af;
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}
