/* Homepage V2.4 — pale aqua + white cards (isolated from /style.css) */

:root {
  --pv2-bg: #e8f7f5;
  --pv2-bg-dark: #0b3f44;
  --pv2-bg-dark-raised: #0e4d52;
  --pv2-card-bg: #ffffff;
  --pv2-card-alt: #ffffff;
  --pv2-surface-light: #ffffff;
  --pv2-input-text: #071827;
  --pv2-text: #071827;
  --pv2-text-on-dark: #ffffff;
  --pv2-muted: #4b6470;
  --pv2-muted2: #6b7f8a;
  --pv2-muted-on-dark: rgba(255, 255, 255, 0.82);
  --pv2-teal: #009ca6;
  --pv2-teal-deep: #007d8a;
  --pv2-teal-bright: #00a7ae;
  --pv2-accent-aqua: #bff3ee;
  --pv2-radius: 18px;
  --pv2-day-radius: 12px;
  --pv2-border: rgba(0, 156, 166, 0.14);
  --pv2-border-teal: rgba(0, 156, 166, 0.22);
  --pv2-shadow2: 0 4px 16px rgba(11, 63, 68, 0.07);
  --pv2-panel-soft: #ffffff;
  --pv2-panel-checker: #ffffff;
  --pv2-unavail-bg: rgba(7, 24, 39, 0.06);
  --pv2-unavail-border: rgba(7, 24, 39, 0.12);
  --pv2-selected-shadow: 0 0 0 1px rgba(0, 167, 174, 0.4), 0 4px 14px rgba(0, 156, 166, 0.2);
  --pv2-cta-shadow: 0 6px 18px rgba(0, 125, 138, 0.28);
  --pv2-cta-shadow-hover: 0 8px 22px rgba(0, 125, 138, 0.36);
  --pv2-max: 1100px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

body.home-app-v2 {
  margin: 0;
  padding-bottom: 88px;
  color: var(--pv2-text);
  background: var(--pv2-bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--pv2-teal-deep); }
a:hover { color: var(--pv2-teal-bright); }

.pv2-container {
  width: min(100% - 32px, var(--pv2-max));
  margin-inline: auto;
}

.pv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.pv2-btn--primary {
  background: linear-gradient(180deg, #00a7ae 0%, #009ca6 100%);
  border: 1px solid rgba(0, 100, 110, 0.35);
  color: #fff;
  box-shadow: var(--pv2-cta-shadow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pv2-btn--primary:hover {
  background: linear-gradient(180deg, #00b8c0 0%, #00a7ae 100%);
  transform: translateY(-1px);
  box-shadow: var(--pv2-cta-shadow-hover);
}

.pv2-btn--primary:active {
  transform: translateY(0);
}

.pv2-btn--secondary {
  background: var(--pv2-card-bg);
  border: 1px solid var(--pv2-border-teal);
  color: var(--pv2-text);
  padding: 12px 18px;
  font-size: 14px;
}

.pv2-btn--secondary:hover {
  background: var(--pv2-accent-aqua);
  border-color: var(--pv2-teal-bright);
}

/* Header — full-width brand banner */
.pv2-header {
  background: #ffffff;
  border-bottom: 1px solid var(--pv2-border);
  box-shadow: 0 2px 14px rgba(11, 63, 68, 0.06);
}
.pv2-header--brand {
  width: 100%;
  padding: 12px 16px;
}
.pv2-header__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
}
.pv2-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.pv2-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  text-decoration: none;
}
.pv2-logo {
  width: 65%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
}
.pv2-header__back {
  font-size: 13px;
  font-weight: 600;
  color: var(--pv2-muted);
  text-decoration: none;
}
.pv2-header__back:hover {
  color: var(--pv2-teal-deep);
}

/* Hero listing card */
.pv2-hero {
  padding: 0 0 12px;
  background: var(--pv2-bg);
  color: var(--pv2-text);
}
.pv2-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  overflow: hidden;
  background: var(--pv2-bg);
}
.pv2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pv2-hero__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 132px;
}
.pv2-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pv2-text);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.12);
}
.pv2-badge--teal {
  color: var(--pv2-teal-deep);
  background: var(--pv2-accent-aqua);
  border-color: var(--pv2-border-teal);
}
.pv2-badge--hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--pv2-teal);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 61, 68, 0.35);
  box-sizing: border-box;
  line-height: 1.2;
}

