/* グリッドを2行に拡張・高さ固定を解除 */
.pane-goods-right-side .block-add-cart {
  grid-template-rows: auto auto;
  height: auto !important;  /* user.css の height:60px を上書き */
  align-items: center;
}

/* 数量：1・2列目をまたいで全幅に（元のレイアウトを維持） */
.pane-goods-right-side .block-goods-qty {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-top: 0;
}

/* カートボタン：2行目・1列目のみ（2列目は♥用） */
.pane-goods-right-side .block-add-cart--btn {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  box-sizing: border-box;
}

/* ♥：カートボタンの右横・上下中央 */
.pane-goods-right-side .block-goods-favorite {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pane-goods-right-side .block-goods-favorite a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 18px 0;
  margin-top: 0;
  box-sizing: border-box;
}

/* 問い合わせ：中央揃え */
.pane-goods-right-side .block-contact-about-goods {
  display: block;
  position: static;
  margin-top: 12px;
  text-align: center;
}