:root {
  color-scheme: light;
  --ink: #24212a;
  --paper: #fbfaf5;
  --white: #ffffff;
  --muted: #6f6972;
  --line: #e6dfd1;
  --panel: #f3eddf;
  --charcoal: #24212a;
  --red: #ffb000;
  --red-dark: #e28a00;
  --teal: #3b3542;
  --amber: #ffc400;
  --shadow: 0 18px 50px rgba(36, 33, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft JhengHei", "PingFang TC", sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  border-radius: 6px;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(36, 33, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-logo {
  width: 92px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a.is-active {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
}

body.is-maintenance .nav-links a:not(.admin-only) {
  display: none;
}

.admin-only {
  display: none;
}

body.show-admin .admin-only {
  display: inline-flex;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-picker select {
  min-height: 42px;
  padding: 0 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.language-picker option {
  color: var(--ink);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  border-radius: 6px;
  border: 0;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.view-switcher {
  display: none;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.view-button {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.view-button.is-active {
  color: var(--ink);
  background: var(--white);
}

.is-hidden {
  display: none !important;
}

.maintenance-screen {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 36px 20px 64px;
  background:
    radial-gradient(circle at top, rgba(255, 170, 64, 0.16), transparent 36%),
    linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  color: var(--white);
}

.maintenance-shell {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(12, 12, 12, 0.82);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.maintenance-logo {
  width: 88px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 16px;
}

.maintenance-shell .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.maintenance-shell h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.maintenance-shell p {
  max-width: 48rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.maintenance-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 28px;
}

.maintenance-contact span,
.maintenance-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.maintenance-contact a:hover,
.maintenance-contact a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.maintenance-admin-box {
  margin: 0 0 22px;
  padding: 18px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 6vw, 88px) 88px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-equipment-rental.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  animation: slowHeroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 33, 42, 0.94) 0%, rgba(36, 33, 42, 0.76) 38%, rgba(36, 33, 42, 0.18) 76%),
    linear-gradient(0deg, rgba(36, 33, 42, 0.92) 0%, rgba(36, 33, 42, 0.08) 30%, rgba(36, 33, 42, 0.05) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.primary-button {
  color: var(--ink);
  background: var(--red);
  border-color: var(--red);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.secondary-button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-stats {
  max-width: 650px;
  margin-top: 52px;
}

.hero-stats div {
  min-width: 142px;
  padding: 18px 20px;
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.5rem;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes slowHeroZoom {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.07);
  }
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 210px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
}

.intro-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.intro-item h2 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.intro-item p,
.section-heading p,
.process-grid p,
.contact-section p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
}

.catalog-section,
.booking-section,
.process-section,
.film-section,
.promo-section,
.inspiration-section,
.retail-section,
.location-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.inspiration-section {
  background: var(--ink);
  color: var(--white);
}

.inspiration-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.inspiration-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/hero-equipment-rental.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease;
}

.inspiration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 196, 0, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(36, 33, 42, 0.76), rgba(36, 33, 42, 0.24));
}

.inspiration-card:hover,
.inspiration-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 0, 0.52);
}

.inspiration-card.travel {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/gear/ricoh-gr3.png");
  background-color: #2c3037;
  background-size: 95%;
  background-repeat: no-repeat;
}

.inspiration-card.concert {
  background-position: 72% center;
}

.inspiration-card.interview {
  background-position: 22% center;
}

.inspiration-card.film-life {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/digital-dinosur-logo.png");
  background-color: #34313b;
  background-size: 72%;
  background-repeat: no-repeat;
}

.inspiration-card.mv {
  background-position: 58% center;
}

.inspiration-card.social {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 30, 0.08), rgba(25, 23, 30, 0.9)),
    url("assets/gear/dji-osmo-mobile-6.jpg");
  background-size: cover;
}

.inspiration-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.inspiration-card h3 {
  max-width: 320px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.inspiration-card p {
  max-width: 360px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.inspiration-card a {
  width: fit-content;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.package-section {
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.package-heading {
  max-width: 860px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.package-card-image {
  position: relative;
  min-height: 210px;
  background-position: center;
  background-size: cover;
}

.package-card-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(17, 19, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
}

.package-card-content {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.package-card-content h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.22;
}

.package-card-content p {
  color: #59606b;
  line-height: 1.55;
}

.package-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.package-meta span,
.package-meta strong {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px;
  text-align: center;
  background: #f2efe8;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.package-meta strong {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.package-items {
  min-height: 44px;
  color: #68707b;
  line-height: 1.5;
}

.package-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.package-actions .primary-button,
.package-actions .secondary-button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
}

.retail-section {
  background: var(--panel);
}

.retail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.retail-feature {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(36, 33, 42, 0.94), rgba(36, 33, 42, 0.68)),
    url("assets/insta360-mic-pro.png");
  background-size: cover;
  background-position: center;
}

.retail-feature p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.retail-feature .primary-button {
  width: fit-content;
}

.retail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.retail-list article {
  display: grid;
  align-content: start;
  min-height: 172px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 19, 23, 0.06);
}

.retail-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.retail-list span {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.catalog-helper-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: -10px 0 24px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 19, 23, 0.06);
}

.catalog-helper-note strong {
  color: var(--ink);
}

.catalog-helper-note span {
  color: var(--muted);
  line-height: 1.55;
}

.filter-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  align-self: start;
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 176, 0, 0.62) rgba(255, 255, 255, 0.08);
}

.filter-panel::-webkit-scrollbar {
  width: 7px;
}

.filter-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.filter-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 176, 0, 0.62);
  border-radius: 999px;
}

.filter-panel-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-panel-heading span,
.catalog-filter-summary span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.filter-panel-heading strong,
.catalog-filter-summary strong {
  color: var(--white);
}

.filter-panel label {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
}

.search-filter-block {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(255, 176, 0, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  border-radius: 10px;
}

.search-filter-block label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.9rem;
}

.search-filter-block label::after {
  content: "SEARCH";
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
}

.search-field {
  display: grid;
  grid-template-columns: 1fr 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.search-field:focus-within {
  border-color: rgba(255, 176, 0, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.14);
}

.search-field input,
.search-field button {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.search-field input {
  width: 100%;
  padding: 0 14px;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.search-field button {
  font-size: 1.3rem;
}

.catalog-brand-filter {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-brand-filter option {
  color: var(--ink);
  background: var(--white);
}

.filter-block {
  display: grid;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.035));
  border-radius: 10px;
}

.scene-filter-block {
  border-color: rgba(255, 176, 0, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.13), rgba(255, 255, 255, 0.045));
}

.category-filter-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.filter-block-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.filter-block-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
}

.filter-block-title strong {
  color: var(--white);
  font-size: 0.94rem;
}

.filter-block p {
  margin: -3px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.scene-filter-panel {
  display: grid;
  gap: 8px;
}

.scene-filter-panel > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scene-filter-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.scene-filter-list button {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 13, 15, 0.28);
  border-radius: 8px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scene-filter-list button:hover {
  border-color: rgba(255, 176, 0, 0.38);
}

.scene-filter-list button.is-active {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.66);
  background: linear-gradient(135deg, #fff5d4, var(--gold) 54%, #ff8a3d);
  box-shadow: 0 12px 28px rgba(255, 176, 0, 0.22);
}

.scene-filter-list strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.scene-filter-list small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
}

.scene-filter-list button.is-active small {
  color: rgba(17, 19, 23, 0.62);
}

