/* ===== Tea Scene Page ===== */
.tea-scene-page { padding: 0 16px 20px; }

.scene-intro {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 16px;
}

.tea-layout {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.tatami {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: linear-gradient(135deg, #D4C9B8 0%, #C9BEAD 50%, #D4C9B8 100%);
  background-size: 40px 40px;
}

.tea-room {
  position: absolute;
  inset: 0;
}

.tokonoma {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 25%;
  height: 30%;
  border: 2px solid rgba(139,115,85,0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(139,115,85,0.6);
  background: rgba(139,115,85,0.05);
}

.ro {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 12%;
  border: 2px solid rgba(139,115,85,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(139,115,85,0.6);
  background: rgba(139,115,85,0.05);
}

.utensil-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s;
}

.utensil-marker:active { transform: translate(-50%, -50%) scale(1.1); }

.marker-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.85;
  margin: 0 auto 4px;
  box-shadow: 0 0 0 4px rgba(91,123,138,0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91,123,138,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(91,123,138,0.1); }
}

.marker-label {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--text);
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Utensil Popup */
.utensil-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
  animation: popupIn 0.2s ease;
}

@keyframes popupIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  animation: popupSlideUp 0.25s ease;
}

@keyframes popupSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-content h3 {
  font-family: var(--font-title);
  font-size: 18px;
  margin-bottom: 4px;
}

.popup-jp {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.popup-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.popup-close {
  padding: 8px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: opacity 0.2s;
}

.popup-close:active { opacity: 0.8; }

/* Season Cards */
.season-info h2 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.season-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.season-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.season-card:active { transform: scale(0.97); }

.season-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.season-icon.spring { background: rgba(196,168,104,0.15); color: #C4A868; }
.season-icon.summer { background: rgba(91,123,138,0.15); color: #5B7B8A; }
.season-icon.autumn { background: rgba(139,115,85,0.15); color: #8B7355; }
.season-icon.winter { background: rgba(100,100,120,0.15); color: #646478; }

.season-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}