.pv2-listing {
  padding: 16px 0 8px;
}
.pv2-listing__kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pv2-teal-deep);
  margin: 0 0 6px;
}
.pv2-listing__title {
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--pv2-text);
}
.pv2-listing__subtitle {
  font-size: 17px;
  color: var(--pv2-muted);
  margin: 0 0 14px;
  font-weight: 600;
}
.pv2-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 16px;
}
.pv2-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.pv2-status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}
.pv2-rating {
  font-size: 14px;
  font-weight: 700;
  color: var(--pv2-text);
}
.pv2-rating__stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

/* Pricing block */
.pv2-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.pv2-price-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
}
.pv2-price-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pv2-muted);
  margin: 0 0 4px;
}
.pv2-price-card__amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--pv2-teal-deep);
  letter-spacing: -0.02em;
  margin: 0;
}
.pv2-price-card__amount span {
  font-size: 14px;
  font-weight: 700;
  color: var(--pv2-muted);
}
.pv2-price-card__amount.is-price-pending,
.pv2-price-card__amount.is-price-fallback {
  font-size: 13px;
  font-weight: 700;
  color: var(--pv2-muted);
}
.pv2-sticky-bar__amount.is-price-pending,
.pv2-sticky-bar__amount.is-price-fallback {
  font-size: 14px;
}
.is-price-pending {
  animation: pv2PricePulse 1.2s ease-in-out infinite;
}
@keyframes pv2PricePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .is-price-pending { animation: none; }
}
.pv2-multiday-banner {
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--pv2-teal-deep);
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
}

/* Availability strip */
.pv2-avail {
  margin-bottom: 16px;
}
.pv2-avail__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pv2-muted);
  margin: 0 0 10px;
}
.pv2-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid rgba(220, 38, 38, 0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dc2626;
  line-height: 1;
  animation: pv2-live-pill-glow 1.7s ease-in-out infinite;
}
.pv2-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: pv2-live-dot-pulse 1.7s ease-in-out infinite;
}
@keyframes pv2-live-dot-pulse {
  0%, 100% {
    transform: scale(1);
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.48);
  }
  50% {
    transform: scale(1.18);
    background: #f87171;
    box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
  }
}
@keyframes pv2-live-pill-glow {
  0%, 100% {
    background: rgba(220, 38, 38, 0.07);
    border-color: rgba(220, 38, 38, 0.14);
    box-shadow: none;
    color: #dc2626;
  }
  50% {
    background: rgba(220, 38, 38, 0.13);
    border-color: rgba(220, 38, 38, 0.24);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.14);
    color: #b91c1c;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv2-live,
  .pv2-live__dot {
    animation: none;
  }
}
.pv2-avail__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.pv2-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 7px 3px 6px;
  border-radius: var(--pv2-day-radius);
  border: 1.5px solid var(--pv2-border-teal);
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  color: var(--pv2-text);
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
  text-decoration: none;
  box-shadow: var(--pv2-shadow2);
  min-height: 72px;
}
.pv2-day:hover {
  box-shadow: var(--pv2-selected-shadow);
  transform: translateY(-1px);
  border-color: var(--pv2-teal);
}
.pv2-day--avail {
  background: #ffffff;
  border-color: var(--pv2-teal);
  color: var(--pv2-text);
  box-shadow: var(--pv2-shadow2);
}
.pv2-day--avail:hover {
  box-shadow: var(--pv2-selected-shadow);
  border-color: var(--pv2-teal-deep);
}
.pv2-day--unavail {
  background: #ffffff;
  border-color: var(--pv2-unavail-border);
  color: var(--pv2-muted2);
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}
.pv2-day--unavail .pv2-day__dow,
.pv2-day--unavail .pv2-day__date {
  color: var(--pv2-muted2);
}
.pv2-day--unavail .pv2-weather-icon {
  opacity: 0.45;
}
.pv2-day__weather {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 1px 0;
  color: var(--pv2-teal-deep);
}
.pv2-day__weather[hidden] {
  display: none !important;
}
.pv2-weather-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.pv2-day__status {
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  margin-top: 1px;
}
.pv2-day__status--avail {
  color: var(--pv2-teal-deep);
}
.pv2-day__status--unavail {
  color: var(--pv2-muted2);
  font-size: 12px;
}
.pv2-day__icon {
  font-size: 14px;
  line-height: 1;
}
.pv2-day__dow {
  font-size: 10px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.1;
}
.pv2-day__date {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}
.pv2-avail-loading {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pv2-muted);
  text-align: center;
  padding: 12px 8px;
}