.catalog-filter-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.16), rgba(255, 120, 40, 0.08));
  border: 1px solid rgba(255, 176, 0, 0.28);
  border-radius: 8px;
}

.catalog-filter-summary small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 750;
}

.catalog-clear-filter {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-weight: 850;
}

.catalog-clear-filter:hover {
  color: var(--white);
  border-color: rgba(255, 176, 0, 0.44);
}

.category-tabs {
  display: grid;
  gap: 10px;
}

.category-filter-group {
  display: grid;
  gap: 8px;
}

.category-filter-group.is-empty {
  opacity: 0.54;
}

.category-filter-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  text-align: left;
  border-radius: 8px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.category-filter-main:hover {
  border-color: rgba(255, 176, 0, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.14), rgba(255, 255, 255, 0.045));
}

.category-filter-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.category-filter-copy strong {
  color: inherit;
  font-size: 0.94rem;
}

.category-filter-copy em {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.32;
}

.category-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-weight: 950;
}

.category-filter-main[aria-selected="true"] {
  color: var(--ink);
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--gold));
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.18);
}

.category-filter-main[aria-selected="true"] em {
  color: rgba(17, 19, 23, 0.62);
}

.category-filter-main[aria-selected="true"] .category-filter-count {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
}

.brand-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.brand-chip-heading {
  flex: 1 0 100%;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-chip-list button {
  min-height: 32px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.brand-chip-list button:hover {
  color: var(--white);
  border-color: rgba(255, 176, 0, 0.38);
}

.brand-chip-list button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.brand-chip-list small {
  opacity: 0.74;
}

.equipment-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.equipment-toolbar select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.catalog-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 16px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
}

.catalog-active-filters > span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-active-filters > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 107, 53, 0.22);
  color: var(--ink);
  background: rgba(255, 176, 0, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 1500px) {
  .equipment-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.catalog-cart-widget {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.catalog-cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(17, 19, 23, 0.24);
  font-weight: 900;
}

.catalog-cart-toggle strong {
  color: var(--red);
}

.catalog-cart-panel {
  position: absolute;
  z-index: 10;
  top: auto;
  bottom: calc(100% + 10px);
  right: 0;
  width: min(360px, 92vw);
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(17, 19, 23, 0.18);
}

.catalog-cart-items {
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 12px;
}

.catalog-cart-item {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.catalog-cart-item strong {
  line-height: 1.35;
}

.catalog-cart-item span,
.catalog-cart-total span {
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 2px;
  border-top: 1px solid var(--line);
}

.catalog-cart-panel .primary-button {
  width: 100%;
  margin-top: 12px;
}

.equipment-card {
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 19, 23, 0.08);
}

.equipment-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  background-image:
    linear-gradient(180deg, rgba(17, 19, 23, 0.06), rgba(17, 19, 23, 0.28)),
    url("assets/hero-equipment-rental.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.equipment-detail-trigger {
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.equipment-detail-trigger:focus-visible,
.equipment-title-button:focus-visible,
.detail-link:focus-visible {
  outline: 3px solid rgba(255, 176, 0, 0.58);
  outline-offset: 2px;
}

.equipment-image.has-custom-image {
  background-size: cover;
  background-position: center;
}

.equipment-image.missing-image {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(241, 13, 47, 0.12), rgba(255, 196, 0, 0.18)),
    #f6f3ed;
}

.equipment-image.missing-image span {
  padding: 8px 12px;
  color: #111;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.equipment-image.image-camera {
  background-position: 68% 55%;
}

.equipment-image.image-lens {
  background-position: 92% 50%;
}

.equipment-image.image-lighting {
  background-position: 100% 12%;
}

.equipment-image.image-audio {
  background-position: 86% 82%;
}

.equipment-image.image-support {
  background-position: 48% 58%;
}

.equipment-image.image-monitor,
.equipment-image.image-power {
  background-position: 72% 68%;
}

.equipment-image.image-grip {
  background-position: 40% 54%;
}

.equipment-image.image-drone,
.equipment-image.image-filter,
.equipment-image.image-film {
  background-position: 88% 70%;
}

.equipment-image.image-package {
  background-position: 73% 58%;
}

.equipment-card header,
.equipment-card p,
.equipment-card .spec-list,
.equipment-card .card-footer {
  margin-left: 12px;
  margin-right: 12px;
}

.equipment-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
}

