@charset "utf-8";

.recommendSectionA {
  padding: 32px;
  border-top: 1px solid var(--detail-border, #e4e4e4);
}

.recommendSectionA .lower-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recommendSectionA .lower-title {
  margin: 0;
  color: var(--detail-strong, #111111);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
}

.recommendSectionA .reco-slide {
  display: flex;
  flex: 0 0 116px;
  justify-content: center;
  width: 116px;
  height: auto;
  margin-top: 5px;
  margin-bottom: 5px;
}

.recommendSectionA .reco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 116px;
  height: 208px;
  margin: 0 auto;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.25s;
}

.recommendSectionA .reco-card:hover {
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.recommendSectionA .reco-card-img {
  position: relative;
  flex: 0 0 116px;
  width: 116px;
  height: 116px;
  overflow: hidden;
  background: #ebebeb;
}

.recommendSectionA .reco-card-img .recoImg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 0.5s;
}

.recommendSectionA .reco-card:hover .reco-card-img .recoImg {
  transform: scale(1.05);
}

.recommendSectionA .reco-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 3px;
  min-height: 0;
  padding: 7px 8px 9px;
}

.recommendSectionA .reco-card-name {
  display: -webkit-box;
  height: 34px;
  margin: 0;
  overflow: hidden;
  color: var(--detail-strong, #111111);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recommendSectionA .reco-card-shop {
  display: none;
}

.recommendSectionA .reco-card-price-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: flex-end;
  min-height: 34px;
  margin-top: auto;
}

.recommendSectionA .reco-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 4px;
  margin: 0;
  color: var(--detail-strong, #111111);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.recommendSectionA .reco-card-price-label {
  flex-basis: 100%;
  color: var(--detail-muted, #666666);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.recommendSectionA .reco-card-price-empty {
  min-height: 18px;
}

.recommendSectionA .reco-card-tax {
  color: var(--detail-muted, #666666);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.recommendSectionA .reco-card-price .reduced-mark {
  color: var(--detail-muted, #666666);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  vertical-align: super;
}

@media (max-width: 767px) {
  .recommendSectionA {
    padding: 22px 20px;
  }
}
