/* Shared card language */
.court-search,
.card,
.kr-card,
.panel,
.surface-card,
.venue-card,
.court-card,
.open-play-card,
.booking-card,
.owner-card,
.auth-card {
  background: var(--pm-card);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow-sm);
}

/* Buttons */
button,
.button,
.btn,
.kr-button {
  border-radius: 12px;
  font-weight: 700;
}

button.primary,
.button.primary,
.btn-primary,
.kr-button-primary,
[data-variant="primary"] {
  border-color: var(--pm-lime);
  background: var(--pm-lime);
  color: #0d2609;
  box-shadow: 0 8px 22px rgba(167,220,22,.24);
}

button.primary:hover,
.button.primary:hover,
.btn-primary:hover,
.kr-button-primary:hover,
[data-variant="primary"]:hover {
  border-color: var(--pm-lime-2);
  background: var(--pm-lime-2);
  transform: translateY(-1px);
}

.btn-secondary,
.kr-button-secondary,
button.secondary {
  border: 1px solid var(--pm-navy);
  background: #fff;
  color: var(--pm-navy);
}

input,
select,
textarea {
  border-color: var(--pm-border);
  border-radius: 12px;
  color: var(--pm-text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pm-lime-2);
  box-shadow: 0 0 0 4px rgba(167,220,22,.14);
  outline: 0;
}

.find-court-search,
.hero-search,
.landing-search,
.search-courts-panel {
  background: #fff;
  color: var(--pm-text);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.court-search button,
.find-court-search button,
.hero-search button,
.landing-search button,
.search-courts-panel .search-action {
  background: var(--pm-lime);
  color: #102408;
  border-color: var(--pm-lime);
}

.filter-chip,
.quick-filter,
.search-chip,
.skill-chip,
.category-chip {
  background: #fff;
  border: 1px solid var(--pm-border);
  color: var(--pm-navy);
  border-radius: 999px;
}

.filter-chip.active,
.quick-filter.active,
.search-chip.active,
.skill-chip.active,
.category-chip.active {
  background: var(--pm-navy);
  border-color: var(--pm-navy);
  color: #fff;
}

/* -----------------------------------------------------------
   Suggested courts / venue cards
   ----------------------------------------------------------- */
.suggested-courts,
.venue-results,
.courts-section,
[data-section="suggested-courts"] {
  color: var(--pm-text);
}

.venue-grid,
.court-grid,
.suggested-courts-grid {
  gap: 18px;
}

.venue-card,
.court-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.venue-card:hover,
.court-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167,220,22,.58);
  box-shadow: var(--pm-shadow);
}

.venue-card img,
.court-card img,
.venue-card .cover,
.court-card .cover {
  object-fit: cover;
  background: #dbe6ee;
}

.venue-card .badge,
.court-card .badge,
.badge.indoor,
.badge.outdoor {
  color: #fff;
  background: var(--pm-teal);
  border-radius: 999px;
}

.venue-card .price,
.court-card .price,
.price-accent {
  color: #76ad05;
  font-weight: 800;
}

/* -----------------------------------------------------------
   Open Play
   ----------------------------------------------------------- */
.open-play-strip,
.open-play-feature,
.join-open-play-banner,
[data-section="open-play-feature"] {
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 18%, rgba(167,220,22,.18) 0 2px, transparent 3px) 0 0/16px 16px,
    var(--kr-brand-gradient);
  box-shadow: var(--pm-shadow);
}

.open-play-strip .open-play-card,
.open-play-feature .open-play-card,
.join-open-play-banner .open-play-card {
  background: #fff;
  color: var(--pm-text);
  border-color: rgba(255,255,255,.26);
}

.open-play-card .skill,
.skill-badge,
.level-badge {
  color: #087d76;
  background: #dcf6f3;
  border-radius: 999px;
}

.open-play-card .price,
.open-play-price {
  color: #76ad05;
  font-weight: 800;
}

.open-play-card .join,
.open-play-card .join-now,
.join-open-play,
.view-open-plays {
  background: var(--pm-lime);
  color: #102408;
  border-color: var(--pm-lime);
}

/* -----------------------------------------------------------
   About / feature cards
   ----------------------------------------------------------- */
.about-picklemania,
.about-section,
[data-section="about"] {
  color: var(--pm-text);
}

.about-feature,
.feature-card,
.value-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(4,27,58,.05);
}

.about-feature .icon,
.feature-card .icon,
.value-card .icon {
  color: var(--pm-teal);
  background: #e9f8f6;
}

/* -----------------------------------------------------------
   Find-a-court results / venue details / booking matrix
   ----------------------------------------------------------- */
.find-court-page,
.venue-page,
.booking-page,
.court-booking-page {
  background: var(--pm-bg);
}

.venue-hero,
.booking-venue-hero {
  color: #fff;
  background: var(--kr-brand-gradient);
  border-radius: 0 0 var(--pm-radius-lg) var(--pm-radius-lg);
}

.date-picker .selected,
.date-strip .selected,
.schedule-grid .selected,
.court-slot.selected,
.time-slot.selected {
  background: var(--pm-lime);
  border-color: var(--pm-lime-2);
  color: #14310a;
  box-shadow: 0 8px 20px rgba(167,220,22,.22);
}

.schedule-grid .available,
.court-slot.available,
.time-slot.available {
  background: #f2f8e8;
  border-color: #deedc2;
  color: #3f7212;
}