.equipment-card h3 {
  margin-bottom: 5px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.equipment-title-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.detail-link {
  align-self: flex-start;
  min-height: 30px;
  padding: 0 9px;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  color: var(--ink);
  background: rgba(255, 196, 0, 0.18);
  border: 1px solid rgba(255, 176, 0, 0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.equipment-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 5px 7px;
  color: #4e535b;
  background: var(--panel);
  border-radius: 4px;
  font-size: 0.76rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 2px;
  padding-bottom: 14px;
}

.price strong {
  font-size: 1rem;
}

.price span {
  color: var(--muted);
  font-size: 0.76rem;
}

.add-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 0;
}

.catalog-pagination span {
  min-width: 110px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.catalog-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.add-button.is-added {
  border-color: var(--teal);
  background: var(--teal);
}

.booking-section {
  background:
    linear-gradient(180deg, #24212a 0%, #2d2934 52%, #24212a 100%);
  color: var(--white);
}

.booking-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.booking-form-heading {
  max-width: 820px;
  margin: 0 0 24px;
  padding-top: clamp(10px, 2vw, 18px);
}

.booking-form-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.booking-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 24px;
}

.booking-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.booking-form,
.cart-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.booking-form select option {
  color: var(--ink);
}

.booking-form .time-wheel-select {
  min-height: 142px;
  padding: 6px 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  text-align: center;
  overflow-y: auto;
}

.time-picker {
  position: relative;
  display: block;
}

.time-picker-trigger {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  text-align: left;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.time-picker-trigger::after {
  content: "⌄";
  float: right;
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0;
}

.time-picker-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #252226;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.split-time-wheel {
  display: grid;
  grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr);
  gap: 8px;
  align-items: center;
}

.time-wheel-separator {
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}

.time-wheel-select option {
  padding: 5px 0;
}

.time-picker-done {
  justify-self: end;
}

.booking-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.form-submit {
  width: fit-content;
}

.form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.cart-warning {
  min-height: 24px;
  margin: -6px 0 0;
  color: #f0a400;
  font-weight: 800;
}

.cart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.cart-heading h3 {
  margin: 0;
  font-size: 1.55rem;
}

.cart-heading button,
.cart-remove {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.empty-cart {
  padding: 18px;
  color: rgba(255, 255, 255, 0.56);
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.cart-summary {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary dt {
  color: rgba(255, 255, 255, 0.64);
}

.cart-summary dd {
  margin: 0;
  font-weight: 800;
}

.summary-total {
  color: var(--white);
  font-size: 1.22rem;
}

.promo-code-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-code-form label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.inline-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.inline-field input,
.inline-admin-form input {
  min-height: 42px;
}

.promo-code-form input {
  width: 100%;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.booking-process {
  margin-bottom: clamp(28px, 5vw, 54px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.booking-process .section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(280px, 0.9fr);
  gap: clamp(16px, 4vw, 42px);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.booking-process .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.booking-process .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.booking-process .section-heading p:last-child {
  max-width: 680px;
  margin: 0;
}

.process-grid article {
  position: relative;
  min-height: 196px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(36, 33, 42, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.95rem;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 6vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #302b35;
}

.contact-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-section p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.confirm-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow);
}

.confirm-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.confirm-dialog h2 {
  margin-bottom: 12px;
}

.gear-detail-dialog {
  width: min(1120px, calc(100vw - 28px));
  max-height: none;
  overflow: visible;
  padding: 0;
  background: #fffdf8;
}

.admin-booking-drawer {
  width: min(720px, calc(100vw - 28px));
  max-height: min(92vh, 880px);
  margin-right: 18px;
  margin-left: auto;
  padding: 0;
}

.admin-booking-drawer-body {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.drawer-header {
  display: grid;
  gap: 8px;
  padding-right: 36px;
}

.drawer-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.drawer-section {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.drawer-section h3 {
  margin: 0;
  font-size: 1rem;
}

.drawer-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.drawer-note {
  padding: 10px;
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.22);
}

.admin-adjustment-section {
  border-color: rgba(255, 176, 0, 0.32);
  background: #fff8e8;
}

.admin-adjustment-form {
  display: grid;
  gap: 12px;
}

.admin-adjustment-form label {
  display: grid;
  gap: 7px;
}

.admin-adjustment-form small {
  color: var(--muted);
  line-height: 1.45;
}

.admin-adjustment-form textarea,
.admin-adjustment-form input {
  width: 100%;
  border: 1px solid rgba(36, 33, 42, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.admin-adjustment-picker {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.adjustment-option-list,
.adjustment-selected-list {
  display: grid;
  gap: 8px;
}

.adjustment-picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.adjustment-picker-actions .ghost-button {
  min-height: 34px;
}

.adjustment-option-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adjustment-option-list .mini-button {
  justify-content: flex-start;
  min-height: 46px;
  padding: 8px 10px;
  text-align: left;
}

.adjustment-option-list strong,
.adjustment-option-list small {
  display: block;
}

.adjustment-option-list small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.adjustment-selected-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #fffdf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.adjustment-selected-row strong,
.adjustment-selected-row small {
  display: block;
}

.adjustment-selected-row small {
  margin-top: 3px;
  color: var(--muted);
}

.adjustment-selected-row label {
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 850;
}

.adjustment-selected-row input {
  min-height: 34px;
  padding: 0 8px;
}

.gear-detail-body {
  --gear-detail-image-size: clamp(540px, min(50vw, calc(100dvh - 48px)), 620px);
  --gear-detail-media-bg: #f4f0e8;
  display: grid;
  grid-template-columns: var(--gear-detail-image-size) minmax(0, 1fr);
  align-items: start;
  gap: 0;
  min-height: var(--gear-detail-image-size);
  padding: 0;
  overflow: visible;
  background: var(--gear-detail-media-bg);
}

.gear-detail-media {
  width: 100%;
  height: var(--gear-detail-image-size);
  min-height: var(--gear-detail-image-size);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--gear-detail-media-bg);
  box-shadow: none;
}

.gear-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--gear-detail-media-bg);
  transform: scale(1.045);
  transform-origin: center;
}

.gear-detail-media.has-custom-image .gear-detail-image {
  mix-blend-mode: multiply;
}

.gear-detail-media.missing-image {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.2), rgba(36, 33, 42, 0.12)),
    #f6f3ed;
}

.gear-detail-media.missing-image span {
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.gear-detail-content {
  display: grid;
  align-content: start;
  gap: 7px;
  max-height: none;
  overflow: visible;
  padding: clamp(14px, 1.45vw, 19px);
  background: #fffdf8;
  box-shadow: -1px 0 0 rgba(36, 33, 42, 0.08);
}

.gear-detail-title-row {
  display: grid;
  gap: 7px;
}

.gear-detail-title-row h2 {
  margin: 0;
  font-size: clamp(1.3rem, 1.85vw, 1.75rem);
  line-height: 1.1;
}

.gear-detail-brand-tag {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #ff9a48);
  border: 1px solid rgba(255, 107, 53, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.gear-detail-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gear-detail-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #6b5143;
  background: #fff6df;
  border: 1px solid rgba(255, 176, 0, 0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.gear-detail-spec-text {
  flex: 1 1 180px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.gear-detail-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 4px 12px;
  padding: 9px 11px;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.16), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 107, 53, 0.22);
  border-radius: 8px;
}

.gear-detail-price-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gear-detail-price-card strong {
  color: var(--red-dark);
  font-size: clamp(1.35rem, 2.15vw, 1.75rem);
  line-height: 1;
}

.gear-detail-price-card small {
  grid-column: 1 / -1;
  color: #6b5143;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.38;
}

.gear-detail-section {
  display: grid;
  gap: 5px;
  padding: 8px 9px;
  border: 1px solid rgba(36, 33, 42, 0.08);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 8px;
}

.gear-detail-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
}

.gear-detail-copy {
  display: grid;
  gap: 5px;
  max-height: clamp(86px, 15dvh, 132px);
  overflow-y: auto;
  padding-right: 6px;
  color: var(--muted);
  line-height: 1.42;
  scrollbar-width: thin;
  scrollbar-color: rgba(36, 33, 42, 0.28) transparent;
}

.gear-detail-copy::-webkit-scrollbar {
  width: 6px;
}

.gear-detail-copy::-webkit-scrollbar-thumb {
  background: rgba(36, 33, 42, 0.28);
  border-radius: 999px;
}

.gear-detail-copy p {
  margin: 0;
}

.gear-detail-note {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  border-radius: 8px;
}

.gear-detail-note strong {
  color: var(--amber);
}

.gear-detail-note span {
  line-height: 1.36;
}

.gear-detail-cta-note {
  padding: 7px 9px;
  color: #6b5143;
  background: #fff6df;
  border: 1px solid rgba(255, 176, 0, 0.28);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.34;
}

.gear-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gear-detail-actions .secondary-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.booking-confirmation {
  display: grid;
  gap: 16px;
}

.confirmation-lead {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #fbfaf5;
  border: 1px solid var(--line);
}

.confirmation-lead strong {
  font-size: 1.08rem;
}

.confirmation-lead span {
  color: var(--muted);
  line-height: 1.65;
}

.confirmation-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.confirmation-time-grid div,
.confirmation-summary {
  padding: 14px;
  background: #f6f0e4;
  border: 1px solid var(--line);
}

.confirmation-time-grid span,
.confirmation-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.confirmation-time-grid strong,
.confirmation-summary strong {
  font-weight: 900;
}

.confirmation-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.confirmation-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
}

.confirmation-table th,
.confirmation-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.confirmation-table th {
  color: var(--muted);
  background: #fbfaf5;
  font-size: 0.82rem;
  font-weight: 900;
}

.confirmation-table td:nth-child(2),
.confirmation-table td:nth-child(3),
.confirmation-table td:nth-child(4),
.confirmation-table th:nth-child(2),
.confirmation-table th:nth-child(3),
.confirmation-table th:nth-child(4) {
  text-align: right;
  white-space: nowrap;
}

.confirmation-summary {
  display: grid;
  gap: 10px;
}

.confirmation-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.confirmation-summary span {
  margin-bottom: 0;
}

.confirmation-total {
  padding-top: 10px;
  border-top: 1px solid rgba(36, 33, 42, 0.14);
}

.confirmation-total strong {
  color: var(--red-dark);
  font-size: 1.2rem;
}

.confirmation-note {
  padding: 16px;
  color: var(--muted);
  background: #24212a;
  border: 1px solid rgba(36, 33, 42, 0.16);
}

.confirmation-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.confirmation-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.confirmation-contact-grid div {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.confirmation-contact-grid span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-contact-grid strong,
.confirmation-contact-grid a {
  color: var(--amber);
  font-weight: 900;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 1.3rem;
}

.no-results {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
}

.film-section {
  background: #fff8e6;
}

.promo-section {
  background: var(--charcoal);
  color: var(--white);
}

.promo-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(36, 33, 42, 0.08);
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.4rem;
}

.promo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.45fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.promo-side-list {
  display: grid;
  gap: 18px;
}

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

.promo-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #302d35;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.promo-tile a,
.promo-tile-image {
  position: absolute;
  inset: 0;
}

.promo-tile a {
  display: block;
  color: inherit;
}

.promo-tile-image {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.promo-tile-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.promo-tile span,
.promo-tile strong {
  color: var(--red);
  font-weight: 900;
}

.promo-tile h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 3.15rem);
  line-height: 1.05;
}

.promo-tile p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.promo-feature {
  min-height: clamp(360px, 43vw, 600px);
}

.promo-feature .promo-tile {
  min-height: 100%;
}

.promo-side {
  min-height: 180px;
}

.promo-side .promo-tile-content {
  padding: 18px;
}

.promo-side h3 {
  font-size: 1.35rem;
}

.promo-side p {
  display: none;
}

.promo-card {
  min-height: 260px;
}

.promo-card .promo-tile-content {
  padding: 24px;
}

.promo-card h3 {
  font-size: 1.55rem;
}

.social-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 238, 232, 0.9)),
    var(--paper);
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.social-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #242326;
  border: 1px solid rgba(34, 31, 32, 0.18);
}

.social-tile a,
.social-tile-image {
  position: absolute;
  inset: 0;
}

.social-tile a {
  display: block;
  color: inherit;
}

.social-tile-image {
  background-position: center;
  background-size: cover;
  transition: transform 220ms ease;
}

.social-tile:hover .social-tile-image {
  transform: scale(1.035);
}

.social-tile-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 100%;
  padding: clamp(20px, 3vw, 34px);
}