/* CTA block */
.pv2-cta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.pv2-cta-block .pv2-btn--primary {
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
}
.pv2-cta-sub {
  text-align: center;
  font-size: 14px;
  color: var(--pv2-muted);
  margin: 0;
  font-weight: 600;
}

.pv2-pickup--hero {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--pv2-border);
}
.pv2-pickup--hero .pv2-pickup__title {
  color: var(--pv2-text);
}
.pv2-pickup--hero .pv2-pickup__address {
  color: var(--pv2-muted);
}
.pv2-pickup--hero .pv2-pickup__heading {
  color: var(--pv2-teal-deep);
}
.pv2-pickup--hero .pv2-pickup__directions {
  color: var(--pv2-teal-deep);
  background: #ffffff;
  border-color: var(--pv2-border);
}
.pv2-pickup--hero .pv2-pickup__directions:hover {
  background: var(--pv2-accent-aqua);
  color: var(--pv2-teal-deep);
}

/* Sticky footer bar */
.pv2-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: linear-gradient(180deg, #00a7ae 0%, #009ca6 100%);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(191, 243, 238, 0.35);
  box-shadow: 0 -8px 28px rgba(0, 125, 138, 0.35);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
}
.pv2-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pv2-sticky-bar__price {
  min-width: 0;
}
.pv2-sticky-bar__amount {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.pv2-sticky-bar__avail {
  font-size: 13px;
  font-weight: 600;
  color: var(--pv2-accent-aqua);
  margin: 0;
}
.pv2-sticky-bar .pv2-btn--primary {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 14px;
  white-space: nowrap;
  background: #ffffff;
  color: var(--pv2-teal-deep);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 61, 68, 0.25);
}
.pv2-sticky-bar .pv2-btn--primary:hover {
  background: var(--pv2-accent-aqua);
  color: var(--pv2-teal-deep);
}

/* Section shared */
.pv2-section {
  padding: 32px 0;
  background: var(--pv2-bg);
  border-top: 1px solid rgba(0, 156, 166, 0.08);
}
.pv2-section__badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv2-teal-deep);
  background: var(--pv2-accent-aqua);
  border: 1px solid var(--pv2-border-teal);
  margin-bottom: 8px;
}
.pv2-section__title {
  font-size: clamp(22px, 4.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}

/* Tile grids */
.pv2-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pv2-tile-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.pv2-tile-grid--services {
  grid-template-columns: repeat(2, 1fr);
}
.pv2-tile-grid--attach {
  grid-template-columns: repeat(2, 1fr);
}
.pv2-tile {
  padding: 16px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
  text-align: center;
}
.pv2-tile__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.pv2-tile__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--pv2-text);
  margin: 0;
  line-height: 1.3;
}
.pv2-line-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--pv2-teal-deep);
}
.pv2-line-icon svg {
  width: 28px;
  height: 28px;
}
.pv2-tile--service {
  text-align: left;
  padding: 14px 12px;
  background: #ffffff;
}
.pv2-tile--service .pv2-line-icon {
  margin-left: 0;
  margin-right: 0;
  display: none;
}
.pv2-tile--attach {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 12px;
  background: #ffffff;
}
.pv2-attach-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 136px;
  min-height: 136px;
  max-height: 136px;
  margin: 0 0 10px;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}
