html, body {
    height: 100%;   /* Full viewport height */
    margin: 0;      /* Remove default margin */
}

/* Main container with flexbox */
body {
    display: flex;
    flex-direction: column;   /* Stack header, content, and footer vertically */
    min-height: 100vh;        /* Ensure the body takes at least full viewport height */
}
/* Footer container styles */
.site-footer {
    background-color: red; /* Dark background for the footer */
    color: #fff; /* Light text color */
    padding: 5px 0;
    margin-top: 60px;
    position: -webkit-sticky; /* Ensures the footer stays at the bottom */
    bottom: 0;
    width: 100%;
    text-align: center; /* Center-align footer content */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* Center content */
    padding: 0 15px; /* Responsive padding */
}

.footer-info {
    margin-bottom: 10px; /* Space between copyright and social icons */
}

.footer-copy {
    font-size: 1rem;
    color: black;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    background-color: white; /* Default background for social icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    border: none;
    transform: scale(1.1); /* Slight scale effect for interaction */
}

.social-icon.facebook {
    background-color: #3b5998;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); /* Instagram gradient */
    color: white;
}

.social-icon.tiktok {
    background-color: black;
    color: white;
}

/* Hide the cart icon by default on large screens */
.cart-toggle {
    display: none; /* Hidden by default */
}

/* On small screens (collapsed navbar), show the cart icon close to the toggle button */
@media (max-width: 991px) {
    .cart-toggle {
        display: block; /* Show the cart icon when navbar is collapsed */
        position: relative;
        right: 10px; /* Align the cart icon near the toggle button */
        top: 50%;
        margin-top: 25px;
        transform: translateY(-50%); /* Vertically center the cart icon */
    }
}

/* Responsive styling */
@media (max-width: 768px) {
    .footer-content {
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .social-links {
        flex-direction: grid; /* Stack social icons on smaller screens */
        gap: 10px;
    }

    .footer-copy {
        font-size: 0.9rem; /* Smaller text size for smaller screens */
    }
}