.social-tile-content span,
.social-tile-content strong {
  color: var(--red);
  font-weight: 900;
}

.social-tile-content h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.6vw, 2.65rem);
  line-height: 1.08;
}

.social-tile-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.social-feature {
  min-height: clamp(420px, 48vw, 680px);
}

.social-feature .social-tile {
  min-height: 100%;
}

.social-card {
  min-height: 260px;
}

.social-card .social-tile-content {
  padding: 22px;
}

.social-card h3 {
  font-size: 1.45rem;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.record-thumb {
  min-height: 120px;
  margin-bottom: 12px;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.location-section {
  background: var(--paper);
}

.location-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(36, 33, 42, 0.08);
}

.location-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.location-card p,
.muted-copy {
  color: var(--muted);
  line-height: 1.7;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  font-weight: 800;
}

.map-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.secondary-button.dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.social-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.status-pill.is-open {
  color: #1e3d22;
  background: #dff2d7;
  border-color: #b9dfad;
}

.status-pill.is-closed {
  color: #5d261d;
  background: #ffe1d6;
  border-color: #f2b5a2;
}

.member-section,
.admin-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.member-section {
  background: var(--paper);
}

.admin-section {
  background:
    linear-gradient(180deg, #fff8e8 0%, #f5efe3 44%, #f8f4ec 100%);
}

.admin-section > .section-heading,
.admin-section > .admin-tabs,
.admin-section > .admin-page {
  width: min(100%, 1440px);
  margin-left: auto;
  margin-right: auto;
}

.admin-section > .section-heading {
  margin-bottom: 20px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.07);
  backdrop-filter: blur(10px);
}

.admin-tab-group {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: rgba(36, 33, 42, 0.04);
  border: 1px solid rgba(36, 33, 42, 0.06);
  border-radius: 8px;
}

.admin-tab-group > span {
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-tab {
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-tab.is-active {
  color: var(--ink);
  background: var(--red);
  border-color: var(--red);
}

.admin-page {
  display: none;
}

.admin-page:not(.is-active) {
  display: none !important;
}

.admin-page.is-active {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.admin-page[data-admin-page="overview"].is-active {
  display: block;
}

.member-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.member-login-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 920px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.member-login-prompt p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.member-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  grid-template-areas:
    "profile edit"
    "bookings shop"
    "bookings film";
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.member-profile-card {
  grid-area: profile;
}

.member-records-card {
  grid-area: bookings;
  min-height: 100%;
}

.member-edit-card {
  grid-area: edit;
  align-content: start;
  overflow: hidden;
  padding: 0;
}

.member-film-card {
  grid-area: film;
}

.member-shop-card {
  grid-area: shop;
}

.member-edit-card > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.member-edit-card > summary::-webkit-details-marker {
  display: none;
}

.member-edit-card > summary em,
.member-booking-card summary em {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(255, 176, 0, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  font-style: normal;
}

.member-edit-card .open-label,
.member-booking-card .open-label {
  display: none;
}

.member-edit-card[open] .closed-label,
.member-booking-card[open] .closed-label {
  display: none;
}

.member-edit-card[open] .open-label,
.member-booking-card[open] .open-label {
  display: inline;
}

.member-edit-card > summary strong,
.member-edit-card > summary small {
  display: block;
}

.member-edit-card > summary small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.member-profile-form {
  display: grid;
  gap: 16px;
  padding: 0 20px 20px;
}

.member-edit-card:not([open]) .member-profile-form,
.member-booking-card:not([open]) .member-booking-detail {
  display: none;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.admin-grid.lower {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  margin-top: 24px;
}

.admin-page[data-admin-page="bookings"].is-active,
.admin-page[data-admin-page="customers"].is-active {
  grid-template-columns: minmax(0, 1fr);
}

.admin-page[data-admin-page="members"].is-active {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.admin-page[data-admin-page="members"].is-active > .admin-panel:first-child {
  grid-column: 1 / -1;
}

.film-admin-grid {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.film-order-panel {
  overflow: hidden;
}

.member-card,
.admin-panel {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.07);
}

.member-card,
.admin-panel,
.member-card form,
.admin-panel form,
.member-login-form {
  min-width: 0;
}

.member-card,
.admin-panel,
#equipmentForm,
.member-login-form {
  display: grid;
  gap: 16px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(36, 33, 42, 0.08);
}

.panel-heading h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.panel-heading > div:first-child {
  min-width: min(100%, 220px);
}

.panel-heading > input,
.panel-heading > select {
  width: min(260px, 100%);
  min-height: 40px;
  background: #fffdf8;
}

.admin-equipment-search {
  display: grid;
  gap: 6px;
  width: min(340px, 100%);
}

.admin-equipment-search label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-equipment-search input {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(36, 33, 42, 0.12);
  background: #fffdf8;
  border-radius: 8px;
}

.admin-equipment-search input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.14);
  outline: none;
}

.panel-heading > button,
.panel-heading > .booking-date-presets {
  flex: 0 0 auto;
}

.panel-heading-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-heading-actions .status-pill {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.status-pill,
.booking-status,
.stock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill {
  color: var(--ink);
  background: rgba(255, 196, 0, 0.18);
  border: 1px solid rgba(255, 176, 0, 0.32);
}

.booking-status.pending {
  color: #8d5a13;
  background: rgba(200, 146, 67, 0.18);
}

.booking-status.confirmed {
  color: var(--ink);
  background: rgba(255, 196, 0, 0.18);
}

.member-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.member-benefits div {
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.member-benefits .benefit-highlight {
  background: #fff8e8;
  border-color: rgba(255, 176, 0, 0.3);
}

.member-benefits .benefit-code {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.member-benefits .benefit-code span {
  color: rgba(255, 255, 255, 0.68);
}

.member-benefits strong,
.member-benefits span {
  display: block;
}

.member-benefits strong {
  font-size: 1.25rem;
}

.member-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.member-profile-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-profile-summary:empty {
  display: none;
}

.member-profile-summary span {
  min-width: min(100%, 150px);
  padding: 10px 12px;
  background: #fbfaf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.member-profile-summary small,
.member-profile-summary strong {
  display: block;
}

.member-profile-summary small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-profile-summary strong {
  margin-top: 3px;
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.member-shop {
  display: grid;
  gap: 12px;
}

.member-shop-locked {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 33, 42, 0.96), rgba(36, 33, 42, 0.82));
  border-radius: 8px;
}

.member-shop-locked p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.member-shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-shop-grid {
  display: grid;
  gap: 10px;
}

.member-shop-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff8e8;
  border: 1px solid rgba(255, 176, 0, 0.28);
  border-radius: 8px;
}

.member-shop-item span {
  width: fit-content;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
}

.member-shop-item strong,
.member-shop-item p {
  margin: 0;
}

.member-shop-item p {
  color: var(--muted);
  line-height: 1.55;
}

.member-booking-card {
  overflow: hidden;
  border: 1px solid rgba(36, 33, 42, 0.1);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 8px 20px rgba(17, 19, 23, 0.04);
}

.member-current-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(36, 33, 42, 0.96), rgba(36, 33, 42, 0.82));
  border-radius: 8px;
}

.member-current-booking:empty {
  display: none;
}

.member-current-booking span,
.member-current-booking strong,
.member-current-booking small {
  display: block;
}

.member-current-booking span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-current-booking small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.member-current-booking .booking-status {
  color: var(--ink);
  background: var(--red);
}

.member-booking-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-booking-filters button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(36, 33, 42, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.member-booking-filters button.is-active {
  background: var(--red);
  border-color: var(--red);
}

.member-booking-filters button strong {
  min-width: 22px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.72rem;
}

.member-booking-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.member-booking-card summary::-webkit-details-marker {
  display: none;
}

.member-booking-card summary strong,
.member-booking-card summary small {
  display: block;
}

.member-booking-card summary small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.member-booking-detail {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.member-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-booking-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: #f3eee5;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.member-booking-table table {
  min-width: 540px;
}

.member-charge-list {
  display: grid;
  gap: 8px;
}

.member-charge-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fbfaf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.member-charge-row span,
.member-charge-row small,
.member-charge-row strong {
  display: block;
}

.member-charge-row small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.4;
}

.member-charge-row.is-discount strong {
  color: #1f7a3a;
}

.member-charge-row.total {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.member-charge-row.total small {
  color: rgba(255, 255, 255, 0.68);
}

.member-film-record-card {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 8px 20px rgba(17, 19, 23, 0.04);
}

.member-film-record-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.member-film-record-card strong,
.member-film-record-card small {
  display: block;
}

.member-film-record-card small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.member-film-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.member-film-progress span {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.member-film-progress i {
  display: block;
  height: 6px;
  background: #e6e1d8;
  border-radius: 999px;
}

.member-film-progress span.is-done {
  color: var(--ink);
}

.member-film-progress span.is-done i {
  background: var(--red);
}

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

.film-summary-grid article {
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.film-summary-grid span,
.film-summary-grid strong {
  display: block;
}

.film-summary-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.film-summary-grid strong {
  margin-top: 4px;
  font-size: 1.18rem;
}

.film-filter-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(140px, 0.55fr) minmax(130px, 0.45fr) minmax(130px, 0.45fr);
  gap: 10px;
}

.booking-status.completed {
  color: #424850;
  background: #e6e1d8;
}

.booking-status.cancelled {
  color: var(--red-dark);
  background: rgba(214, 62, 50, 0.12);
}

.stock-pill {
  color: var(--ink);
  background: var(--panel);
}

.member-card label,
.admin-panel label {
  display: grid;
  gap: 8px;
  color: #424850;
  font-weight: 800;
}

.member-card input,
.member-card select,
.member-card textarea,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf8;
}

.member-card input:focus,
.member-card select:focus,
.member-card textarea:focus,
.admin-panel input:focus,
.admin-panel select:focus,
.admin-panel textarea:focus {
  outline: 2px solid rgba(255, 176, 0, 0.28);
  outline-offset: 1px;
  border-color: rgba(255, 176, 0, 0.72);
  background: var(--white);
}

.member-card textarea,
.admin-panel textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.image-upload-field {
  display: grid;
  gap: 10px;
}

.image-upload-field > span {
  color: #424850;
  font-weight: 800;
}

.image-dropzone {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 2px dashed var(--line);
  background: #fbfaf8;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.image-dropzone:hover,
.image-dropzone:focus-visible,
.image-dropzone.is-dragging {
  border-color: var(--red);
  background: rgba(255, 176, 0, 0.12);
  outline: none;
}

.image-preview {
  display: grid;
  place-items: center;
  min-height: 190px;
  overflow: hidden;
  color: var(--muted);
  background:
    linear-gradient(45deg, rgba(36, 33, 42, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(36, 33, 42, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(36, 33, 42, 0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(36, 33, 42, 0.04) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.image-preview.has-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-dropzone p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.image-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.package-equipment-picker {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding: 10px;
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.package-equipment-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.package-equipment-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.package-equipment-row span {
  display: grid;
  gap: 4px;
}

.package-equipment-row small {
  color: var(--muted);
  line-height: 1.4;
}

.login-dialog {
  width: min(1180px, calc(100vw - 32px));
  padding: clamp(26px, 5vw, 56px);
}

.login-title {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.login-title > span:first-child {
  width: 6px;
  height: 82px;
  background: #f10d2f;
}

.login-title p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.login-title h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: clamp(22px, 4vw, 38px);
  padding: 6px;
  background: #f2f2f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auth-mode-tab {
  min-height: 48px;
  padding: 0 12px;
  color: #555;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 900;
}

.auth-mode-tab.is-active {
  color: var(--white);
  background: #111;
}

.login-register-layout {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
}

.auth-pane {
  display: none;
}

.auth-pane.is-active {
  display: grid;
  gap: 24px;
}

.auth-pane h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.login-pane label,
.register-pane label {
  display: grid;
  gap: 10px;
  color: #050505;
  font-size: 1.18rem;
  font-weight: 900;
}

.login-pane label small,
.register-pane label small {
  color: #8a8a8a;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.login-pane input,
.register-pane input,
.register-pane select {
  width: 100%;
  min-height: 62px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #d0d0d0;
  background: var(--white);
  border-radius: 6px;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.login-check {
  display: inline-flex !important;
  font-size: 1rem !important;
}

.link-button {
  padding: 0;
  color: #050505;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-weight: 900;
}

.login-submit,
.register-submit {
  min-height: 70px;
  color: var(--white);
  background: #f10d2f;
  border-color: #f10d2f;
  font-size: 1.2rem;
}

.login-submit {
  width: min(360px, 100%);
  justify-self: center;
  margin-top: 34px;
}

.register-pane {
  display: grid;
  gap: 24px;
  text-align: left;
}

.register-pane p {
  margin: 0;
  color: #8a8a8a;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.65;
}

.member-insight-box {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: #fff8e8;
  border: 1px solid rgba(255, 176, 0, 0.28);
  border-radius: 8px;
}

.member-insight-box h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
}

.member-insight-box p {
  color: #6b6254;
  font-size: 0.96rem;
}

.auth-pane:not(.is-active) {
  display: none;
}

.privacy-consent-box {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fbfaf8;
  border: 1px solid var(--line);
}

.privacy-consent-box h3 {
  margin: 0;
  font-size: 1.25rem;
}

.privacy-consent-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.privacy-check {
  margin-top: 4px;
  color: var(--ink) !important;
  font-size: 1rem !important;
}

.register-submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.reset-password-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.reset-password-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.check-row input {
  width: auto !important;
  min-height: auto !important;
}

.inline-admin-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.compact-list {
  gap: 8px;
}

.compact-record {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.record-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.form-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ghost-button,
.mini-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 800;
}

.ghost-button,
.mini-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.danger-button {
  color: var(--white);
  border: 1px solid var(--red-dark);
  background: var(--red-dark);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.admin-stats article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(36, 33, 42, 0.98), rgba(36, 33, 42, 0.86));
  color: var(--white);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.12);
}

.admin-stats span,
.admin-stats strong {
  display: block;
}

.admin-stats span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.admin-stats strong {
  margin-top: 0;
  font-size: 2rem;
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.admin-workbench-panel {
  position: relative;
  overflow: hidden;
}

.admin-workbench-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--red);
}

.admin-workbench-main {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.08), rgba(255, 255, 255, 0.96) 42%),
    rgba(255, 255, 255, 0.96);
}

.admin-today-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-today-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 14px;
  background: #fffdf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.admin-today-grid h4 {
  margin: 0;
  font-size: 1rem;
}

.admin-workbench-list {
  display: grid;
  gap: 10px;
}

.admin-workbench-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fffdf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.admin-workbench-list .empty-state {
  padding: 12px;
  font-size: 0.86rem;
}

.admin-workbench-row strong,
.admin-workbench-row small {
  display: block;
}

.admin-workbench-row strong {
  overflow-wrap: anywhere;
}

.admin-workbench-row small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-workbench-row .mini-button {
  min-height: 32px;
  padding: 0 10px;
}

.analytics-page.is-active {
  display: grid;
  gap: 24px;
}

.analytics-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.07);
}

.analytics-header h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.analytics-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.analytics-controls select {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfaf8;
  font-weight: 800;
}

.analytics-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.analytics-stats article {
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.07);
}

.analytics-stats span,
.analytics-stats strong {
  display: block;
}

.analytics-stats span {
  color: var(--muted);
  font-weight: 800;
}

.analytics-stats strong {
  margin-top: 10px;
  font-size: 2.2rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.analytics-panel {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.07);
}

.analytics-wide {
  grid-row: span 2;
}

.analytics-bars {
  display: grid;
  gap: 18px;
}

.analytics-bars.compact {
  gap: 14px;
}

.analytics-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(160px, 1fr) 42px;
  gap: 14px;
  align-items: center;
}

.analytics-row-label {
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.analytics-track {
  height: 30px;
  overflow: hidden;
  background: #e4e5e8;
  border-radius: 6px;
}

.analytics-track span {
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 28px;
  background: linear-gradient(90deg, var(--red), #24212a);
  border-radius: inherit;
}

.analytics-track strong {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 8px;
  color: var(--white);
  background: rgba(36, 33, 42, 0.62);
  border-radius: 999px;
  font-size: 0.82rem;
}

.analytics-count {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.turnstile-wrap {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: flex-start;
}

.turnstile-wrap .form-note {
  margin: 0;
}

.cloud-save-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(36, 33, 42, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(36, 33, 42, 0.16);
  color: var(--ink);
  font-size: 0.9rem;
  padding: 12px 14px;
}

.cloud-save-status.success {
  border-color: rgba(51, 132, 82, 0.35);
}

.cloud-save-status.error {
  border-color: rgba(170, 58, 58, 0.38);
}

.cloud-save-status.is-hidden {
  display: none;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  background: var(--white);
}

.admin-booking-board {
  display: grid;
  gap: 18px;
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: start;
}

.availability-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.availability-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.22);
  border-radius: 8px;
}

.availability-heading h4 {
  margin: 2px 0 0;
  font-size: 1rem;
}

.availability-list {
  display: grid;
  gap: 10px;
}

.availability-conflict-card,
.availability-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fffdf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 19, 23, 0.04);
}

.availability-conflict-card {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff5f2;
}

.availability-conflict-card > strong,
.availability-card header strong,
.availability-date-row strong {
  display: block;
}

.availability-conflict-card span,
.availability-conflict-card small,
.availability-card header small,
.availability-date-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.availability-card header,
.availability-date-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.availability-date-list {
  display: grid;
  gap: 8px;
}

.availability-date-row {
  padding: 10px 0;
  border-top: 1px solid rgba(36, 33, 42, 0.08);
}

.availability-date-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.booking-date-presets {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.booking-date-presets button {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(36, 33, 42, 0.12);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.booking-date-presets button.is-active {
  border-color: rgba(255, 176, 0, 0.6);
  background: rgba(255, 176, 0, 0.18);
}

.admin-booking-day {
  display: grid;
  gap: 12px;
}

.admin-booking-day-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 176, 0, 0.34);
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.14), rgba(255, 255, 255, 0.82));
}

.admin-booking-day-heading h4 {
  margin: 2px 0 0;
  font-size: 1.18rem;
}

.admin-booking-cards {
  display: grid;
  gap: 14px;
}

.admin-booking-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.06);
}