.schedule-grid .booked,
.court-slot.booked,
.time-slot.booked {
  color: #8190a3;
  background: repeating-linear-gradient(-45deg,#f8fafc,#f8fafc 6px,#eef2f7 6px,#eef2f7 12px);
}

.booking-sticky,
.booking-summary-sticky,
.sticky-booking-bar {
  color: #fff;
  background: var(--kr-brand-gradient);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -10px 34px rgba(4,27,58,.20);
}

.booking-sticky .total,
.booking-summary-sticky .total,
.sticky-booking-bar .total,
.booking-sticky .price {
  color: var(--pm-lime);
}

/* -----------------------------------------------------------
   Player dashboard / My Bookings / Checkout
   ----------------------------------------------------------- */
.player-dashboard,
.my-bookings-page,
.checkout-page {
  background: var(--pm-bg);
}

.dashboard-hero,
.player-welcome,
.my-bookings-hero {
  color: #fff;
  background: var(--kr-brand-gradient);
  border-radius: 0 0 var(--pm-radius-lg) var(--pm-radius-lg);
}

.status-confirmed,
.status-paid,
.badge.confirmed,
.badge.paid {
  color: #3c720c;
  background: #eff8df;
  border-color: #d9ecb4;
}

.status-pending,
.badge.pending {
  color: #9a5b05;
  background: #fff4d9;
  border-color: #fde4a6;
}

.checkout-card,
.booking-summary-card,
.payment-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 18px;
  box-shadow: var(--pm-shadow-sm);
}

/* -----------------------------------------------------------
   Owner / staff experience
   ----------------------------------------------------------- */
.owner-portal,
.owner-dashboard,
.staff-dashboard {
  background: var(--pm-bg);
}

.owner-rail,
.rail,
.owner-sidebar,
.staff-sidebar,
aside.sidebar {
  color: var(--kr-sidebar-text);
  background: linear-gradient(180deg, var(--kr-sidebar), var(--kr-sidebar-2));
  border-color: var(--kr-sidebar-border);
}

.owner-rail a,
.rail a,
.owner-sidebar a,
.staff-sidebar a,
aside.sidebar a {
  color: var(--kr-sidebar-nav-text);
}

.owner-rail .active,
.rail .active,
.owner-sidebar .active,
.staff-sidebar .active,
aside.sidebar .active {
  color: #102408;
  background: var(--pm-lime);
  box-shadow: var(--kr-sidebar-active-shadow);
}

.owner-dashboard .metric-card,
.staff-dashboard .metric-card,
.owner-dashboard .dashboard-card,
.owner-dashboard .report-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow-sm);
}

.owner-dashboard .metric-value,
.owner-dashboard .money,
.report-card .positive {
  color: #6fa508;
}

/* -----------------------------------------------------------
   Actual KRADPC auth classes visible in the extracted runtime
   ----------------------------------------------------------- */
.auth-page {
  background: linear-gradient(135deg,#f8fafc 0%,#eef5fb 100%);
}

.auth-brand {
  color: #fff;
  background:
    radial-gradient(circle at 80% 25%, rgba(167,220,22,.18), transparent 24%),
    var(--kr-brand-gradient);
}

.auth-brand h1 { color: #fff; }
.auth-brand > span,
.auth-head small { color: var(--pm-lime); }

.auth-card {
  border-color: rgba(15,39,72,.10);
  box-shadow: var(--pm-shadow-lg);
}

.auth-toggle,
.dp-auth-back {
  color: var(--pm-navy);
}

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */
.site-footer,
.public-footer,
.kradpc-footer,
footer.app-footer {
  color: #dbe7f4;
  background: linear-gradient(135deg, #03162f, #06264a);
  border-top: 1px solid rgba(255,255,255,.06);
}

.site-footer h3,
.site-footer h4,
.public-footer h3,
.public-footer h4,
.kradpc-footer h3,
.kradpc-footer h4,
footer.app-footer h3,
footer.app-footer h4 {
  color: #fff;
}

.site-footer a:hover,
.public-footer a:hover,
.kradpc-footer a:hover,
footer.app-footer a:hover {
  color: var(--pm-lime);
}

/* -----------------------------------------------------------
   Pickle Mania public marketplace components
   ----------------------------------------------------------- */
.pm-marketplace *,
.pm-marketplace *::before,
.pm-marketplace *::after {
  box-sizing: border-box;
}

.pm-marketplace button,
.pm-marketplace input {
  font: inherit;
}

.pm-marketplace button {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.pm-header-brand {
  justify-self: start;
}

.pm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  letter-spacing: -.04em;
}

.pm-brand-ball {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--pm-lime);
  font-size: 20px;
  background:
    radial-gradient(circle at 35% 30%, #e8ff79 0 3px, transparent 4px),
    radial-gradient(circle at 62% 28%, #5f8608 0 3px, transparent 4px),
    radial-gradient(circle at 70% 60%, #5f8608 0 3px, transparent 4px),
    var(--pm-lime);
  box-shadow: -8px 0 0 -5px rgba(167,220,22,.42);
}

.pm-brand-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-style: italic;
  font-weight: 950;
  font-size: 22px;
  line-height: 1;
}

.pm-brand-copy strong {
  color: var(--pm-navy);
}

.pm-brand-copy em {
  color: var(--pm-lime-2);
  font-style: inherit;
}

.pm-public-header nav button {
  position: relative;
  padding-block: 10px;
  color: var(--pm-navy);
  font-size: 14px;
  font-weight: 750;
}

.pm-public-header nav button::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 3px;
  border-radius: 999px;
  background: var(--pm-lime);
  transition: inset .18s ease;
}

.pm-public-header nav button:hover::after {
  right: 12%;
  left: 12%;
}

.pm-marketplace .pm-button,
.pm-mobile-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 23px;
  border: 1px solid var(--pm-navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.pm-marketplace .pm-button-lime {
  border-color: var(--pm-lime);
  color: #132906;
  background: var(--pm-lime);
}

.pm-marketplace .pm-button-lime:hover {
  border-color: var(--pm-lime-2);
  background: var(--pm-lime-2);
}

.pm-mobile-login {
  display: none;
  justify-self: end;
}

.pm-public-header-landing .pm-brand-copy strong,
.pm-public-header-landing nav button,
.pm-public-header-landing .pm-button-outline,
.pm-public-header-landing .pm-mobile-login {
  transition:
    color .24s ease,
    border-color .24s ease,
    background-color .24s ease;
}

.pm-public-header-landing.is-hero .pm-brand-copy strong,
.pm-public-header-landing.is-hero nav button,
.pm-public-header-landing.is-hero .pm-button-outline,
.pm-public-header-landing.is-hero .pm-mobile-login {
  color: #fff;
}

.pm-public-header-landing.is-hero .pm-button-outline,
.pm-public-header-landing.is-hero .pm-mobile-login {
  border-color: rgba(255, 255, 255, .88);
  background: rgba(4, 27, 58, .10);
}

.pm-public-header-landing.is-hero .pm-button-outline:hover,
.pm-public-header-landing.is-hero .pm-mobile-login:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.pm-kicker {
  margin-bottom: 8px;
  color: var(--pm-lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.pm-hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .96;
}

.pm-hero h1 strong {
  color: var(--pm-lime);
  font: inherit;
}

.pm-hero-copy > p {
  max-width: 600px;
  margin: 20px 0 24px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.55;
}

.pm-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(690px, 100%);
  padding: 7px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.26);
}

.pm-hero-search label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-left: 12px;
  color: var(--pm-navy);
  font-size: 18px;
}

.pm-hero-search input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--pm-navy);
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.pm-hero-search button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  color: #102408;
  background: var(--pm-lime);
  font-weight: 850;
}