.pv2-attach-photo img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-width: 95%;
  max-height: 95%;
}
.pv2-attach-photo--300 img,
.pv2-attach-photo--450 img {
  max-width: 90%;
  max-height: 92%;
}
.pv2-attach-photo--900 img {
  max-width: 92%;
  max-height: 92%;
}
.pv2-attach-photo--ripper img {
  max-width: 90%;
  max-height: 88%;
}
.pv2-attach-photo--diggerlid img {
  max-width: 90%;
  max-height: 94%;
}
.pv2-attach-photo--trailer img {
  max-width: 90%;
  max-height: 92%;
}
.pv2-tile--attach .pv2-tile__label {
  width: 100%;
  margin: 0;
}
.pv2-tile--attach .pv2-line-icon {
  margin-left: 0;
  margin-right: 0;
}
.pv2-tile__sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--pv2-muted);
  margin: 4px 0 0;
  line-height: 1.35;
}
.pv2-tile__note {
  font-weight: 600;
  color: var(--pv2-muted2);
}
.pv2-tile--optional {
  opacity: 0.85;
  border-style: dashed;
}
.pv2-tile--optional .pv2-tile__label::after {
  content: " (optional)";
  font-weight: 600;
  font-size: 11px;
  color: var(--pv2-muted);
  display: block;
  margin-top: 2px;
}