.admin-booking-card-head,
.admin-booking-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-booking-card-head strong {
  display: block;
  font-size: 1.05rem;
}

.admin-booking-summary-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(150px, 0.75fr));
  gap: 10px;
}

.admin-booking-summary-grid section,
.admin-booking-simple-section {
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.admin-booking-summary-grid section > span,
.admin-booking-simple-title span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-booking-summary-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.admin-booking-summary-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-booking-summary-grid .is-total {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.admin-booking-summary-grid .is-total span,
.admin-booking-summary-grid .is-total small {
  color: rgba(255, 255, 255, 0.68);
}

.admin-booking-simple-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 12px;
}

.admin-booking-simple-section {
  display: grid;
  gap: 10px;
}

.admin-booking-simple-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-booking-simple-title b {
  white-space: nowrap;
}

.admin-equipment-summary-list,
.admin-charge-compact {
  display: grid;
  gap: 8px;
}

.admin-equipment-summary-list > div,
.admin-charge-compact > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid rgba(36, 33, 42, 0.08);
}

.admin-equipment-summary-list > .admin-accessory-summary {
  padding: 10px;
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.24);
  border-radius: 8px;
}

.admin-equipment-summary-list > div:first-child,
.admin-charge-compact > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-equipment-summary-list strong,
.admin-equipment-summary-list small,
.admin-charge-compact span,
.admin-charge-compact small,
.admin-charge-compact b {
  display: block;
}

