.main-content {
    width: 92.5%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding-top: 34px;
}

.top-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.top-content>div {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

.more-products {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 21px;
}

.more-products__title {
    width: 223px;
    font-weight: 500;
    line-height: 126.5%;
}

.more-products__link {
    width: 115px;
    font-weight: 500;
    line-height: normal;
    color: var(--color-gray-4);
    border-bottom: 2px solid var(--color-gray-4);
}


.product__image {
    width: 280px;
    height: 177px;
    flex-shrink: 0;
    background-color: #F9F1E7;
    border-radius: 10px;
    padding: 20px;
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.product__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
}

.product__info__name {
    font-weight: 500;
    line-height: 126.5%;
}

.product__info__price {
    font-weight: 500;
    line-height: normal;
}

.product__info__rate {
    display: flex;
    align-items: center;
}

.product__info__rate__star-num {
    font-weight: 500;
    line-height: normal;
    margin-right: 4px;
}

.product__info__rate__star__pattern .star-list {
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center;
}

.product__info__rate__star__pattern .star-item {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.product__info__rate__review-num {
    height: 30px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-gray-2);
    padding-left: 9px;
    margin-left: 5px;
    border-left: 1px solid var(--color-gray-2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.add-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 14px;

}

.add__title {
    font-weight: 600;
    line-height: 126.5%;
    width: 242px;
    margin-top: 49px;
}

.add__button button {
    width: 242px;
    height: 39px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--primary);
    border: none;
}

.add__button__content {
    display: flex;
    justify-content: space-around;
    font-weight: 600;
    line-height: 126.5%;
    color: var(--white);
}

.bottom-content {
    width: 100%;
    overflow-x: auto;
}

.bottom-content__table {
    padding-top: 42px;
    width: 100%;
}

.bottom-content__table tr:first-child>td {
    border-top: 1px solid var(--color-gray-5);
}

.bottom-content__table tr>td {
    border-right: 1px solid var(--color-gray-5);
}

.bottom-content__table__title-row td:last-child {
    border: none;
}

.bottom-content__table {
    table-layout: fixed;
}

.bottom-content__table>colgroup col {
    width: 350px;
}

.bottom-content__table__title-row {
    font-weight: 500;
    line-height: 126.5%;
}

.bottom-content__table__title-row>td>p {
    margin: 42px 10% 28px 10%;
}

.bottom-content__table__content-row {
    font-weight: 400;
    line-height: 126.5%;
}

.bottom-content__table__content-row>td>p {
    margin: auto 10% 34px 10%;
}

.bottom-content__table__end-row>td>p {
    padding: 20px 0px;
}

.bottom-content__table__button-row {
    color: var(--white);
    font-weight: 400;
    line-height: normal;
}

.bottom-content__table__button-row>td>button {
    all: unset;
    font: inherit;
    color: inherit;
    background-color: var(--primary);
    border: none;
    padding: 17px 48px;
    margin-left: 10%;
}

@media (max-width: 768px) {
    .first-col {
        width: 100% !important;
    }

    .product-col {
        width: 100% !important;
    }

    .add-col {
        text-align: center;
        justify-content: center;
        margin: auto;
    }

    .bottom-content {
        overflow-x: auto;
    }

    .bottom-content__table>colgroup col {
        width: 210px;
    }

    .bottom-content__table td p {
        overflow-wrap: break-word;
        white-space: normal;
    }

    .bottom-content__table__button-row>td>button {
        padding: 20px;
    }

}