.product-list-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 60px 0 0 0;
}

.product-list-left {
  width: 208px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-list-right {
  width: 960px;
}

.btn-search-icon {
  position: absolute;
  right: 16px;
}

/* Filter Group */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-group__header {
  width: 120px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 9px 0;
  border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

.filter-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Filter Option */
.filter-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.filter-option__checkbox {
  width: 12px;
  height: 12px;
  border: 1px solid #000000;
  border-radius: 2px;
  background-color: #FFFFFF;
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s ease;
  position: relative;
  margin: 0;
}

.filter-option__checkbox:checked {
  background-color: #00A854;
  border-color: #00A854;
}

.filter-option__checkbox:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
}

.filter-option:hover .filter-option__checkbox {
  border-color: #00A854;
}

.filter-option__checkbox:focus {
  outline: 2px solid #00A854;
  outline-offset: 2px;
}

.filter-option__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  color: #000000;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 27px;
  row-gap: 64px;
}

/* Product Item */
.product-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 302px;
}

/* Product Card Small */
.product-card-small {
  position: relative;
  width: 100%;
  height: 302px;
  background-color: #E9E9E9;
  border-radius: 40px;
  overflow: hidden;
}

.product-card-small__image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}

.product-card-small__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-small__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background-color: #FFFFFF;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-small__arrow img {
  width: 16px;
  height: 16px;
}

.product-card-small__favorite {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-card-small__favorite:hover {
  transform: scale(1.1);
}

.product-card-small__favorite img {
  width: 16px;
  height: 16px;
}

/* Product Item Info */
.product-item__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  color: #000000;
  margin: 0;
}

.product-item__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.price-amount {
  font-size: 24px;
  font-weight: bold;
}
.pagination-product-list-wrapper {
  margin-top: 80px;
}

/* responsive */
@media (max-width: 1200px) {
  .pagination-product-list-wrapper {
    margin-top: 64px;
  }

  .product-list-wrapper {
    flex-direction: column;
    gap: 40px;
    padding-top: 28px;
  }
  .product-list-left {
    width: 100%;
  }
  .product-list-right {
    width: 100%;
  }
  .price-amount {
    font-size: 20px;
  }
  .product-item {
    width: calc(33.33% - 18px);
  }

  .product-item__title {
    font-size: 14px;
  }
  .product-item__price {
    font-size: 14px;
  }
  .price-symbol {
    font-size: 14px;
  }
  .price-tax {
    font-size: 14px;
  }


  .bottom-line {
    width: 100%;
    height: 1px;
    background-color: #CACACA;
  }
}

@media (max-width: 768px) {
  .product-item {
    width: calc(50% - 10px);
  }
  .product-card-small {
    height: 161px;
    border-radius: 20px;
  }
  .product-grid {
    gap: 20px;
    row-gap: 40px;
  }
  .product-card-small__favorite {
    width: 24px;
    height: 24px;
    bottom: 12px;
    right: 12px;
  }
  .product-card-small__favorite img {
    width: 12px;
    height: 12px;
  }
}
