@charset "utf-8";

/* ==============================
Product Page
================================ */
.product_intro_flx {
    margin-top: 22px;
    margin-bottom: 0;
}

.product_intro_flx.flx {
    margin-bottom: 0;
}

.product_map_figure {
    margin: 18px 0 0;
    overflow: hidden;
    /*border: solid 1px #dfdfdf; */
  /* background: #fbfbfb;*/
}

.product_map_figure img {
    width: 100%;
    height: auto;
    display: block;
}

.product_list_title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 22px;
}

/* ==============================
Product Cards
================================ */

.product_list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product_card {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.product_link {
    display: block;
    height: 100%;
}

.product_thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.product_card:hover .product_thumb img {
    transform: scale(1.06);
}

.product_meta {
    padding: 16px 16px 18px;
}

.product_name {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #222;
}

.product_sub {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.product_name::after {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .product_list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .product_page .inner {
        margin-bottom: 34px;
    }

    .product_list_title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .product_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}