body {
    overflow-x: hidden;
}

.footer-nav-area {
    display: none;
}

.main-footer {
    padding: 10px 0;
    font-size: 0.9rem;
    border-top: none;

}

.footer-nav {
    transition-duration: 500ms;
    height: 3.5rem;
    width: 90%;
}

.footer-nav ul {
    width: 100%;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
}

.footer-nav ul li {
    flex: 1;
    text-align: center;
}

.footer-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #000;
}

@media (max-width: 1200px) {
    .main-footer {
        padding-bottom: 4rem;
        justify-content: space-between;
    }

    .footer-nav-area {
        display: flex;
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        justify-content: center;
    }

    .new-footer {
        margin-bottom: 50px;

    }
}

.mobile-content {
    display: none;
}

.body-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .mobile-content {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
    }

}

/* new css here */

.mobile-table-card {
    display: none;
}

.desktop-table-card {
    display: block;
}

@media (max-width: 1200px) {

    .mobile-table-card {
        display: block;
    }

    .desktop-table-card {
        display: none;
    }

}

.product-thumbnail-side {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    width: 120px;
    max-width: 120px;
}

.product-description {
    margin-left: 5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 120px);
    flex: 0 0 calc(100% - 120px);
    width: calc(100% - 120px);
    max-width: calc(100% - 120px);
}

.product-thumbnail-side .wishlist-btn {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    color: #ea4c62;
    z-index: 11;
    font-size: 1rem;
    background-color: #f1f1f2;
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0.25rem 0.313rem 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 0.25rem 0.313rem 0 rgba(0, 0, 0, 0.04);
}

.product-title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #6c7e8e;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
}

.product-rating i {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.25rem;
    flex: 0 0 1.25rem;
    max-width: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    border-radius: 50%;
    color: #ffffff;
    background-color: #ffaf00;
    font-size: 0.625rem;
    text-align: center;
    margin-right: 0.25rem;
}
