:root {
  --bg-top: #fff7f8;
  --bg-bottom: #fff0f3;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: #f0d9df;
  --text: #6f4d57;
  --heading: #8f5566;
  --accent: #e69aae;
  --accent-strong: #c66a85;
  --accent-soft: #fde7ec;
  --mint: #f9dce5;
  --mint-strong: #b86a80;
  --shadow: 0 18px 40px rgba(182, 113, 136, 0.14);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 211, 221, 0.55), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 227, 233, 0.6), transparent 30%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  padding: 20px 0 14px;
  text-align: center;
  background-color: #fffdfd;
  border-bottom: 1px solid rgba(240, 217, 223, 0.55);
}

.logo {
  display: inline-block;
}

.logo img {
  width: 120px;
}

.main-visual {
  position: relative;
  overflow: hidden;
}

.main-visual::before,
.main-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.main-visual::before {
  width: 340px;
  height: 340px;
  top: -90px;
  left: -90px;
  background: rgba(245, 200, 212, 0.32);
}

.main-visual::after {
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: -60px;
  background: rgba(255, 221, 230, 0.38);
}

.main-visual picture,
.main-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.intro {
  padding: 52px 0 24px;
}

.intro-text {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 28px;
  padding: 0 10px;
  text-align: center;
  font-size: 18px;
  color: #7b5e66;
}

.products {
  padding: 28px 0 80px;
}

.section-heading {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.section-label,
.product-category {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label {
  font-size: 60px;
  color: var(--mint-strong);
}

.section-heading h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--heading);
}

.product-grid {
  display: grid;
  gap: 26px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  padding: 30px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.25s ease;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  box-shadow: 0 24px 48px rgba(182, 113, 136, 0.18);
}

.product-card-featured {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(252, 236, 241, 0.96));
}

.product-gallery {
  position: relative;
}

.product-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 8px 18px rgba(198, 106, 133, 0.28);
}

.product-main-image {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(240, 217, 223, 0.92);
  aspect-ratio: 1 / 1;
}

.product-card-featured .product-main-image {
  aspect-ratio: 1.08 / 1;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.thumb-button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.thumb-button img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-button:hover,
.thumb-button:focus-visible,
.thumb-button.is-active {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(198, 106, 133, 0.16);
  outline: none;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category {
  font-size: 13px;
  color: #b77789;
}

.product-name {
  margin-top: 10px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.4;
  color: var(--heading);
}

.product-copy {
  margin-top: 16px;
  font-size: 15px;
  color: #755b63;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: fit-content;
  margin-top: 24px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.product-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(198, 106, 133, 0.22);
}

.other {
  padding: 0 0 32px;
  text-align: center;
}

.other p {
  color: var(--heading);
}

.other a {
  display: block;
  margin: 20px auto 0;
  width: 15%;
  padding: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.other a:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(198, 106, 133, 0.22);
}

.footer {
  padding: 28px 0 38px;
  text-align: center;
  color: #9b7a84;
}

@media (max-width: 900px) {
  .section-label {
    font-size: 28px;
  }

  .product-card,
  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-featured {
    padding: 24px;
  }

  .other a {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header {
    padding: 16px 0 8px;
  }

  .logo img {
    width: 96px;
  }

  .intro-text {
    font-size: 15px;
  }

  .product-card,
  .product-card-featured {
    gap: 22px;
    padding: 18px;
    border-radius: 22px;
  }

  .product-main-image,
  .product-card-featured .product-main-image {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .product-thumbnails {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .product-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .product-name {
    font-size: 24px;
  }

  .product-button {
    width: 100%;
    padding: 0 20px;
  }
}.gift-wrap {
  padding: 0 0 72px;
}

.gift-wrap-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 231, 236, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.gift-wrap-label {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b77789;
  text-align: center;
}

.gift-wrap-title {
  margin-top: 10px;
  margin-bottom: 28px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
  color: var(--heading);
  text-align: center;
}

.gift-wrap-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 24px;
  background: #fffafc;
  border: 1px solid rgba(240, 217, 223, 0.92);
}

.gift-wrap-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.gift-wrap-text {
  display: grid;
  gap: 14px;
}

.gift-wrap-text p {
  font-size: 15px;
  color: #755b63;
}

.gift-wrap-note {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 767px) {
  .gift-wrap {
    padding: 0 0 56px;
  }

  .gift-wrap-inner {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .gift-wrap-title {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .gift-wrap-image {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 18px;
  }

  .gift-wrap-image img {
    max-height: 360px;
  }

  .gift-wrap-text p {
    font-size: 14px;
  }

  .gift-wrap-note {
    padding: 10px 12px;
    font-size: 13px;
  }
}