.price-page { min-height: 100vh; }
.price-main { min-height: calc(100vh - 180px); padding-top: 72px; }
.price-lock {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    linear-gradient(rgba(10, 21, 37, .78), rgba(10, 21, 37, .84)),
    url("../img/night.jpg") center / cover;
}
.lock-card {
  width: min(520px, 100%);
  padding: clamp(30px, 6vw, 56px);
  color: #fff;
  background: rgba(18, 32, 52, .94);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lock-card h1, .price-heading h1 { margin: 0; line-height: 1.15; }
.lock-card h1 { font-size: clamp(38px, 7vw, 60px); }
.lock-card > p { color: rgba(255, 255, 255, .76); }
.password-form { margin-top: 28px; }
.password-form label { display: block; margin-bottom: 8px; font-weight: 800; }
.password-form > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.password-form input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  font: inherit;
}
.password-form button, .lock-again {
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.password-error { min-height: 1.7em; margin: 8px 0 0; color: #ffd36d; font-weight: 700; }
.back-link { display: inline-block; margin-top: 18px; color: rgba(255,255,255,.78); font-weight: 700; }
.price-content { width: min(1500px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 100px; }
.price-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.price-heading h1 { font-size: clamp(38px, 6vw, 72px); }
.price-heading p { margin-bottom: 0; color: var(--muted); }
.lock-again { color: var(--ink); background: #e7eaf0; white-space: nowrap; }
.price-notice { display: flex; gap: 14px; margin: 30px 0 22px; padding: 16px 18px; background: #fff7df; border-left: 4px solid var(--gold); }
.floor-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.floor-tabs button {
  min-width: 62px;
  padding: 10px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.floor-tabs button[aria-selected="true"] { color: #fff; background: var(--navy); border-color: var(--navy); }
.floor-section { margin: 0 0 34px; scroll-margin-top: 100px; }
.floor-section h2 { margin: 0 0 12px; font-size: 28px; }
.table-scroll { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 30px rgba(15, 31, 54, .08); }
.price-table { width: 100%; min-width: 1320px; border-collapse: collapse; font-size: 14px; line-height: 1.4; }
.price-table th, .price-table td { padding: 12px 10px; text-align: right; white-space: nowrap; border-bottom: 1px solid #e7eaf0; }
.price-table th { position: sticky; top: 0; z-index: 1; color: #fff; background: var(--navy); text-align: center; }
.price-table td:first-child { font-weight: 900; text-align: center; background: #f7f8fa; }
.price-table tbody tr:hover td { background: #fff9e8; }
.price-table tbody tr:hover td:first-child { background: #f7edd0; }
.price-table .total-price { color: #8a5d10; font-weight: 900; }
.price-source { margin-top: 18px; color: var(--muted); font-size: 13px; }
@media (max-width: 720px) {
  .price-main { padding-top: 64px; }
  .price-content { width: min(100% - 24px, 1500px); padding-top: 42px; }
  .price-heading { align-items: flex-start; }
  .price-heading h1 { font-size: 38px; }
  .price-heading p { font-size: 15px; }
  .price-notice { display: block; font-size: 14px; }
  .price-notice strong { display: block; }
  .password-form > div { grid-template-columns: 1fr; }
  .floor-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
}
