/* ===============================
   Shop Page
================================== */
/* ---- Title Font ---- */
h1.break-longword {
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ===============================
   Coupon Slider
================================== */
.coupon-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 18px;
}
.coupon-slider__nav {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.coupon-slider__nav:hover {
  background: #f5f5f5;
}
.coupon-slider__viewport {
  flex: 1;
}

.coupon-card__text {
  font-size: 14px;
  line-height: 1.6;
}

/* ===============================
   Gift Modal
================================== */
.gift-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
}
.gift-modal__panel {
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.25s ease;
}
.gift-modal__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.gift-modal__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.gift-modal__text {
  font-size: 14px;
}
.gift-modal__sub {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.gift-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.gift-btn:hover {
  background: #f5f5f5;
}

/* ===============================
   Mini Gift Banner
================================== */
.gift-mini {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 9998;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: #000;
  animation: fadeIn 0.25s ease;
}
.gift-mini__img {
  display: block;
  width: 160px;
  height: auto;
}
.gift-mini__close {
  position: absolute;
  top: 4px;
  right: 4px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 26px;
}

/* ===============================
   Animations
================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===============================
   Responsive
================================== */
@media (max-width: 480px) {
  .gift-mini__img {
    width: 130px;
  }
  .coupon-slider {
    gap: 6px;
  }
  .coupon-slider__nav {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
