/* Footer */
footer {
    background-color: var(--blue);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: rotate(5deg) scale(1.05);
}

.footer-logo p {
    margin-bottom: 1.5rem;
    color: #bbb;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #bbb;
}

.footer-contact i {
    color: var(--accent);
}

.footer-links h3, .footer-info h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.5rem;

}

.footer-links h3:after, .footer-info h3:after, .footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul, .footer-info ul {
    list-style: none;
}

.footer-links li, .footer-info li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-info a {
    color: #bbb;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover, .footer-info a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    color: #bbb;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    color: var(--accent);
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}