.admin-equipment-summary-list small,
.admin-charge-compact small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.4;
}

.admin-charge-compact b {
  white-space: nowrap;
}

.admin-charge-compact .is-discount b {
  color: #338452;
}

.admin-charge-compact .is-total {
  margin-top: 4px;
  padding: 11px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
}

.admin-charge-compact .is-total small {
  color: rgba(255, 255, 255, 0.68);
}

.admin-booking-note-compact {
  border-radius: 8px;
}

.admin-booking-card-head small,
.admin-booking-customer small,
.admin-charge-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.admin-contact-actions .mini-button {
  min-height: 30px;
  padding: 0 9px;
  font-size: 0.76rem;
}

.admin-booking-customer,
.admin-booking-line,
.admin-booking-items,
.admin-booking-charges,
.admin-booking-note {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(36, 33, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.admin-booking-customer span,
.admin-booking-line span,
.admin-booking-items > span,
.admin-booking-charges > span,
.admin-booking-note span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-booking-line strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.admin-booking-item-group {
  display: grid;
  gap: 6px;
}

.admin-booking-item-group b {
  color: var(--ink);
  font-size: 0.9rem;
}

.admin-booking-item-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-booking-item-group li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  background: rgba(255, 176, 0, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-charge-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(36, 33, 42, 0.08);
}

.admin-charge-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}

.admin-charge-row b {
  color: var(--ink);
  white-space: nowrap;
}

.admin-charge-row.is-discount b {
  color: #338452;
}

.admin-charge-estimate {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 33, 42, 0.16);
  background: rgba(244, 240, 233, 0.46);
  padding-left: 10px;
  padding-right: 10px;
}

