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

footer {
    background-color: white;
    color: black;
    margin-top: 80px;
    text-align: left;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    font-weight: 700;
}

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

.footer-newsletter {
    background: white;
    padding: 60px 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: black;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 16px;
    margin: 0;
    color: #546e7a;
    line-height: 1.5;
}

/* Button wrapper on the right */
.newsletter-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.join-member-btn {
    text-decoration: none;
    white-space: nowrap;
}


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

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: black;
}

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

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

.footer-column ul li a {
    color: #546e7a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-column ul li a:hover {
    color: #0067b1;
}

/* Company Info */
.footer-logo {
    height: 40px;
    margin-bottom: 25px;
}

.footer-description {
    color: #546e7a;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #546e7a;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact i {
    color: #0067b1;
    margin-top: 4px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #546e7a;
    transition: all 0.3s;
    font-size: 18px;
}

.footer-social a:hover {
    background-color: #0067b1;
    color: white;
    transform: translateY(-3px);
}

/* Shop Platforms */
.shop-platforms-title {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-shop-platforms a {
    display: block;
    transition: transform 0.3s;
}

.footer-shop-platforms a:hover {
    transform: translateY(-3px);
}

.footer-shop-platforms img {
    height: 32px;
    width: auto;
}

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

.footer-bottom {
    background-color: #f8f9fa;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.footer-legal-links a {
    color: #546e7a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #0067b1;
}

.footer-legal-links .separator {
    color: #e0e0e0;
}

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

.footer-payments p {
    color: #999;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: #546e7a;
}

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

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

    .newsletter-button-wrapper {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: span 3;
        text-align: center;
        align-items: center;
    }

    .footer-description {
        margin: 0 auto 30px;
    }

    .footer-contact p {
        justify-content: center;
    }
}

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

    .footer-about {
        grid-column: span 2;
    }

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

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

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 40px 20px;
    }

    .newsletter-text h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-column {
        text-align: center;
    }

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