/* How it works */
.pv2-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.pv2-step {
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
}
.pv2-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--pv2-teal);
  margin-bottom: 10px;
}
.pv2-step__title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
}
.pv2-step__text {
  font-size: 13px;
  color: var(--pv2-muted);
  margin: 0;
  line-height: 1.45;
}
.pv2-pay-banner {
  margin-top: 18px;
  padding: 16px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
  text-align: center;
}
.pv2-pay-banner__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Price checker + inline calendar */
.pv2-checker {
  padding: 20px;
  border-radius: var(--pv2-radius);
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
}
.pv2-checker__calendar-wrap {
  margin-bottom: 14px;
}
.pv2-cal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.pv2-cal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--pv2-text);
}
.pv2-cal-hint {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--pv2-muted);
}
.pv2-cal-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.pv2-cal-nav__btn {
  padding: 8px 12px;
  border-radius: var(--pv2-day-radius);
  border: 1px solid var(--pv2-border-teal);
  background: #fff;
  color: var(--pv2-text);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
}
.pv2-cal-nav__btn:hover {
  border-color: rgba(0, 156, 166, 0.42);
  background: rgba(0, 156, 166, 0.06);
}
.pv2-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  user-select: none;
}
.pv2-cal-grid--dow {
  margin-bottom: 4px;
}
.pv2-cal-dow {
  font-size: 12px;
  font-weight: 600;
  color: var(--pv2-muted2);
  text-align: center;
  padding: 6px 0;
}
.pv2-cal-day {
  border: 1px solid var(--pv2-border-teal);
  border-radius: var(--pv2-day-radius);
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  background: #fff;
  position: relative;
  min-height: 42px;
  font-weight: 600;
  color: var(--pv2-text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
}
.pv2-cal-day:hover:not(:disabled):not(.pv2-cal-day--muted) {
  border-color: rgba(0, 156, 166, 0.42);
  background: rgba(0, 156, 166, 0.06);
}
.pv2-cal-day--muted {
  opacity: 0.35;
  cursor: default;
  border-color: transparent;
  background: transparent;
}
.pv2-cal-day--past,
.pv2-cal-day--cutoff,
.pv2-cal-day--max-future {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(7, 24, 39, 0.04);
  border-color: var(--pv2-unavail-border);
  color: var(--pv2-muted2);
}
.pv2-cal-day--unavail {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--pv2-unavail-bg);
  border-color: var(--pv2-unavail-border);
  color: var(--pv2-muted2);
}
.pv2-cal-day--unavail::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: rgba(7, 24, 39, 0.32);
  transform: rotate(-10deg);
  border-radius: 2px;
}
.pv2-cal-day--past.pv2-cal-day--unavail {
  opacity: 0.4;
}
.pv2-cal-day--past.pv2-cal-day--unavail::after {
  background: rgba(7, 24, 39, 0.24);
}
.pv2-cal-day--sel-start,
.pv2-cal-day--sel-end {
  background: var(--pv2-teal);
  color: #fff;
  border-color: var(--pv2-teal);
  opacity: 1;
  font-weight: 800;
  box-shadow: var(--pv2-selected-shadow);
}
.pv2-cal-day--in-range {
  background: rgba(0, 156, 166, 0.14);
  border-color: rgba(0, 156, 166, 0.32);
  opacity: 1;
}
.pv2-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--pv2-muted);
}
.pv2-cal-legend__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
}
.pv2-cal-legend__dot--avail {
  background: #fff;
  border: 1px solid var(--pv2-border-teal);
}
.pv2-cal-legend__dot--unavail {
  background: var(--pv2-unavail-bg);
  border: 1px solid var(--pv2-unavail-border);
  position: relative;
}
.pv2-cal-legend__dot--unavail::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 50%;
  height: 1px;
  background: rgba(7, 24, 39, 0.35);
  transform: rotate(-12deg);
}
.pv2-cal-legend__dot--sel {
  background: var(--pv2-teal);
  border: 1px solid var(--pv2-teal);
}
.pv2-checker__msg {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #92400e;
}
.pv2-checker__result {
  display: none;
  padding: 16px;
  border-radius: 14px;
  background: var(--pv2-surface-light);
  border: 1px solid rgba(16, 185, 129, 0.35);
  margin-top: 14px;
  color: var(--pv2-input-text);
}
.pv2-checker__result.is-visible {
  display: block;
}
.pv2-checker__result--unavail {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(254, 242, 242, 0.6);
}
.pv2-checker__result--unavail .pv2-checker__result-status {
  color: #b91c1c;
}
.pv2-checker__result-status {
  font-size: 15px;
  font-weight: 800;
  color: #047857;
  margin: 0 0 6px;
}
.pv2-checker__result-dates {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pv2-text);
}
.pv2-checker__result-meta {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--pv2-muted);
}
.pv2-checker__result-price {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--pv2-teal-deep);
}
.pv2-checker__result-discount {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #047857;
}
.pv2-checker__book {
  width: 100%;
}

/* Recently hired */
.pv2-recent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pv2-recent__chip {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  color: var(--pv2-text);
  box-shadow: var(--pv2-shadow2);
}

/* Reviews slideshow */
.pv2-reviews-summary {
  margin-bottom: 16px;
}
.pv2-reviews-summary[hidden] {
  display: none !important;
}
.pv2-reviews-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
}
.pv2-reviews-score__stars {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  color: #f59e0b;
}
.pv2-reviews-score__rating {
  font-size: 22px;
  font-weight: 800;
  color: var(--pv2-text);
  line-height: 1.1;
}
.pv2-reviews-score__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--pv2-muted);
  margin: 0;
}
.pv2-reviews-slideshow {
  overflow: hidden;
  width: 100%;
}
.pv2-reviews-slideshow[hidden] {
  display: none !important;
}
.pv2-reviews-track {
  display: flex;
  transition: transform 0.45s ease-out;
  width: 100%;
}
.pv2-review-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.pv2-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.pv2-reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 156, 166, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.pv2-reviews-dot[aria-current="true"] {
  background: var(--pv2-teal-deep);
  transform: scale(1.15);
}
.pv2-review-card {
  padding: 20px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow2);
}
.pv2-review-card__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 12px;
}
.pv2-review-star {
  color: rgba(0, 156, 166, 0.2);
}
.pv2-review-star--filled {
  color: #f59e0b;
}
.pv2-review-card__text {
  font-size: 15px;
  color: var(--pv2-text);
  line-height: 1.55;
  margin: 0 0 12px;
}
.pv2-review-card__meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--pv2-muted);
}