.admin-booking-note p,
.muted-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.film-retention-notice,
.film-retention-inline {
  margin: 0;
  color: #7a4a14;
  background: #fff6df;
  border: 1px solid rgba(255, 176, 0, 0.32);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.55;
}

.film-retention-notice {
  padding: 10px 12px;
}

.film-retention-inline {
  display: block;
  margin-top: 8px;
  padding: 8px 10px;
}

.admin-booking-actions {
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 2px;
}

.admin-conflict-warning {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(180, 65, 24, 0.24);
  background: rgba(255, 232, 214, 0.82);
  color: #7a2d16;
}

.admin-conflict-warning strong {
  font-size: 0.92rem;
}

.admin-conflict-warning span {
  color: #7a2d16;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.admin-conflict-warning ul {
  display: grid;
  gap: 5px;
  margin: 2px 0 0;
  padding-left: 18px;
  color: #7a2d16;
  font-size: 0.84rem;
  line-height: 1.45;
}

.admin-customer-summary,
.quick-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-customer-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(36, 33, 42, 0.1);
  background: rgba(244, 240, 233, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.quick-status-actions .mini-button,
.quick-status-actions .danger-button {
  min-height: 34px;
  padding: 0 10px;
}

.quick-status-actions button:disabled {
  cursor: default;
  opacity: 0.46;
}

.notification-log {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.notification-log h4 {
  margin: 0;
  font-size: 1rem;
}

.notification-row {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.notification-row .status-pill {
  width: fit-content;
}

.notify-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 8px 8px 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.notify-row input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--red);
}

.notify-row span,
.notify-row strong,
.notify-row small {
  display: block;
}

.notify-row small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.notify-row-panel {
  width: 100%;
  align-items: flex-start;
  margin: 0;
  padding: 12px;
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.24);
  border-radius: 8px;
}

.notify-row-inline {
  min-height: 34px;
  padding: 0 10px;
  background: #fbfaf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 999px;
}

.error-text {
  color: #b42318;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: transparent;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #4e535b;
  background: #f3eee5;
  font-size: 0.82rem;
  text-transform: uppercase;
}

tbody tr {
  transition: background 0.16s ease;
}

tbody tr:hover {
  background: #fff9ec;
}

td {
  color: var(--ink);
}

td small,
.record-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-panel select.status-select {
  min-height: 36px;
  padding: 0 10px;
  background: var(--white);
}

.record-list {
  display: grid;
  gap: 12px;
}

.record-card {
  padding: 16px;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 8px 20px rgba(17, 19, 23, 0.04);
}

.record-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.record-card strong {
  display: block;
}

.record-card p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-member-card {
  display: grid;
  gap: 12px;
}

.admin-member-card header {
  margin-bottom: 0;
}

.admin-member-card header small,
.admin-member-contact small,
.admin-member-meta small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-member-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.admin-member-stats span {
  min-width: 0;
  padding: 10px;
  background: #fbfaf8;
  border: 1px solid rgba(36, 33, 42, 0.08);
  border-radius: 8px;
}

.admin-member-stats b,
.admin-member-stats small {
  display: block;
}

.admin-member-stats b {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.admin-member-stats small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.admin-member-meta,
.admin-member-note {
  padding: 11px 12px;
  background: rgba(255, 176, 0, 0.08);
  border: 1px solid rgba(255, 176, 0, 0.18);
  border-radius: 8px;
}

.admin-member-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-member-note p {
  margin: 0;
  color: var(--ink);
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fbfaf8;
}

@media (max-width: 1100px) {
  .equipment-grid,
  .process-grid,
  .admin-stats,
  .analytics-stats,
  .service-grid,
  .promo-grid,
  .social-feed,
  .package-grid,
  .inspiration-grid,
  .retail-list,
  .location-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-layout,
  .member-dashboard,
  .admin-workbench,
  .availability-layout,
  .admin-grid,
  .admin-grid.lower,
  .admin-page[data-admin-page="members"].is-active,
  .film-admin-grid,
  .login-register-layout,
  .retail-layout,
  .promo-showcase,
  .social-layout,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .film-summary-grid,
  .film-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-member-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-booking-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-booking-simple-columns {
    grid-template-columns: 1fr;
  }

  .admin-workbench-main {
    grid-row: auto;
  }

  .login-pane {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }

  .admin-page[data-admin-page="members"].is-active > .admin-panel:first-child {
    grid-column: auto;
  }

  .member-dashboard {
    grid-template-areas: none;
  }

  .member-profile-card,
  .member-edit-card,
  .member-film-card,
  .member-shop-card,
  .member-records-card {
    grid-area: auto;
  }

  .member-profile-card {
    order: 1;
  }

  .member-records-card {
    order: 2;
  }

  .member-shop-card {
    order: 3;
  }

  .member-film-card {
    order: 4;
  }

  .member-edit-card {
    order: 5;
  }

}

@media (max-width: 720px) {
  .social-feed {
    grid-template-columns: 1fr;
  }

  .catalog-cart-widget {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    justify-content: stretch;
  }

  .catalog-cart-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .catalog-cart-panel {
    width: 100%;
  }

  .admin-panel table,
  .admin-panel thead,
  .admin-panel tbody,
  .admin-panel tr,
  .admin-panel th,
  .admin-panel td {
    display: block;
  }

  .admin-panel thead {
    display: none;
  }

  .admin-panel tr {
    margin: 0 0 12px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .admin-panel td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-panel td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(36, 33, 42, 0.97);
  }

  .brand {
    min-width: auto;
    width: 100%;
  }

  .brand-logo {
    width: 66px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .nav-links {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 8px;
    padding: 1px 0 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .nav-links a.is-active {
    color: var(--ink);
    background: var(--red);
    border-color: var(--red);
    text-decoration: none;
  }

  .view-switcher {
    order: 2;
  }

  .header-tools {
    order: 3;
    display: grid;
    grid-template-columns: minmax(82px, 0.32fr) minmax(0, 1fr);
    width: 100%;
    margin-left: 0;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 640px;
    padding-top: 62px;
    padding-bottom: 56px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 13, 15, 0.96) 0%, rgba(12, 13, 15, 0.8) 48%, rgba(12, 13, 15, 0.22) 100%),
      linear-gradient(90deg, rgba(12, 13, 15, 0.7), rgba(12, 13, 15, 0.1));
  }

  .intro-band,
  .catalog-layout,
  .booking-layout,
  .booking-process .section-heading,
  .package-grid,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
    max-height: 72vh;
    overflow-y: auto;
  }
}

