/* Pesmera Event Rentals - main stylesheet */
:root {
  --color-pink: #ff1f8e;
  --color-orange: #ff6b1a;
  --color-gold: #ffd700;
  --color-green: #2ecc40;
  --color-blue: #1e90ff;
  --color-purple: #8b45c7;
  --color-navy: #0d1b3e;
  --color-white: #ffffff;
  --color-ink: #18213d;
  --color-muted: #65718c;
  --color-surface: #f7f8fc;
  --color-surface-strong: #eef3fb;
  --color-border: #dfe5f2;
  --font-display: "Fredoka One", "Arial Rounded MT Bold", Arial, sans-serif;
  --font-body: "Nunito", Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(13, 27, 62, 0.08), 0 1px 2px rgba(13, 27, 62, 0.04);
  --shadow-md: 0 8px 22px rgba(13, 27, 62, 0.12);
  --shadow-lg: 0 18px 42px rgba(13, 27, 62, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-pink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: 0;
}

h1 {
  font-size: 3.35rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  line-height: 1.7;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--color-surface);
}

.section--navy {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.82);
}

.section--navy h2,
.section--navy h3 {
  color: var(--color-white);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top);
}

.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  display: flex;
  align-items: center;
  color: var(--color-navy);
  text-decoration: none;
  min-width: 0;
}

.nav__logo {
  width: auto;
  height: 62px;
  max-width: 170px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 8px 0;
  color: var(--color-navy);
  border-bottom: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-pink);
  border-bottom-color: var(--color-pink);
}

.nav__cta {
  flex: 0 0 auto;
}

.nav__hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.nav__hamburger span {
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.98rem;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--primary {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #df006d;
  border-color: #df006d;
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-white);
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--light {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
}

.btn--lg {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn--sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.w-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  height: clamp(440px, calc(100svh - 132px), 640px);
  display: flex;
  align-items: center;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.94) 0%, rgba(13, 27, 62, 0.78) 56%, rgba(13, 27, 62, 0.45) 100%),
    radial-gradient(circle at 85% 22%, rgba(255, 215, 0, 0.28), transparent 28%),
    var(--color-navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/pesmera-icon.webp") right 8% center / min(760px, 52vw) auto no-repeat;
  opacity: 0.28;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 16px;
  margin-bottom: 20px;
  border-radius: var(--radius-pill);
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero__title {
  color: var(--color-white);
  font-size: 4rem;
  max-width: 720px;
  margin-bottom: 18px;
}

.hero__title span {
  color: var(--color-gold);
}

.hero__subtitle {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero__service-area {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-pink);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-header__title {
  margin-bottom: 12px;
}

.section-header__subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card__body {
  padding: 24px;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card__text {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-pink);
}

.equipment-card {
  display: flex;
  flex-direction: column;
}

.equipment-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 31, 142, 0.12), rgba(30, 144, 255, 0.12)),
    var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.equipment-card__media img {
  width: min(72%, 260px);
  max-height: 82%;
  object-fit: contain;
}