.pm-hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.pm-hero-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
}

.pm-hero-perks span:first-letter {
  color: var(--pm-lime);
}

.pm-hero-perks b {
  font-weight: 650;
}

.pm-hero-ball {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  bottom: clamp(22px, 3vw, 38px);
  width: clamp(82px, 8vw, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, #567906 0 6px, transparent 7px),
    radial-gradient(circle at 64% 25%, #567906 0 6px, transparent 7px),
    radial-gradient(circle at 70% 57%, #567906 0 6px, transparent 7px),
    radial-gradient(circle at 42% 70%, #567906 0 6px, transparent 7px),
    linear-gradient(145deg, #e2ff59, var(--pm-lime));
  box-shadow: 0 24px 40px rgba(3,22,47,.28);
  transform: rotate(-12deg);
}

.pm-section-heading h2,
.pm-owner-copy h2,
.pm-how-heading h2 {
  margin: 0;
  color: var(--pm-navy);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.035em;
}

.pm-section-heading p,
.pm-owner-copy > p,
.pm-how-heading p {
  margin: 6px 0 0;
  color: var(--pm-muted);
  line-height: 1.55;
}

.pm-section-heading > button {
  padding: 10px 0;
  color: var(--pm-navy);
  font-size: 14px;
  font-weight: 850;
}

.pm-venue-card {
  overflow: hidden;
  border: 1px solid var(--pm-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--pm-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pm-venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pm-shadow);
}

.pm-venue-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.48;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 46%, rgba(255,255,255,.7) 47% 49%, transparent 50%),
    linear-gradient(140deg, #1a739e, #43a164 58%, #2c73bd 59%);
  background-position: center;
  background-size: cover;
}

.pm-venue-photo.has-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,27,58,.08), transparent 45%, rgba(4,27,58,.18));
}

.pm-venue-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pm-venue-tag {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(3,157,145,.92);
  font-size: 11px;
  font-weight: 800;
  text-transform: capitalize;
  backdrop-filter: blur(5px);
}

.pm-photo-placeholder {
  color: rgba(255,255,255,.9);
  font-size: 62px;
}

.pm-venue-body {
  padding: 16px;
}

.pm-venue-body h3,
.pm-play-copy h3,
.pm-how-grid h3 {
  margin: 0;
  color: var(--pm-navy);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.pm-venue-location {
  display: flex;
  gap: 7px;
  min-height: 36px;
  margin: 7px 0 11px;
  color: var(--pm-muted);
  font-size: 12px;
  line-height: 1.4;
}

.pm-venue-meta {
  display: grid;
  grid-template-columns: 1fr auto 34px;
  align-items: center;
  gap: 9px;
  color: var(--pm-muted);
  font-size: 12px;
}

.pm-venue-meta strong {
  color: #79ad0b;
  font-size: 17px;
}

.pm-venue-meta small {
  font-size: 10px;
  font-weight: 650;
}

.pm-venue-meta button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--pm-navy);
  font-size: 24px;
  line-height: 1;
}

.pm-loading-grid span {
  display: block;
  min-height: 290px;
  border-radius: 17px;
  background: linear-gradient(100deg, #eef2f5 20%, #fafbfc 35%, #eef2f5 50%) 0 0 / 220% 100%;
  animation: pm-shimmer 1.25s linear infinite;
}

@keyframes pm-shimmer {
  to { background-position: -220% 0; }
}

.pm-empty-state {
  padding: 36px;
  border: 1px dashed var(--pm-border);
  border-radius: 16px;
  color: var(--pm-muted);
  text-align: center;
  background: var(--pm-bg);
}

.pm-calendar-art {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--pm-navy);
  background: var(--pm-lime);
  font-size: 34px;
  transform: rotate(-6deg);
}

