.sake-detail-page {
  padding-bottom: 70px;
}

.detail-hero {
  padding: 28px 0 10px;
  background: linear-gradient(to bottom, #fffaf4, #f7f3eb);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #6a625b;
}

.breadcrumb a {
  color: #2f5d73;
}

.detail-main-section {
  padding: 24px 0 0;
}

.detail-main-card,
.detail-section-card {
  background-color: #fff;
  border: 1px solid #e3d9cc;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.detail-section-card {
  margin-top: 24px;
}

.detail-main-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.detail-image-area {
  background-color: #f5efe6;
  border-radius: 18px;
  overflow: hidden;
}

.detail-image {
  width: 100%;
  height: auto;
  display: block;
}

.detail-no-image {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8f84;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.detail-category {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background-color: #f0f6f8;
  color: #2f5d73;
  font-size: 13px;
  font-weight: bold;
}

.detail-title {
  font-size: 36px;
  line-height: 1.4;
  color: #2b2622;
  margin-bottom: 8px;
}

.detail-kana {
  font-size: 14px;
  color: #7a7168;
  margin-bottom: 18px;
}

.detail-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.level-chip {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background-color: #f0f6f8;
  color: #2f5d73;
  font-size: 13px;
  font-weight: bold;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee3d6;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.detail-table th {
  width: 160px;
  color: #2f5d73;
  font-weight: bold;
}

.sub-text {
  color: #7a7168;
  font-size: 13px;
}

.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.detail-section-title {
  font-size: 24px;
  color: #2b2622;
  margin-bottom: 18px;
}

.detail-description {
  color: #4a433d;
  line-height: 1.9;
  font-size: 15px;
}

.taste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.taste-box {
  background-color: #fffaf4;
  border: 1px solid #e3d9cc;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.taste-box h3 {
  font-size: 18px;
  color: #5b534c;
  margin-bottom: 10px;
}

.taste-value {
  font-size: 28px;
  font-weight: bold;
  color: #2f5d73;
}

@media (max-width: 900px) {
  .detail-main-grid,
  .taste-grid {
    grid-template-columns: 1fr;
  }

  .detail-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .detail-main-card,
  .detail-section-card {
    padding: 20px;
  }

  .detail-no-image {
    min-height: 260px;
  }

  .detail-actions .btn {
    width: 100%;
    text-align: center;
  }

  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .detail-table tr {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee3d6;
  }

  .detail-table tbody tr:last-child {
    border-bottom: none;
  }

  .detail-table th,
  .detail-table td {
    border-bottom: none;
  }
}