
/*------------ Footer Section Styling Start ------------*/

footer {
    background-color: #007bff;
    color: white;
    padding: 5px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h3,
p {
    margin: 10px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h3 {
    margin-top: 15px;
}

.footer-social ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.footer-social ul li a i {
    color: white;
    margin: 15px;
}

.footer-bottom {
    margin-top: 20px;
}

@media (max-width: 768px) {

    .cart-items {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item img {
        margin-bottom: 10px;
    }

    .summary-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout {
        width: 100%;
    }
}

@media (max-width: 630px) {
    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}

/*------------ Footer Section Styling End ------------*/