/* Reviews loading */
.pv2-reviews-loading,
.pv2-reviews-empty {
  font-size: 14px;
  color: var(--pv2-muted);
  margin: 0;
  padding: 8px 0;
}

/* Pick up location map */
.pv2-pickup {
  margin-bottom: 16px;
}
.pv2-pickup__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--pv2-text);
  margin: 0 0 6px;
  line-height: 1.2;
}
.pv2-pickup__address {
  font-size: 14px;
  font-weight: 600;
  color: var(--pv2-muted);
  margin: 0 0 12px;
  line-height: 1.45;
}
.pv2-pickup__heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv2-teal-deep);
  margin: 0 0 10px;
}
.pv2-pickup__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pv2-teal-deep);
  background: #ffffff;
  border: 1px solid var(--pv2-border-teal);
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.15s, box-shadow 0.15s;
}
.pv2-pickup__directions:hover {
  background: var(--pv2-accent-aqua);
  box-shadow: 0 4px 14px rgba(0, 156, 166, 0.14);
  color: var(--pv2-teal-deep);
}
.pv2-pickup__map {
  border-radius: var(--pv2-radius);
  overflow: hidden;
  border: 1px solid var(--pv2-border-teal);
  background: #fff;
}
.pv2-pickup__map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Enquiry form */
.pv2-enquiry__form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--pv2-text);
}
.pv2-enquiry__form input,
.pv2-enquiry__form textarea {
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font: inherit;
  color: var(--pv2-input-text);
  background: var(--pv2-surface-light);
}
.pv2-enquiry__form textarea {
  resize: vertical;
  min-height: 120px;
}
.pv2-enquiry__error {
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}
.pv2-enquiry__success {
  color: #047857;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}
.pv2-enquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* About Us */
.pv2-about-toggle {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--pv2-border-teal);
  background: var(--pv2-accent-aqua);
  color: var(--pv2-teal-deep);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, box-shadow 0.15s;
}
.pv2-about-toggle:hover {
  background: #d4faf5;
  box-shadow: 0 4px 14px rgba(0, 156, 166, 0.12);
}
.pv2-about {
  margin-top: 16px;
  padding: 18px 16px;
  border-radius: var(--pv2-radius);
  border: 1px solid var(--pv2-border);
  background: #ffffff;
  box-shadow: var(--pv2-shadow2);
}
.pv2-about[hidden] {
  display: none !important;
}
.pv2-about__photo {
  max-width: 220px;
  margin: 0 auto 16px;
}
.pv2-about__photo img {
  display: block;
  width: 100%;
  border-radius: 14px;
}
.pv2-about__title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
}
.pv2-about p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--pv2-text);
  line-height: 1.55;
}
.pv2-about__list {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
}
.pv2-about__list li {
  margin-bottom: 6px;
}

/* Help float — above sticky booking bar on mobile */
body.home-app-v2 .mh-help-float {
  position: fixed;
  right: 14px;
  bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  z-index: 140;
}
.mh-help-float__toggle {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--pv2-teal-deep);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0, 77, 86, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.mh-help-float__toggle::-webkit-details-marker {
  display: none;
}
.mh-help-float__toggle:hover {
  transform: translateY(-1px);
  background: var(--pv2-teal);
  box-shadow: 0 6px 20px rgba(0, 77, 86, 0.32);
}
.mh-help-float[open] .mh-help-float__toggle {
  background: #006e7a;
}
.mh-help-float__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 148px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--pv2-border-teal);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(11, 63, 68, 0.16);
}
.mh-help-float__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--pv2-text);
  line-height: 1.2;
}
.mh-help-float__menu a:hover {
  background: var(--pv2-accent-aqua);
  color: var(--pv2-teal-deep);
}

