.chabok-related-products {
    width: 100%;
    margin: 30px 0;
}

.chabok-related-products-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(220px, 1fr)
    );
    gap: 18px;
}

.chabok-related-product {
    display: flex;
    flex-direction: column;
    overflow: hidden;

    background: #fff;

    border: 1px solid #eee;
    border-radius: 14px;

    text-decoration: none !important;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.chabok-related-product:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .11);
}

.chabok-related-product-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #f7f7f7;
}

.chabok-related-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.chabok-related-product:hover
.chabok-related-product-image img {
    transform: scale(1.05);
}

.chabok-related-product-content {
    padding: 15px;
}

.chabok-related-product-title {
    color: #222;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.7;

    margin-bottom: 8px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.chabok-related-product-price {
    font-size: 14px;
    font-weight: 700;

    color: #d71920;

    margin-bottom: 12px;
}

.chabok-related-product-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 8px 12px;

    border-radius: 8px;

    background: #f5f5f5;

    color: #333;

    font-size: 12px;
    font-weight: 600;

    transition:
        background .2s ease,
        color .2s ease;
}

.chabok-related-product:hover
.chabok-related-product-button {
    background: #d71920;
    color: #fff;
}

.chabok-related-products-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}