.pm-play-card {
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--pm-border);
  border-radius: 20px;
  color: var(--pm-navy);
  background: #fff;
  box-shadow: var(--pm-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pm-play-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pm-shadow);
}

.pm-play-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4,27,58,.06), rgba(4,27,58,.24)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255,255,255,.28) 55px 57px),
    repeating-linear-gradient(0deg, transparent 0 66px, rgba(255,255,255,.24) 67px 69px),
    linear-gradient(145deg, #8bc8e8 0 35%, #2e76bc 36% 63%, #47a05c 64%);
}

.pm-play-photo.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,27,58,.08), transparent 50%, rgba(4,27,58,.28));
}

.pm-play-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-play-photo-mark {
  color: rgba(255,255,255,.9);
  font-size: 70px;
}

.pm-play-date {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 62px;
  padding: 9px 8px;
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 22px rgba(4,27,58,.2);
  backdrop-filter: blur(8px);
}

.pm-play-date small {
  color: var(--pm-muted);
  font-size: 10px;
  font-weight: 800;
}

.pm-play-date strong {
  font-size: 25px;
}

.pm-play-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px;
}

.pm-play-copy h3 {
  margin-top: 13px;
  font-size: 21px;
}

.pm-play-copy p {
  margin: 9px 0 0;
  color: var(--pm-muted);
  font-size: 13px;
  line-height: 1.35;
}

.pm-play-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pm-play-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #087d76;
  background: #dcf6f3;
  font-size: 10px;
  font-weight: 800;
}

.pm-play-tags span:nth-child(2) {
  color: #536c0a;
  background: #eff8d9;
}

.pm-play-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.pm-play-action > span {
  color: var(--pm-muted);
  font-size: 11px;
  font-weight: 700;
}

.pm-play-action button,
.pm-open-play-empty button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  color: #132906;
  background: var(--pm-lime);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.pm-open-play-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 250px;
  padding: 38px;
  border: 1px dashed var(--pm-border);
  border-radius: 20px;
  color: var(--pm-navy);
  text-align: center;
  background: var(--pm-bg);
}

.pm-open-play-empty p {
  margin: 0 0 6px;
  color: var(--pm-muted);
  font-size: 13px;
}

.pm-owner-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--pm-lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.pm-owner-copy h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
}

.pm-owner-copy h2 strong {
  color: var(--pm-lime);
  font: inherit;
}

.pm-owner-copy > p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}

.pm-owner-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.pm-owner-copy li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.pm-owner-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pm-lime);
  font-weight: 900;
}

.pm-owner-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  color: #132906;
  background: var(--pm-lime);
  font-size: 13px;
  font-weight: 850;
}

.pm-owner-browser,
.pm-owner-dashboard {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 56px rgba(0,0,0,.28);
}

.pm-owner-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: #edf1f4;
}

.pm-owner-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aeb8c1;
}

