@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

.page-main {
  font-family: Montserrat, sans-serif;
  background: #fff;
  min-height: 50vh;
}
.page-hero {
  background: linear-gradient(180deg, #faeef1 0%, #fff 100%);
  border-bottom: 1px solid #fbc8d7;
  padding: 28px 20px 24px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(22px, 4vw, 32px);
  color: #cf3c7d;
  font-weight: 800;
  letter-spacing: -.02em;
}
.page-hero p {
  margin-top: 8px;
  color: #677279;
  font-size: 14px;
  line-height: 1.5;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.page-card {
  background: #fff;
  border: 1px solid #f0d4de;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(207, 60, 125, .06);
}
.page-card h2 {
  font-size: 16px;
  color: #cf3c7d;
  margin-bottom: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.page-card h3 {
  font-size: 14px;
  color: #1b1b1b;
  margin: 14px 0 6px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.info-item b { display: block; font-size: 12px; color: #cf3c7d; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.info-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #faeef1;
  color: #eb2e7e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-ico svg { width: 18px; height: 18px; }
.wa-btn, .mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  margin-top: 10px;
  margin-right: 8px;
}
.wa-btn { background: #25d366; color: #fff !important; }
.mail-btn { background: #eb2e7e; color: #fff !important; }
.page-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #677279;
  margin: 10px 0 6px;
}
.page-form input,
.page-form select,
.page-form textarea {
  width: 100%;
  border: 1px solid #f0b6c8;
  border-radius: 8px;
  padding: 12px 12px;
  font: 14px/1.4 Montserrat, sans-serif;
  outline: none;
  background: #fff;
  color: #1b1b1b;
}
.page-form input:focus,
.page-form select:focus,
.page-form textarea:focus {
  border-color: #eb2e7e;
  box-shadow: 0 0 0 1px #eb2e7e;
}
.page-form textarea { min-height: 120px; resize: vertical; }
.page-form button,
.track-form button {
  width: 100%;
  height: 50px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  background: #fe1c78;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}
.page-form button:hover,
.track-form button:hover { filter: brightness(1.05); }
.map-wrap {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0d4de;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}
.map-caption {
  padding: 12px 16px;
  background: #faeef1;
  font-size: 13px;
  color: #333;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.map-caption a { color: #eb2e7e; font-weight: 700; }
.faq-item {
  border-bottom: 1px solid #f3d5e0;
  padding: 12px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #1b1b1b;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 8px; font-size: 13px; color: #555; line-height: 1.55; }
.ok-msg {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #e8f8ee;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
}
.ok-msg.show { display: block; }

.track-form {
  display: flex;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 22px;
}
.track-form input {
  flex: 1;
  height: 50px;
  border: 1px solid #f0b6c8;
  border-radius: 8px;
  padding: 0 14px;
  font: 15px Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.track-form button { width: auto; margin: 0; padding: 0 22px; white-space: nowrap; }
.track-hint { text-align: center; color: #677279; font-size: 13px; margin: -10px 0 24px; }
.track-result { display: none; }
.track-result.show { display: block; }
.track-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 18px;
  background: #faeef1;
  border-radius: 12px;
  margin-bottom: 18px;
}
.track-status strong { color: #cf3c7d; font-size: 16px; display: block; }
.track-status small { color: #677279; font-size: 12px; }
.track-timeline { list-style: none; display: flex; flex-direction: column; gap: 0; }
.track-timeline li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  position: relative;
  padding-bottom: 18px;
}
.track-timeline li:last-child { padding-bottom: 0; }
.track-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e8c0ce;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.track-timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: #f3d5e0;
}
.track-timeline li:last-child::before { display: none; }
.track-timeline li.done .track-dot { background: #eb2e7e; }
.track-timeline li.current .track-dot { background: #fe1c78; box-shadow: 0 0 0 4px rgba(254, 28, 120, .18); }
.track-timeline h3 { font-size: 14px; margin-bottom: 2px; }
.track-timeline p { font-size: 12px; color: #677279; }
.track-history { margin-top: 18px; font-size: 13px; }
.track-history a { color: #eb2e7e; margin-right: 10px; }
.track-empty, .track-error {
  text-align: center;
  padding: 18px;
  color: #677279;
  font-size: 14px;
}
.track-error { color: #b42318; display: none; }
.track-error.show { display: block; }
.page-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #1b1b1b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  transition: .25s ease;
}
.page-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 800px) {
  .page-grid { grid-template-columns: 1fr; }
  .track-form { flex-direction: column; }
  .map-wrap iframe { height: 280px; }
}