@media (max-width: 380px) {
  .pv2-hero__badges {
    top: 8px;
    right: 8px;
    width: 118px;
  }
  .pv2-badge--hero {
    padding: 6px 8px;
    font-size: 10px;
  }
}

/* Desktop layout */
@media (min-width: 768px) {
  :root {
    --pv2-max: 1200px;
  }

  .pv2-container {
    width: min(100% - 48px, var(--pv2-max));
  }

  .pv2-header--brand {
    padding: 16px 24px;
  }
  .pv2-header__banner {
    min-height: 88px;
  }
  .pv2-logo {
    width: min(34vw, 420px);
    max-width: 420px;
    max-height: 96px;
  }

  .pv2-hero {
    padding-bottom: 20px;
  }
  .pv2-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 20px 32px;
    align-items: start;
    padding-top: 24px;
  }
  .pv2-hero__media {
    grid-column: 1;
    grid-row: 1;
    border-radius: var(--pv2-radius);
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .pv2-pickup--hero {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 12px;
    padding: 20px 22px 18px;
    border-top: none;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--pv2-border);
    box-shadow: var(--pv2-shadow2);
  }
  .pv2-pickup--hero .pv2-pickup__map {
    width: 100%;
    margin-top: 16px;
    border-radius: 14px;
    border-color: var(--pv2-border);
  }
  .pv2-listing {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
  }
  .pv2-listing__title {
    font-size: 34px;
  }
  .pv2-avail__grid {
    gap: 8px;
  }

  .pv2-section {
    padding: 40px 0;
  }
  .pv2-section__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .pv2-tile-grid--services {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .pv2-tile--service {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .pv2-tile--service .pv2-tile__sub {
    margin-top: auto;
  }

  .pv2-tile-grid--attach {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .pv2-tile--attach {
    height: 100%;
    padding: 16px 14px;
  }
  .pv2-attach-photo {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .pv2-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }
  .pv2-step {
    height: 100%;
  }

  .pv2-pay-banner {
    margin-top: 20px;
    padding: 18px 20px;
  }

  .pv2-checker {
    padding: 24px;
  }
  .pv2-cal-day {
    min-height: 46px;
    font-size: 15px;
  }

  .pv2-reviews-slideshow,
  .pv2-reviews-summary {
    max-width: none;
  }
  .pv2-review-card {
    padding: 22px 20px;
  }

  .pv2-about {
    padding: 22px 20px;
  }
  .pv2-about__photo {
    max-width: 280px;
  }

  .pv2-recent {
    gap: 10px;
  }
  .pv2-recent__chip {
    font-size: 15px;
    padding: 11px 18px;
  }

  .pv2-sticky-bar {
    display: none;
  }
  body.home-app-v2 {
    padding-bottom: 0;
  }
  body.home-app-v2 .mh-help-float {
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
  }
  .pv2-pickup__map iframe {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  :root {
    --pv2-max: 1220px;
  }

  .pv2-container {
    width: min(100% - 64px, var(--pv2-max));
  }

  .pv2-hero__layout {
    gap: 24px 40px;
  }

  .pv2-tile-grid--services {
    grid-template-columns: repeat(5, 1fr);
  }

  .pv2-attach-photo {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }

  .pv2-pickup__map iframe {
    height: 380px;
  }
}

@media (max-width: 380px) {
  .pv2-avail__grid {
    gap: 4px;
  }
  .pv2-day {
    padding: 6px 2px;
    font-size: 10px;
  }
}