.pm-owner-browser-bar > span:first-child { background: #ff7a70; }
.pm-owner-browser-bar > span:nth-child(2) { background: #f8c85c; }
.pm-owner-browser-bar > span:nth-child(3) { background: #66ca7d; }

.pm-owner-browser-bar small {
  min-width: 0;
  margin-left: 8px;
  padding: 5px 20px;
  overflow: hidden;
  border-radius: 999px;
  color: #788690;
  background: #fff;
  font-size: 9px;
  text-overflow: ellipsis;
}

.pm-owner-site-preview {
  min-height: 285px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(145deg, #082f4c 0 45%, #0e7b72 46% 68%, #c7e947 69%);
}

.pm-owner-site-nav {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.pm-owner-site-nav > span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #102408;
  background: var(--pm-lime);
}

.pm-owner-site-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 225px;
  padding: 24px;
}

.pm-owner-site-hero small {
  color: var(--pm-lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.pm-owner-site-hero strong {
  max-width: 260px;
  margin: 8px 0 15px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: .98;
}

.pm-owner-site-hero button {
  padding: 8px 12px;
  border-radius: 8px;
  color: #102408;
  background: var(--pm-lime);
  font-size: 9px;
  font-weight: 800;
  pointer-events: none;
}

.pm-owner-dashboard {
  padding: 18px;
  color: var(--pm-navy);
}

.pm-owner-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.pm-owner-dashboard-head span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #087d76;
  background: #dcf6f3;
  font-size: 8px;
  font-weight: 800;
}

.pm-owner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 14px;
}

.pm-owner-stats span {
  display: flex;
  flex-direction: column;
  padding: 9px;
  border-radius: 9px;
  background: #f2f5f7;
}

.pm-owner-stats small { color: var(--pm-muted); font-size: 7px; }
.pm-owner-stats b { margin-top: 3px; font-size: 15px; }

.pm-owner-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 60px;
  margin-top: 13px;
  padding: 9px;
  border-radius: 9px;
  background: #f6f8f9;
}

.pm-owner-chart i {
  flex: 1;
  height: 38%;
  border-radius: 3px 3px 0 0;
  background: #c8ea43;
}

.pm-owner-chart i:nth-child(2) { height: 65%; }
.pm-owner-chart i:nth-child(3) { height: 50%; }
.pm-owner-chart i:nth-child(4) { height: 82%; }
.pm-owner-chart i:nth-child(5) { height: 70%; }
.pm-owner-chart i:nth-child(6) { height: 94%; }

.pm-how-heading h2 {
  font-size: clamp(27px, 2.5vw, 34px);
  line-height: 1.08;
}

.pm-how-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 72px 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 5px;
  min-height: 96px;
  padding: 0 18px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pm-how-grid article > small {
  position: static;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--pm-navy);
  background: var(--pm-lime);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.pm-how-grid article > span {
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 50%;
  color: var(--pm-lime);
  background: var(--pm-navy);
  font-size: 31px;
}

.pm-how-grid article > span svg {
  width: 38px;
  height: 38px;
}

.pm-how-grid h3 {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.pm-how-grid p {
  grid-column: 2 / 4;
  grid-row: 2;
  margin: 0;
  color: var(--pm-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pm-how-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -10px;
  width: 22px;
  border-top: 3px dotted rgba(111, 139, 37, .65);
}

.pm-how-heading p {
  font-size: 12px;
}

/* Subtle motion for the public marketplace. Elements stay visible without JS. */
.pm-marketplace.pm-scroll-ready .pm-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .55s cubic-bezier(.22, 1, .36, 1),
    transform .62s cubic-bezier(.22, 1, .36, 1),
    box-shadow .18s ease;
  transition-delay:
    var(--pm-reveal-delay, 0ms),
    var(--pm-reveal-delay, 0ms),
    0ms;
  will-change: opacity, transform;
}

.pm-marketplace.pm-scroll-ready .pm-scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pm-marketplace.pm-scroll-ready .pm-scroll-reveal.is-visible.pm-venue-card:hover,
.pm-marketplace.pm-scroll-ready .pm-scroll-reveal.is-visible.pm-play-card:hover {
  transform: translate3d(0, -4px, 0);
}

@media (max-width: 680px) {
  .pm-marketplace.pm-scroll-ready .pm-scroll-reveal {
    transform: translate3d(0, 14px, 0);
  }

  .pm-marketplace.pm-scroll-ready .pm-scroll-reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-hero-visual {
    background-position: center !important;
  }

  .pm-marketplace.pm-scroll-ready .pm-scroll-reveal,
  .pm-marketplace.pm-scroll-ready .pm-scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.pm-footer .pm-brand-copy strong,
.pm-footer .pm-brand-copy em,
.pm-footer h3 {
  color: #fff;
}

.pm-footer h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.pm-footer p,
.pm-footer span,
.pm-footer button,
.pm-footer a {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.pm-footer button:hover {
  color: var(--pm-lime);
}

.pm-footer a:hover {
  color: var(--pm-lime);
}

.pm-socials {
  display: flex;
  gap: 8px;
}

.pm-socials span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
}

.pm-app-links > span {
  min-width: 150px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 7px;
  color: #fff;
  background: rgba(0,0,0,.18);
}

/* Canonical Pickle Mania shared Login / Sign Up modal. */
body .pm-marketplace-site > .dp-login-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 17, 30, .64);
  backdrop-filter: blur(7px);
}

body .pm-marketplace-site .dp-login-modal {
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 25px 27px 24px;
  border: 1px solid rgba(6, 27, 58, .12);
  border-radius: 16px;
  color: #071f43;
  background: #fff;
  box-shadow: 0 30px 90px rgba(3, 16, 38, .32);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

body .pm-marketplace-site .dp-register-modal { width: min(540px, calc(100vw - 32px)); }

body .pm-marketplace-site .dp-login-close {
  top: 13px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #081c3d;
  background: transparent;
  font-size: 25px;
  font-weight: 300;
  cursor: pointer;
}

body .pm-marketplace-site .dp-login-close:hover { background: #f3f5f4; }
body .pm-marketplace-site .dp-login-modal-head { margin-bottom: 20px; text-align: center; }

body .pm-marketplace-site .dp-login-modal-logo {
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
  font-style: italic;
}

body .pm-marketplace-site .dp-login-modal-logo strong {
  color: #071f43;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.8px;
}

body .pm-marketplace-site .dp-login-modal-logo small {
  margin: 0;
  color: #70a900;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.pm-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 23px;
  padding: 0;
  border: 1px solid #dce1e4;
  border-radius: 8px;
  background: #f7f8f7;
  overflow: hidden;
}

.pm-auth-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  color: #101820;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.pm-auth-tabs button.active {
  color: #071f43;
  background: #fff;
  box-shadow: inset 0 -3px 0 #9bd900;
  font-weight: 600;
}

body .pm-marketplace-site .dp-login-modal-head h2 {
  margin: 0;
  color: #071f43;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.55px;
}

body .pm-marketplace-site .dp-login-modal-head p {
  margin: 7px 0 0;
  color: #111820;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

body .pm-marketplace-site .dp-login-modal form { gap: 14px; }
body .pm-marketplace-site .dp-login-modal label { color: #111820; font-size: 12px; font-weight: 500; }

body .pm-marketplace-site .dp-login-modal input,
body .pm-marketplace-site .dp-login-modal select {
  min-height: 44px;
  border: 1px solid #cfd6dc;
  border-radius: 7px;
  color: #071f43;
  background-color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
}

body .pm-marketplace-site .dp-login-modal input:focus,
body .pm-marketplace-site .dp-login-modal select:focus {
  border-color: #7db000;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(155, 217, 0, .13);
}

body .pm-marketplace-site .pm-auth-field input {
  padding-left: 42px;
  background-repeat: no-repeat;
  background-position: 14px 50%;
  background-size: 17px 17px;
}

body .pm-marketplace-site .pm-auth-email input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6570' stroke-width='1.8'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

body .pm-marketplace-site .pm-auth-password input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6570' stroke-width='1.8'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E");
}

.pm-auth-options { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: -2px; }
body .pm-marketplace-site .pm-auth-remember { display: flex; flex-direction: row; align-items: center; gap: 8px; font-weight: 400; }
body .pm-marketplace-site .pm-auth-remember input { width: 18px; min-height: 18px; margin: 0; accent-color: #8fc600; }
.pm-auth-forgot { padding: 0; border: 0; color: #007587; background: transparent; font: inherit; font-size: 12px; font-weight: 400; cursor: pointer; }

body .pm-marketplace-site .dp-login-submit {
  min-height: 46px;
  margin-top: 2px;
  border: 0;
  border-radius: 7px;
  color: #101800;
  background: #9bd900;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  box-shadow: none;
}

body .pm-marketplace-site .dp-login-submit:hover { background: #ace900; }
body .pm-marketplace-site .dp-login-modal-divider { display: none; }

body .pm-marketplace-site .dp-login-modal-register {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e1e5e8;
  color: #111820;
  font-size: 13px;
  font-weight: 400;
}

body .pm-marketplace-site .dp-login-modal-register button,
body .pm-marketplace-site .dp-register-terms-link {
  color: #007587;
  font-weight: 500;
}

body .pm-marketplace-site .dp-login-modal-note { display: none; }
body .pm-marketplace-site .dp-register-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 12px;
}
body .pm-marketplace-site .dp-register-terms { flex-direction: row; align-items: flex-start; }
body .pm-marketplace-site .dp-register-terms input { flex: 0 0 auto; width: 18px; min-height: 18px; margin-top: 1px; }

/* -----------------------------------------------------------
   Pickle Mania player experience components
   ----------------------------------------------------------- */
body main.player-shell .pm-auth-header .player-topnav-logo {
  justify-self: start;
  border: 0;
  background: transparent;
}

body main.player-shell .pm-auth-header .player-topnav-logo .logo {
  color: var(--pm-navy) !important;
  font-size: clamp(21px, 2vw, 30px);
  font-style: italic;
  font-weight: 950;
}

.player-topnav-logo .logo::before {
  content: "●";
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--pm-lime);
  color: rgba(4,27,58,.55);
  font-size: 15px;
  vertical-align: middle;
  box-shadow: inset -7px -6px 0 rgba(4,27,58,.08);
}

body main.player-shell .pm-auth-header .player-topnav-logo .logo b {
  color: var(--pm-lime-2) !important;
}

body main.player-shell .pm-auth-header .player-topnav-logo .logo i {
  display: inline-block;
  margin-left: 5px;
  color: var(--pm-lime-2) !important;
  font-size: 0;
  font-style: italic;
  letter-spacing: -.02em;
  vertical-align: baseline;
}

body main.player-shell .pm-auth-header .player-topnav-logo .logo i::after {
  content: "PH";
  font-size: 14px;
}

body main.player-shell .pm-auth-header .player-topnav-links button {
  position: relative;
  border: 0;
  background: transparent !important;
  color: var(--pm-navy) !important;
  box-shadow: none !important;
  font-weight: 800;
}

.player-topnav-links button::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  border-radius: 3px;
  background: transparent;
}

body main.player-shell .pm-auth-header .player-topnav-links button.active::after {
  background: var(--pm-lime);
}

body main.player-shell .pm-auth-header .player-topnav-links button.active {
  color: var(--pm-navy) !important;
  background: rgba(167,220,22,.14) !important;
  box-shadow: none !important;
}

body main.player-shell .pm-auth-header .player-topnav-links button i,
body main.player-shell .pm-auth-header .player-topnav-links button.active i {
  color: var(--pm-navy) !important;
}

body main.player-shell .pm-auth-header .player-notification,
body main.player-shell .pm-auth-header .player-profile-menu summary {
  border: 1px solid var(--pm-border) !important;
  background: #fff !important;
  color: var(--pm-navy) !important;
}

body main.player-shell .pm-auth-header .player-profile-menu summary {
  min-height: 48px;
  padding: 6px 10px;
  border-radius: 24px;
}

body main.player-shell .pm-auth-header .player-profile-menu summary b,
body main.player-shell .pm-auth-header .player-profile-menu summary span {
  color: var(--pm-navy) !important;
}

.player-shell .mobile-logo .logo i {
  display: inline-block;
  margin-left: 4px;
  color: var(--pm-lime-2);
  font-size: 0;
  font-style: italic;
}

.player-shell .mobile-logo .logo i::after {
  content: "PH";
  font-size: 10px;
}

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

.pmx-page h1 {
  margin-bottom: 6px;
  color: var(--pm-navy);
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -.035em;
}

.pmx-page h2 {
  margin-bottom: 0;
  color: var(--pm-navy);
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -.025em;
}

.pmx-page h3 {
  margin-bottom: 4px;
  color: var(--pm-navy);
  font-size: 15px;
}

.pmx-page p {
  margin-bottom: 5px;
  color: var(--pm-muted);
  line-height: 1.55;
}

.pmx-page button,
.pmx-page a {
  font: inherit;
}

.pmx-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 850;
}

.pmx-button-lime {
  border-color: var(--pm-lime-2);
  background: linear-gradient(135deg, #b8eb17, var(--pm-lime));
  color: #102b09;
  box-shadow: 0 8px 20px rgba(167,220,22,.23);
}

.pmx-button-outline {
  border-color: #8392a8;
  background: #fff;
  color: var(--pm-navy);
}

.pmx-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--pm-navy);
}

.pmx-button:hover,
.pmx-action-grid > button:hover,
.pmx-recommended-grid > button:hover,
.pmx-find-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pm-shadow);
}

