/* ===================================
   SIPZZ - FOOTER.CSS
   Footer styles including newsletter and links
   =================================== */

footer {
    background-color: #0067b1;
    color: white;
    margin-top: 80px;
    text-align: left;
    padding: 0;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.footer-newsletter {
    background: linear-gradient(135deg, #0067b1 0%, #004d8a 100%);
    padding: 50px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.newsletter-text p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 14px 30px;
    background-color: #233658;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button:hover {
    background-color: #1a2740;
}

/* ===================================
   MAIN FOOTER
   =================================== */

.footer-main {
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
    display: inline-block;
}

.footer-column a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ===================================
   ABOUT COLUMN
   =================================== */

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.footer-contact p {
    font-size: 14px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 18px;
    opacity: 0.8;
}

.footer-contact a {
    font-size: 14px;
}

/* ===================================
   SOCIAL MEDIA
   =================================== */

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

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

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 20px;
}

/* ===================================
   SHOP PLATFORMS
   =================================== */

.shop-platforms-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.footer-shop-platforms {
    display: flex;
    gap: 15px;
}

.footer-shop-platforms a {
    display: block;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-shop-platforms a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-shop-platforms img {
    height: 35px;
    width: 35px;
    display: block;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal p {
    margin: 0;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-legal-links .separator {
    opacity: 0.5;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments p {
    margin: 0;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 28px;
    opacity: 0.9;
}

/* ===================================
   RESPONSIVE
   =================================== */

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

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-shop-platforms {
        justify-content: center;
    }

    /* Center all footer columns */
    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        min-width: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

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

    .footer-social,
    .footer-shop-platforms {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-contact p {
        justify-content: flex-start;
    }
}