/*ロゴ*/
.block-heasder__logo a {
  display: inline-block;
}

.block-heasder__logo img {
  display: block;
  max-height: 26px;
  width: auto;
  max-width: 100%;
  margin-right: 20px;
}

/*商品一覧*/
.ec-productList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ec-productList__item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.ec-productCard {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
}

.ec-productCard__image {
    width: 180px;
    flex: 0 0 180px;
}

.ec-productCard__image img {
    display: block;
    width: 100%;
    height: auto;
}

.ec-productCard__body {
    flex: 1;
    min-width: 0;
}

.ec-productCard__name {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

.ec-productCard__description {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.ec-productCard__price {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.ec-productCard__stock {
    margin-top: 10px;
    color: #c00;
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .ec-productCard {
        flex-direction: column;
        gap: 12px;
    }

    .ec-productCard__image {
        width: 100%;
        max-width: 220px;
        flex: none;
    }
}

/*商品詳細*/
.ec-productRole__description a {
    color: #007bff;
    text-decoration: underline;
}

.ec-productRole__description a:hover {
    color: #0056b3;
}