footer {
    background-color: #45046a;
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}
.footer-signup {
    background-color: #5c2a9d;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-signup h5 {
    margin-bottom: 10px;
    font-size: 1.25rem; /* Adjust font size for better readability */
}

.footer-signup p {
    font-size: 0.9rem; /* Smaller font size for mobile responsiveness */
}

.footer-signup input {
    padding: 10px;
    margin-top: 10px; /* Add spacing for stacked layout on mobile */
    width: 100%; /* Full width for smaller screens */
    max-width: auto; /* Limit width on larger screens */
    border-radius: 5px;
    border: none;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.footer-signup button {
    background-color: orange;
    color: white;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px; /* Add spacing for stacked layout on mobile */
    white-space: nowrap; /* Prevent button text from wrapping */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-signup {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-signup .subscribe {
        display: flex;
        flex-direction: column; /* Stack input and button vertically on small screens */
        align-items: stretch; /* Stretch items to full width */
        width: 100%;
    }
    .footer-signup input {
        margin-left: 0; /* Remove left margin for input */
        width: 100%; /* Full width for smaller screens */

    }
    .footer-signup button {
        width: 100%; /* Full width for smaller screens */
margin-right: 13px;
    }
}
.separator {
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    clip-path: polygon(0% 100%, 10% 80%, 20% 100%, 30% 80%, 40% 100%, 50% 80%, 60% 100%, 70% 80%, 80% 100%, 90% 80%, 100% 100%);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 20px;
}
.footer-links div {
    margin: 10px;
    min-width: 200px;
    text-align: center;
}
.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.footer-links a.active {
    color: black;
}

.popular-stores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    text-align: center;
}
.popular-stores ul {
    list-style: none;
    padding: 0;
    font-size:15px;
}

@media (max-width: 768px) {
    .popular-stores {
        grid-template-columns: 1fr;
    }
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.footer-logo img {
    width: 250px;
}

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

}