.pmx-full {
  width: 100%;
}

.pmx-home-welcome > p {
  margin: 0;
  color: #71829a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pmx-home-welcome > h1 {
  margin: 0;
}

.pmx-nearby-search h2 {
  font-size: 17px;
}

.pmx-nearby-search label,
.pmx-find-head form label {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #d7dfeb;
  border-radius: 10px;
  background: #fff;
  color: var(--pm-navy);
}

.pmx-nearby-search input,
.pmx-find-head input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.pmx-home-hero::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: -72px;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 34%, rgba(4,27,58,.46) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 42%, rgba(4,27,58,.46) 0 4px, transparent 5px),
    radial-gradient(circle at 45% 65%, rgba(4,27,58,.46) 0 4px, transparent 5px),
    linear-gradient(135deg, #d6ff42, var(--pm-lime));
  box-shadow: -18px -16px 38px rgba(167,220,22,.20);
}

.pmx-home-hero h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
}

.pmx-home-hero h2 strong {
  color: var(--pm-lime);
}

.pmx-home-hero p {
  color: rgba(255,255,255,.86);
  font-size: 15px;
}

.pmx-action-grid > button,
.pmx-recommended-grid > button,
.pmx-booking-row,
.pmx-play-row,
.pmx-find-card,
.pmx-stat-grid article,
.pmx-court-grid article,
.pmx-side-card,
.pmx-verified-note,
.pmx-announcement-page article {
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  background: #fff;
  color: var(--pm-navy);
  box-shadow: 0 4px 15px rgba(4,27,58,.045);
}