.equipment-card__media--pink {
  background: linear-gradient(135deg, #fff0f7 0%, #fff9dd 100%);
}

.equipment-card__media--blue {
  background: linear-gradient(135deg, #eaf5ff 0%, #fff9dd 100%);
}

.equipment-card__media--green {
  background: linear-gradient(135deg, #efffed 0%, #eaf5ff 100%);
}

.equipment-card__media--gold {
  background: linear-gradient(135deg, #fff9dd 0%, #fff0f7 100%);
}

.equipment-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: #eaf5ff;
  border: 1px solid var(--color-blue);
  color: #155da4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature {
  height: 100%;
  border-top: 4px solid var(--feature-color, var(--color-pink));
}

.feature__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-surface-strong);
  color: var(--feature-color, var(--color-pink));
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

.service-list li {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-gold);
  font-weight: 900;
}

.callout {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.callout--gold {
  background: #fff8e1;
  border: 2px solid var(--color-gold);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-tab {
  min-height: 42px;
  padding: 9px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 900;
}

.filter-tab.active,
.filter-tab:hover {
  border-color: var(--color-pink);
  background: #fff0f7;
  color: var(--color-pink);
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.required {
  color: var(--color-pink);
}

.form-control {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(255, 31, 142, 0.14);
}

.form-control.error {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-error {
  margin-top: 8px;
  color: #b91c1c;
  font-size: 0.88rem;
  font-weight: 900;
}

.form-hint {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.booking-sidebar {
  position: sticky;
  top: 96px;
}

.summary-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.summary-card__header {
  padding: 18px 22px;
  background: var(--color-navy);
}

.summary-card__header h3 {
  color: var(--color-white);
  font-size: 1.08rem;
}

.summary-card__body {
  padding: 20px 22px;
}

.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.summary-total {
  padding-top: 16px;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.summary-total__amount {
  color: var(--color-pink);
}

.equip-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.package-selector {
  display: grid;
  gap: 12px;
}

.package-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-navy);
  text-align: left;
}

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

.package-option small {
  margin-top: 4px;
  color: var(--color-muted);
}

.package-option.selected,
.package-option:hover {
  border-color: var(--color-pink);
  background: #fff0f7;
}

.equip-card {
  min-height: 202px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.equip-card.selected {
  border-color: var(--color-pink);
  background: #fff0f7;
}

.equip-card.disabled {
  opacity: 0.58;
}

.equip-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.equip-card__thumb {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.equip-card__name {
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.2;
}

.equip-card__rate {
  color: var(--color-pink);
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.equip-card__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.qty-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 900;
  font-size: 1.12rem;
}

.qty-btn:hover:not(:disabled) {
  background: var(--color-navy);
  color: var(--color-white);
}

.qty-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.qty-display {
  width: 28px;
  text-align: center;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 1.08rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-category {
  margin: 38px 0 14px;
  font-size: 1.35rem;
}

.faq-category:first-child {
  margin-top: 0;
}

details {
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--color-navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--color-pink);
  font-size: 1.35rem;
  font-weight: 900;
}

details[open] summary {
  border-bottom: 1px solid var(--color-border);
}

details[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 18px 22px;
  background: var(--color-surface);
  color: var(--color-muted);
}

.faq-answer ul {
  padding-left: 20px;
  margin-top: 8px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--color-navy);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-surface-strong);
  color: var(--color-pink);
  font-family: var(--font-display);
}

.contact-label {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer {
  margin-top: auto;
  padding: 46px 0 calc(28px + env(safe-area-inset-bottom));
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.74);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr;
  gap: 42px;
  margin-bottom: 30px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer__brand-name,
.footer__heading {
  font-family: var(--font-display);
  color: var(--color-white);
}

.footer__brand-name {
  font-size: 1.32rem;
}

.footer__tagline {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.footer__desc {
  max-width: 520px;
  font-size: 0.92rem;
}

.footer__heading {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.footer__links {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer__links a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-decoration: none;
}

.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.84rem;
}

.hidden {
  display: none !important;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-muted);
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 24px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .grid--4,
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 48px 0;
  }

  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 18px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 11px 4px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    height: clamp(430px, calc(100svh - 126px), 580px);
  }

  .hero::before {
    background-position: center 72%;
    background-size: 680px auto;
    opacity: 0.2;
  }

  .hero__title {
    font-size: 2.9rem;
  }

  .hero__subtitle {
    font-size: 1.02rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .nav__logo {
    height: 52px;
    max-width: 142px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    white-space: normal;
  }

  .equipment-card__footer,
  .summary-item,
  .summary-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .card__body {
    padding: 20px;
  }
}

/* ── Availability date picker (products page) ───────────────────────────────────────────── */
.availability-picker {
  margin-bottom: 1.5rem;
}

.availability-picker__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.availability-picker__row .form-control {
  max-width: 200px;
}

/* ── Availability badge variants ────────────────────────────────────────────────────── */
.badge--available {
  background: #d1fae5;
  color: #065f46;
  border-color: #6ee7b7;
}

.badge--booked {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}

.badge--unavailable {
  background: #fef3c7;
  color: #92400e;
  border-color: #fcd34d;
}

/* ── Booking form stepper ──────────────────────────────────────────────────────────── */
.stepper {
  display: flex;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.stepper__step {
  flex: 1;
  padding: 11px 8px;
  text-align: center;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 900;
  border-right: 1px solid var(--color-border);
}

.stepper__step:last-child {
  border-right: none;
}

.stepper__step.active {
  background: var(--color-navy);
  color: var(--color-white);
}

.stepper__step.done {
  background: #d1fae5;
  color: #065f46;
}

/* ── Booking button row ─────────────────────────────────────────────────────────────── */
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 28px;
}

/* ── Confirmation page ─────────────────────────────────────────────────────────────── */
.confirm-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d1fae5;
  color: #065f46;
  font-size: 2rem;
}

.confirm-id {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  font-size: 0.82rem;
  color: var(--color-muted);
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* ── Admin layout ────────────────────────────────────────────────────────────────────── */
.admin-header {
  background: var(--color-navy);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Modal ───────────────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

/* ── Admin table ──────────────────────────────────────────────────────────────────── */
.admin-table th,
.admin-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.admin-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.admin-table td img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ── Image upload zone ───────────────────────────────────────────────────────────────── */
.image-upload-zone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.image-upload-zone:hover {
  border-color: var(--color-pink);
}

.image-upload-zone img {
  max-height: 120px;
  border-radius: var(--radius-sm);
  margin: 10px auto 0;
}

/* ── Booking card image ───────────────────────────────────────────────────────────────── */
.equip-card__img {
  width: calc(100% + 36px);
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: block;
  margin: -18px -18px 10px;
}

/* ── Admin tabs ────────────────────────────────────────────────────────────────────────── */
.tab-btn {
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active {
  color: #fff;
  border-bottom-color: #ff1f8e;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