@media (max-width: 920px) {
  .gear-detail-dialog {
    max-height: calc(100dvh - 18px);
    overflow: auto;
  }

  .gear-detail-body {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .gear-detail-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .gear-detail-content {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .catalog-section,
  .booking-section,
  .process-section,
  .film-section,
  .promo-section,
  .inspiration-section,
  .retail-section,
  .location-section,
  .member-section,
  .admin-section {
    padding: 38px 14px;
  }

  .admin-section > .section-heading {
    margin-bottom: 16px;
  }

  .admin-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin-right: -14px;
    margin-left: -14px;
    padding: 10px 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .admin-tabs::-webkit-scrollbar {
    display: none;
  }

  .admin-tab-group {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .admin-tab {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .admin-workbench-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-workbench-row > .booking-status,
  .admin-workbench-row > .status-pill,
  .admin-workbench-row > .mini-button {
    width: fit-content;
  }

  .admin-member-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-booking-summary-grid,
  .availability-card header,
  .availability-date-row,
  .admin-equipment-summary-list > div,
  .admin-charge-compact > div,
  .adjustment-option-list,
  .adjustment-selected-row {
    grid-template-columns: 1fr;
  }

  .admin-charge-compact b {
    white-space: normal;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .film-summary-grid,
  .film-filter-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding: 52px 16px 42px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions,
  .hero-actions a,
  .retail-feature .primary-button,
  .form-submit {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 13px 14px;
  }

  .field-row,
  .inline-field,
  .inline-admin-form,
  .process-grid,
  .confirmation-time-grid,
  .confirmation-contact-grid,
  .admin-stats,
  .admin-today-grid,
  .analytics-stats,
  .service-grid,
  .promo-grid,
  .retail-list,
  .location-layout,
  .member-benefits {
    grid-template-columns: 1fr;
  }

  .equipment-toolbar,
  .contact-section,
  .card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-layout {
    gap: 18px;
  }

  .catalog-helper-note {
    display: grid;
    margin: -4px 0 18px;
    padding: 13px;
  }

  .catalog-active-filters {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .catalog-active-filters > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalog-active-filters > div::-webkit-scrollbar {
    display: none;
  }

  .catalog-filter-pill {
    flex: 0 0 auto;
  }

  .filter-panel {
    gap: 12px;
    padding: 14px;
  }

  .filter-block {
    gap: 9px;
    padding: 12px;
  }

  .filter-block p {
    font-size: 0.72rem;
  }

  .scene-filter-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 3px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .scene-filter-list::-webkit-scrollbar {
    display: none;
  }

  .scene-filter-list button {
    flex: 0 0 142px;
    min-height: 54px;
  }

  .category-tabs {
    display: grid;
    gap: 9px;
  }

  .category-filter-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 38px;
    padding: 9px 12px;
  }

  .category-filter-copy strong {
    font-size: 0.88rem;
  }

  .category-filter-copy em {
    font-size: 0.68rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .catalog-clear-filter {
    min-height: 36px;
  }

  .brand-chip-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .brand-chip-list::-webkit-scrollbar {
    display: none;
  }

  .brand-chip-list button {
    flex: 0 0 auto;
  }

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

  .equipment-card {
    gap: 8px;
    box-shadow: 0 10px 22px rgba(17, 19, 23, 0.07);
  }

  .equipment-card header,
  .equipment-card p,
  .equipment-card .spec-list,
  .equipment-card .card-footer {
    margin-left: 9px;
    margin-right: 9px;
  }

  .equipment-card h3 {
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .equipment-card p,
  .spec-list {
    display: none;
  }

  .tag {
    min-height: 22px;
    padding: 0 6px;
    font-size: 0.66rem;
  }

  .price {
    font-size: 1rem;
  }

  .add-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .social-layout {
    gap: 12px;
  }

  .social-feature {
    min-height: 320px;
  }

  .social-tile {
    min-height: 230px;
  }

  .social-card {
    min-height: 210px;
  }

  .social-tile-content,
  .social-card .social-tile-content {
    padding: 18px;
  }

  .social-tile-content h3,
  .social-card h3 {
    font-size: 1.35rem;
  }

  .booking-process {
    padding: 18px;
  }

  .member-booking-card summary,
  .member-current-booking,
  .member-charge-row {
    grid-template-columns: 1fr;
  }

  .member-booking-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .member-booking-filters::-webkit-scrollbar {
    display: none;
  }

  .member-booking-filters button {
    flex: 0 0 auto;
  }

  .member-booking-card summary {
    gap: 10px;
  }

  .member-booking-card summary > .booking-status,
  .member-booking-card summary > strong,
  .member-booking-card summary > em {
    width: fit-content;
  }

  .member-profile-summary span {
    flex: 1 1 100%;
  }

  .member-film-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 6px;
  }

  .booking-trust-strip {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
  }

  .booking-trust-strip span {
    min-height: 36px;
    border-radius: 8px;
    line-height: 1.4;
  }

  .package-section {
    margin-top: 36px;
    padding-top: 30px;
  }

  .package-card-image {
    min-height: 190px;
  }

  .package-meta,
  .package-actions {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 0;
    padding: 18px;
  }

  .booking-form,
  .cart-panel {
    padding: 18px;
  }

  .confirm-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 28px);
    padding: 20px 16px;
  }

  .gear-detail-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 18px);
    padding: 0;
  }

  .admin-booking-drawer {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 18px);
    margin: auto;
  }

  .admin-booking-drawer-body {
    padding: 22px 14px;
  }

  .gear-detail-body {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding: 0;
  }

  .gear-detail-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    box-shadow: none;
  }

  .gear-detail-content {
    gap: 10px;
    padding: 18px 15px;
  }

  .gear-detail-title-row h2 {
    font-size: 1.7rem;
  }

  .gear-detail-actions,
  .gear-detail-actions .primary-button,
  .gear-detail-actions .secondary-button {
    width: 100%;
  }

  .equipment-toolbar select,
  .add-button,
  .contact-section a,
  .map-actions a,
  .social-actions a,
  .form-actions .primary-button,
  .form-actions .ghost-button {
    width: 100%;
  }

  .panel-heading,
  .record-card header,
  .member-login-prompt,
  .login-options,
  .reset-password-actions,
  .analytics-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-heading > input,
  .panel-heading > select,
  .panel-heading > button,
  .panel-heading > .booking-date-presets {
    width: 100%;
  }

  .booking-date-presets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-date-presets button {
    width: 100%;
  }

  .admin-panel {
    padding: 18px;
  }

  .reset-password-actions {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .auth-mode-tabs {
    grid-template-columns: 1fr;
  }

  .login-dialog {
    padding: 24px;
  }

  .login-title {
    grid-template-columns: 5px 1fr;
    gap: 16px;
  }

  .login-title .status-pill {
    grid-column: 2;
  }

  .login-submit,
  .register-submit {
    width: 100%;
  }

  .analytics-controls,
  .analytics-controls select,
  .analytics-controls button {
    width: 100%;
  }

  .analytics-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .analytics-count {
    text-align: left;
  }

  .member-login-prompt .primary-button,
  .header-action,
  .language-picker,
  .language-picker select {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 590px;
  }

  h1 {
    font-size: 2.2rem;
  }
}