.pmx-action-grid > button {
  cursor: pointer;
}

.pmx-action-grid > button > i,
.pmx-stat-grid article > i,
.pmx-ranking-soon > i,
.pmx-verified-note > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--pm-navy);
  color: var(--pm-lime);
  font-size: 23px;
  font-style: normal;
}

.pmx-action-grid b {
  font-size: 14px;
}

.pmx-action-grid small {
  color: var(--pm-muted);
  font-size: 11px;
  line-height: 1.35;
}

.pmx-action-grid em {
  color: var(--pm-navy);
  font-size: 24px;
  font-style: normal;
}

.pmx-section > header button,
.pmx-venue-tabs button,
.pmx-profile-tabs button,
.pmx-back {
  border: 0;
  background: transparent;
  color: #075ccc;
  cursor: pointer;
  font-weight: 750;
}

.pmx-venue-tabs button,
.pmx-profile-tabs button {
  position: relative;
  min-height: 44px;
  padding: 0 2px 12px;
  color: var(--pm-navy);
  white-space: nowrap;
}

.pmx-venue-tabs button::after,
.pmx-profile-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: transparent;
}

.pmx-venue-tabs button.active::after,
.pmx-profile-tabs button.active::after {
  background: var(--pm-lime);
}

.pmx-message {
  padding: 22px;
  border: 1px dashed #c7d3e4;
  border-radius: 13px;
  background: #f8fafc;
  color: var(--pm-muted);
  text-align: center;
}

.pmx-message.error {
  border-color: #efb6ad;
  background: #fff5f3;
  color: #9c372b;
}

.pmx-venue-thumb {
  display: grid;
  width: 100%;
  height: 86px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(135deg, #05234b, #087b78);
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.pmx-find-photo {
  height: 178px;
}

.pmx-booking-row h3,
.pmx-play-row h3,
.pmx-recommended-grid b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pmx-booking-row p,
.pmx-play-row p,
.pmx-recommended-grid small {
  overflow: hidden;
  margin: 2px 0;
  color: var(--pm-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pmx-recommended-grid strong,
.pmx-find-foot strong,
.pmx-court-grid strong {
  color: #75a900;
}

.pmx-icon-button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--pm-navy);
  color: #fff;
  font-size: 22px;
}

.pmx-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 5px;
  background: #eef2f7;
  color: #34445e;
  font-size: 9px;
  font-weight: 850;
}

.pmx-status.paid {
  background: #e7f8dd;
  color: #32711e;
}

.pmx-status.confirmed {
  background: #e6f0ff;
  color: #075ccc;
}

.pmx-status.level {
  background: #ddf7f1;
  color: #08746b;
}

.pmx-find-summary h2 {
  margin-bottom: 3px;
}

.pmx-find-summary p {
  margin: 0;
}

.pmx-filters select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d7dfeb;
  background: #fff;
}

.pmx-find-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.pmx-find-title h3 {
  margin: 0;
  font-size: 18px;
}

.pmx-find-title > span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #0872e1;
  color: #fff;
  font-size: 11px;
}

.pmx-find-meta {
  margin: 4px 0 8px;
  color: var(--pm-navy);
  font-size: 11px;
}

.pmx-chips span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 7px;
  background: #f0f5fb;
  color: #29517f;
  font-size: 10px;
}

.pmx-map-art button {
  border-color: #fff;
  background: var(--pm-navy);
  color: #fff;
}

.pmx-map-art button:nth-child(2n) {
  background: var(--pm-lime);
  color: var(--pm-navy);
}

.pmx-verified-note > i {
  width: 54px;
  height: 54px;
}

.pmx-back {
  margin-bottom: 12px;
  padding: 7px 0;
}

.pmx-venue-identity h1 {
  margin: 0 0 5px;
  font-size: clamp(26px, 3vw, 42px);
}

.pmx-venue-identity h1 small {
  color: #0872e1;
  font-size: .55em;
}

