/* Footer Styles - Gaurav Gupta Fashion */

/* Main Footer */
.main-footer {
    background-color: var(--gg-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Footer Section Titles */
.footer-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gg-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gg-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--gg-primary);
    text-decoration: none;
}

/* Footer Social Links */
.footer-social {
    text-align: center;
}

.footer-social-links {
    display: inline-flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--gg-primary);
    color: var(--gg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background-color: var(--gg-secondary);
    color: var(--gg-white);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--gg-white);
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gg-gray);
    margin: 0;
    letter-spacing: 0.25px;
}

.footer-copyright a {
    color: var(--gg-primary);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Footer Logo/Brand */
.footer-brand {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gg-primary);
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand:hover {
    color: var(--gg-secondary);
    text-decoration: none;
}

/* Footer Description */
.footer-description {
    font-size: 0.9rem;
    color: var(--gg-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--gg-secondary);
}

.contact-info i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--gg-primary);
    font-size: 1rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.payment-method {
    display: inline-block;
    padding: 0.5rem;
    background-color: var(--gg-white);
    border: 1px solid var(--gg-light-gray);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--gg-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.payment-method img {
    height: 24px;
    width: auto;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .footer-social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}