.category_title {
    font-size: 32px;
    line-height: 48px;
    margin: 20px 0;
}
.category_box {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.category_item {
    width: calc((100% - 100px) / 4);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
    text-align: center;
    box-sizing: border-box;
}

.category_item img {
    height: auto;
    border-radius: 4px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #f0f0f0;
    background: #eee;
    width: 150px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.category_item img:hover {
    transform: translateY(-10px);
}
.category_item a:nth-last-of-type(1) {
    min-height: 44px;
    display: inline-block;
}
.promotion_box {
    margin: 30px 0;
    width: 100%;
    display: flex;
    align-items: stretch;
}
.promotion_text {
    flex: 1;
    padding: 20px;
    display: inline-flex;
    flex-direction: column;
    font-family: math;
    align-items: flex-start;
    box-sizing: border-box;
    background: #f9f9f9;
}
.promotino_title {
    font-size: 36px;
    font-weight: bold;
    color: rgb(38, 103, 165);
    line-height: 1;
    margin-top: 10px;
}
.promotino_desc {
    font-size: 16px;
    color: #303030;
    margin: 10px 0 20px;
    line-height: 1.67;
}
.promotion_text a {
    padding: 14px 30px;
    border-radius: 200px;
    font-size: 13px;
    font-family: "math";
    color: rgb(212, 45, 45);
    border: 1px solid rgb(212, 45, 45);
}
.promotion_img {
    width: 1000px;
    height: 250px;
}
.promotion_img img {
    width: 100%;
}
.product_box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.product_item {
    position: relative;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.product_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    margin: 8px 0;
    padding: 0 4px;
}
.product_item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}
.product_price {
    font-size: 14px;
    color: red;
    padding: 0 4px 10px;
}
.product_price del {
    color: #777;
    font-size: 12px;
}
.product_discont {
    padding-left: 12px;
    padding-top: 1px;
    width: 40px;
    height: 40px;
    background: url(../images/discount_label.png) no-repeat;
    background-size: 100%;
    color: #fff;
    position: absolute;
    left: 12px;
    top: 18px;
    z-index: 12;
    box-sizing: border-box;
}