.pmx-venue-facts {
  margin: 8px 0 12px;
  font-size: 12px;
}

.pmx-venue-facts span + span {
  padding-left: 8px;
  border-left: 1px solid #d7dfeb;
}

.pmx-about-venue > p {
  max-width: 820px;
}

.pmx-court-grid .pmx-venue-thumb {
  height: 118px;
  border-radius: 0;
}

.pmx-court-grid p {
  margin: 0;
  font-size: 11px;
}

.pmx-side-card {
  padding: 18px;
}

.pmx-side-card h2 {
  margin-bottom: 12px;
  font-size: 16px;
}

.pmx-side-card p {
  margin: 5px 0;
  font-size: 12px;
}

.pmx-side-card > span {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e9f8df;
  color: #397420;
  font-size: 10px;
  font-weight: 800;
}

.pmx-side-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--pm-muted);
  font-size: 12px;
}

.pmx-announcement-page article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
}

.pmx-announcement-page article > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--pm-navy);
  color: var(--pm-lime);
  font-style: normal;
}

.pmx-profile-hero h1 {
  color: #fff;
}

.pmx-profile-hero p,
.pmx-profile-details {
  color: rgba(255,255,255,.84);
}

.pmx-profile-details {
  margin: 8px 0 18px;
  font-size: 12px;
}

.pmx-profile-tags span {
  padding: 6px 13px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: var(--pm-navy);
  font-size: 11px;
  font-weight: 800;
}

.pmx-stat-grid article > i {
  width: 46px;
  height: 46px;
  font-size: 19px;
}

.pmx-stat-grid strong {
  color: var(--pm-navy);
  font-size: 24px;
}

.pmx-stat-grid small {
  color: var(--pm-muted);
  font-size: 11px;
}

.pmx-profile-tabs {
  margin-top: 18px;
  padding-left: 8px;
}

.pmx-ranking-soon > i {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  font-size: 28px;
}

.pmx-ranking-soon h2 span {
  display: inline-flex;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #deebff;
  color: #075ccc;
  font-size: 10px;
  letter-spacing: .04em;
  vertical-align: middle;
}

.pmx-ranking-soon p {
  margin: 5px 0 0;
}

.pmx-side-card dl {
  margin: 0;
}

.pmx-side-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--pm-border);
}

.pmx-side-card dt {
  color: var(--pm-muted);
}

.pmx-side-card dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}

/* Pickle Mania venue schedule polish 2.5.3 */
.pmx-booking-embed .tap-date-strip > button.active,
.pmx-booking-embed .tap-booking-column-head .tap-grid-head:not(.time) {
  border-color: var(--pm-lime-2);
  color: #fff;
  background: var(--pm-lime);
}

.pmx-booking-embed .tap-date-strip > button.active small,
.pmx-booking-embed .tap-date-strip > button.active b,
.pmx-booking-embed .tap-date-strip > button.active span,
.pmx-booking-embed .tap-booking-column-head .tap-grid-head:not(.time) {
  color: #fff;
}

.pmx-booking-embed .tap-cell.available b {
  color: var(--pm-lime);
}

.pmx-booking-embed .tap-cell.available span {
  color: var(--pm-navy);
}

.pmx-booking-embed .dp-pm-balloon {
  width: min(1380px, calc(100% - 56px));
  max-width: min(1380px, calc(100% - 56px));
  border-color: var(--pm-lime-2);
  color: #fff;
  background: var(--pm-lime);
  box-shadow: 0 14px 38px rgba(4,27,58,.28);
}

.pmx-booking-embed .dp-pm-balloon .booking-float-summary,
.pmx-booking-embed .dp-pm-balloon .booking-float-summary b,
.pmx-booking-embed .dp-pm-balloon .booking-float-summary strong {
  color: #fff;
}

.pmx-booking-embed .dp-pm-balloon .booking-float-toggle::before {
  border-bottom-color: #fff;
}

.pmx-booking-embed .dp-pm-balloon .booking-float-checkout {
  border-color: var(--pm-navy);
  color: var(--pm-navy);
  background: #fff;
}

@media (max-width: 1180px) {
  .pmx-booking-embed .dp-pm-balloon {
    width: min(1180px, calc(100% - 36px));
    max-width: min(1180px, calc(100% - 36px));
  }
}

@media (max-width: 980px) {
  .pmx-booking-embed .dp-pm-balloon {
    width: min(900px, calc(100% - 28px));
    max-width: min(900px, calc(100% - 28px));
  }
}

@media (max-width: 720px) {
  .pmx-booking-embed .dp-pm-balloon {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 430px) {
  .pmx-booking-embed .dp-pm-balloon {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }
}

/* Existing booking module, visually owned by the Pickle Mania theme. */
.pmx-booking-embed .swipe-date-shell {
  padding: 18px 18px 0;
    position: sticky;
    top: 8px;
    z-index: 30;
    background: #fff;
    isolation: isolate;
}

.pmx-booking-embed .tap-date-strip button.active {
  border-color: var(--pm-lime-2);
  background: var(--pm-lime);
  color: var(--pm-navy);
}

.pmx-booking-embed .tap-cell.available {
  border-color: #d8eab0;
  background: #f1f9dd;
  color: #2f6715;
}

.pmx-booking-embed .tap-cell.picked {
  border-color: #79ac00;
  background: #e8f8b8;
  color: #244d0d;
}

.pmx-booking-embed .booking-float-checkout,
.pmx-booking-embed .checkout-main-button {
  background: var(--pm-lime);
  color: var(--pm-navy);
}
