@charset "UTF-8";
:root {
  --ph-bg: hsl(30 55% 97%);
  --ph-card: hsl(19 80% 94%);
  --ph-primary: hsl(25 45% 30%);
  --ph-primary-dark: hsl(25 50% 18%);
  --ph-accent: hsl(4 75% 84%);
  --ph-fg: hsl(25 30% 15%);
  --ph-muted: hsl(25 18% 42%);
  --ph-border: hsl(25 20% 88%);
  --ph-surface: hsl(30 55% 97%);
  --ph-surface-soft: hsl(19 80% 94% / 0.5);
  --ph-surface-elevated: #fff;
  --ph-r: 1rem;
  --ph-r-sm: 0.5rem;
  --ph-r-lg: 1.5rem;
  --ph-r-xl: 2rem;
  --ph-r-full: 9999px;
  --ph-shadow-soft: 0 2px 8px hsl(25 40% 20% / 0.08);
  --ph-shadow-card: 0 4px 24px hsl(25 40% 20% / 0.13);
  --ph-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ph-dur: 0.18s;
  --ph-space-1: 0.25rem;
  --ph-space-2: 0.5rem;
  --ph-space-3: 0.75rem;
  --ph-space-4: 1rem;
  --ph-space-6: 1.5rem;
  --ph-space-8: 2rem;
  --ph-space-12: 3rem;
  --ph-space-16: 4rem;
  --ph-space-24: 6rem;
  --ph-icon-sm: 14px;
  --ph-icon: 16px;
  --ph-icon-md: 20px;
  --ph-icon-lg: 24px;
  --ph-text: hsl(25 30% 15%);
  --ph-card-bg: hsl(19 80% 94%);
  --ph-hover: hsl(4 75% 84%);
  --ph-r-base: 1rem;
  --ph-r-card: 1.5rem;
  --ph-r-md: 0.75rem;
  --shadow-soft: 0 2px 8px hsl(25 40% 20% / 0.08);
  --shadow-card: 0 4px 24px hsl(25 40% 20% / 0.13);
}

body {
  font-family: "Prompt", "Inter", system-ui, sans-serif;
  background: var(--ph-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Prompt", "Inter", sans-serif;
}

p {
  font-family: "Prompt", "Inter", sans-serif;
}

button, input, select, textarea, label {
  font-family: "Prompt", "Inter", sans-serif;
}

a {
  color: var(--ph-primary);
}

a:hover {
  color: var(--ph-primary-dark);
}

.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;
}

[x-cloak] {
  display: none !important;
}

.ph-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.2rem 0.375rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-card);
  flex-shrink: 0;
}
.ph-lang__item {
  padding: 0.2rem 0.4rem;
  border-radius: var(--ph-r-full);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ph-muted);
  text-decoration: none;
  line-height: 1;
  transition: color var(--ph-dur) var(--ph-ease);
}
.ph-lang__item:hover {
  color: var(--ph-fg);
}
.ph-lang__item--active {
  background: #fff;
  color: var(--ph-fg);
  box-shadow: var(--ph-shadow-soft);
}

.ph-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: hsla(30, 55%, 97%, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ph-dur) var(--ph-ease), box-shadow var(--ph-dur) var(--ph-ease);
}
.ph-header.is-scrolled {
  border-bottom-color: var(--ph-border);
  box-shadow: 0 2px 8px hsla(25, 40%, 20%, 0.06);
}

.ph-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: height var(--ph-dur) var(--ph-ease);
}

.ph-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.ph-logo:hover .ph-logo__icon {
  transform: scale(1.06);
}

.ph-logo__img {
  display: block;
  height: 45px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.ph-logo__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--ph-r);
  background: var(--ph-accent);
  color: var(--ph-fg);
  box-shadow: var(--ph-shadow-soft);
  transition: transform var(--ph-dur) var(--ph-ease);
  flex-shrink: 0;
}

.ph-logo__text {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ph-fg);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ph-logo__text em {
  font-style: normal;
  color: var(--ph-accent);
}

.ph-nav {
  display: none;
}

.ph-actions {
  display: none;
}

.ph-burger {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: var(--ph-r);
  background: var(--ph-card);
  border: none;
  cursor: pointer;
  color: var(--ph-fg);
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-burger:hover {
  background: var(--ph-accent);
}

.ph-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: hsla(25, 50%, 8%, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ph-ease);
}
.ph-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ph-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(320px, 85vw);
  z-index: 50;
  background: var(--ph-bg);
  border-left: 1px solid var(--ph-border);
  box-shadow: -4px 0 32px hsla(25, 40%, 20%, 0.15);
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  transform: translateX(100%);
  transition: transform 0.28s var(--ph-ease);
}
.ph-mobile-nav.is-open {
  transform: translateX(0);
}

.ph-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--ph-border);
  flex-shrink: 0;
}

.ph-mobile-nav__header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ph-mobile-nav__close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ph-r);
  background: var(--ph-card);
  border: none;
  cursor: pointer;
  color: var(--ph-fg);
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-mobile-nav__close:hover {
  background: var(--ph-accent);
}

.ph-mobile-menu {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.ph-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--ph-r-lg);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ph-fg);
  text-decoration: none;
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-mobile-menu a:hover {
  background: var(--ph-card);
}
.ph-mobile-menu .current-menu-item > a {
  background: var(--ph-card);
}

.ph-mobile-nav__label {
  margin: 0.25rem 0 0.125rem;
  padding: 0.375rem 1rem 0.125rem;
  font-size: 0.7rem;
  font-family: "Prompt", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ph-muted);
}

.ph-mobile-nav__nearme {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--ph-r-lg);
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  text-decoration: none;
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-mobile-nav__nearme svg {
  color: var(--ph-primary);
  flex-shrink: 0;
}
.ph-mobile-nav__nearme:hover {
  background: var(--ph-card);
}

.ph-mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--ph-border);
}

.ph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0 1rem;
  height: 2.25rem;
  border-radius: var(--ph-r-full);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ph-dur) var(--ph-ease), color var(--ph-dur) var(--ph-ease), border-color var(--ph-dur) var(--ph-ease);
}
.ph-btn--primary {
  background: var(--ph-primary);
  color: #fff;
}
.ph-btn--primary:hover {
  background: var(--ph-primary-dark);
  color: #fff;
}
.ph-btn--ghost {
  background: transparent;
  color: var(--ph-fg);
}
.ph-btn--ghost:hover {
  background: var(--ph-card);
  color: var(--ph-fg);
}
.ph-btn--outline {
  background: transparent;
  color: var(--ph-fg);
  border: 1px solid var(--ph-border);
}
.ph-btn--outline:hover {
  background: var(--ph-card);
}
.ph-btn--sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
}
.ph-btn--md {
  height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.ph-btn--lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--ph-r-lg);
}
.ph-btn--full {
  height: 3rem;
  border-radius: var(--ph-r-lg);
  font-size: 1rem;
  width: 100%;
}
.ph-btn--block {
  width: 100%;
}

.ph-mobile-right {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.ph-mobile-cta {
  font-size: 0.8125rem;
  padding: 0 0.75rem;
  height: 2rem;
}

.site-footer {
  background: #452a17;
}

.footer-widgets {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-inline: max(1.25rem, 4vw);
}
.footer-widgets .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1180px !important;
}
.footer-widgets .is-layout-constrained > .alignwide {
  max-width: 1180px !important;
}
.footer-widgets .has-background {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.footer-widgets .wp-block-column {
  margin: 0;
}
.footer-widgets .wp-block-columns {
  gap: 1.5rem;
}
.footer-widgets hr,
.footer-widgets .wp-block-separator {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border: none;
}

.footer-bar {
  background: #452a17;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bar .s-container {
  max-width: 1180px;
}
.footer-bar .text {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-widgets .s_social {
  gap: 0.625rem;
  flex-wrap: wrap;
}
.footer-widgets .s_social a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background var(--ph-dur) var(--ph-ease);
  flex-shrink: 0;
}
.footer-widgets .s_social a:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.footer-widgets .s_social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-widgets .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-widgets .menu a {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--ph-dur) var(--ph-ease);
}
.footer-widgets .menu a:hover {
  color: #fff;
}
.footer-widgets .menu .current-menu-item > a {
  color: #fff;
}

.footer-widgets .gspb_image img {
  max-width: 160px !important;
  height: auto !important;
}
.footer-widgets .gspb_text {
  font-family: "Prompt", "Inter", sans-serif !important;
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
  line-height: 1.6;
}
.footer-widgets .gspb_iconsList {
  --wp--preset--color--bg-1: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem !important;
}
.footer-widgets .gspb_iconsList .gspb_iconsList__item {
  gap: 0.5rem;
}
.footer-widgets .gspb_iconsList .gspb_iconsList__item + .gspb_iconsList__item {
  margin-top: 0.375rem;
}
.footer-widgets .gspb_iconsList__item__text {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72) !important;
}
.footer-widgets .gspb_heading {
  font-family: "Prompt", "Inter", sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: hsl(4, 75%, 84%) !important;
  letter-spacing: 0.02em;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

@media (max-width: 767px) {
  .footer-widgets .gspb_container:has(> .gspb_container ~ .gspb_container ~ .gspb_container) {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem 1rem !important;
  }
  .footer-widgets .gspb_container > .gspb_container {
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .footer-widgets .gspb_container > .gspb_container:first-of-type {
    grid-column: 1/-1;
  }
}
.ph-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  font-family: "Prompt", "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ph-muted);
}
.ph-breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.ph-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ph-muted);
  text-decoration: none !important;
}
.ph-breadcrumbs__item[href] {
  color: var(--ph-muted);
  text-decoration: none !important;
}
.ph-breadcrumbs__item[href]:hover {
  color: var(--ph-primary);
}
.ph-breadcrumbs__item--current {
  color: var(--ph-fg);
  font-weight: 500;
}
.ph-breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ph-muted);
  text-decoration: none !important;
  transition: color var(--ph-dur) var(--ph-ease);
}
.ph-breadcrumbs__link:hover {
  color: var(--ph-primary);
}
.ph-breadcrumbs__current {
  font-family: inherit;
  font-size: 0.8125rem;
  color: var(--ph-fg);
  font-weight: 500;
  max-width: min(220px, 50vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-breadcrumbs__chevron {
  flex-shrink: 0;
  opacity: 0.45;
  color: var(--ph-muted);
}
.ph-breadcrumbs__home-icon {
  flex-shrink: 0;
}
.ph-breadcrumbs__sep {
  font-size: 0.75rem;
  color: var(--ph-border);
  opacity: 0.7;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.ph-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ph-card {
  background: var(--ph-card);
  border-radius: var(--ph-r-xl);
  padding: 1.25rem;
  box-shadow: var(--ph-shadow-soft);
}
.ph-card--white {
  background: #fff;
}
.ph-card--bordered {
  border: 1px solid var(--ph-border);
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--ph-r-full);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--ph-primary);
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
}
.ph-badge--verified {
  background: hsl(142, 60%, 38%);
}
.ph-badge--urgent {
  background: hsl(0, 75%, 50%);
}
.ph-badge--adopt {
  background: hsl(275, 55%, 50%);
}

.ph-provider-card {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 1px 3px hsla(25, 30%, 15%, 0.06), 0 4px 16px hsla(25, 30%, 15%, 0.06);
  border: 1.5px solid transparent;
  transition: box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-provider-card:hover {
  box-shadow: 0 4px 24px hsla(25, 30%, 15%, 0.14);
  transform: translateY(-3px);
}
.ph-provider-card--highlighted {
  border-color: var(--ph-primary);
}
.ph-provider-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ph-provider-card__thumb-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph-card);
  text-decoration: none;
}
.ph-provider-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ph-ease);
}
.ph-provider-card__thumb--placeholder {
  background: var(--ph-card) url("../img/placeholder.webp") center/cover no-repeat;
}
.ph-provider-card:hover .ph-provider-card__thumb {
  transform: scale(1.05);
}
.ph-provider-card__badges {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}
.ph-provider-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  height: 1.75rem;
  padding: 0 0.75rem 0 0.5rem;
  border-radius: 2rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.ph-provider-card__badge--promoted {
  background: hsl(38, 80%, 45%);
  color: #fff;
}
.ph-provider-card__badge--featured {
  background: hsl(38, 80%, 45%);
  color: #fff;
}
.ph-provider-card__badge--free {
  background: hsl(142, 50%, 38%);
  color: #fff;
}
.ph-provider-card__badge--verified-biz {
  background: hsl(25, 50%, 18%);
  color: #fff;
}
.ph-provider-card__badge--verified-kyc {
  background: hsl(25, 35%, 40%);
  color: #fff;
}
.ph-provider-card__badge--reward {
  background: hsl(45, 85%, 42%);
  color: hsl(35, 80%, 10%);
}
.ph-provider-card__body {
  padding: 0.875rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ph-provider-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.ph-provider-card__name {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.ph-provider-card__name a {
  color: var(--ph-fg);
  text-decoration: none;
}
.ph-provider-card__name a:hover {
  color: var(--ph-primary);
}
.ph-provider-card__check {
  flex-shrink: 0;
  color: var(--ph-primary);
  margin-top: 0.2rem;
  line-height: 0;
}
.ph-provider-card__location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0;
}
.ph-provider-card__location svg {
  flex-shrink: 0;
}
.ph-provider-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.ph-provider-card__pets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}
.ph-provider-card__pets .ph-tag-chip {
  font-size: 0.625rem;
  padding: 0.1rem 0.4rem;
}
.ph-provider-card__price-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.75rem;
  background: hsl(4, 75%, 92%);
  color: hsl(4, 60%, 38%);
  border-radius: 2rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.ph-provider-card__price-pill--free {
  background: hsl(142, 60%, 90%);
  color: hsl(142, 50%, 25%);
}
.ph-provider-card__price-pill--paid {
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 25%);
}
.ph-provider-card__price-pill--reward {
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 25%);
}
.ph-provider-card__badge--found {
  background: hsl(142, 60%, 88%);
  color: hsl(142, 50%, 22%);
}
.ph-provider-card__badge--urgent {
  background: hsl(0, 90%, 92%);
  color: hsl(0, 65%, 30%);
}
.ph-provider-card--found {
  opacity: 0.6;
}
.ph-provider-card--resolved {
  opacity: 0.6;
  pointer-events: none;
}
.ph-provider-card__resolved-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: hsla(142, 40%, 20%, 0.72);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-provider-card__reward-pill {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  padding: 0.2rem 0.625rem;
  border-radius: var(--ph-r-full);
  background: hsl(35, 90%, 88%);
  color: hsl(35, 55%, 25%);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-provider-card__sub {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0;
}
.ph-provider-card__health {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.ph-provider-card__lost-date {
  font-size: 0.8125rem;
  color: var(--ph-fg);
  margin: 0;
}
.ph-provider-card__days--urgent {
  color: hsl(0, 65%, 42%);
}
.ph-provider-card__days--warning {
  color: hsl(35, 55%, 35%);
}
.ph-provider-card__posted {
  font-size: 0.75rem;
  color: var(--ph-muted);
}
.ph-provider-card--request .ph-provider-card__body {
  gap: 0.5rem;
}
.ph-provider-card--request .ph-provider-card__name {
  font-size: 0.9375rem;
}

.ph-provider-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ph-provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ph-star {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8rem;
}
.ph-star__icon {
  color: hsl(38, 95%, 50%);
  font-size: 0.9rem;
  line-height: 1;
}
.ph-star__score {
  font-weight: 600;
  color: var(--ph-fg);
}
.ph-star__count {
  color: var(--ph-muted);
}

.ph-tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--ph-r-full);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--ph-card);
  color: var(--ph-primary);
  border: 1px solid var(--ph-border);
  white-space: nowrap;
}

.ph-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ph-section-header__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
}
.ph-section-header__link {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ph-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.ph-section-header__link:hover {
  text-decoration: underline;
}

.ph-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.ph-pagination__info {
  margin: 0;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--ph-muted);
}

.ph-pagination__hint {
  margin: 0;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  background: var(--ph-card);
  padding: 0.5rem 0.875rem;
  border-radius: var(--ph-r-full);
}

.ph-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.ph-pagination__nums {
  display: none;
  gap: 0.25rem;
}
.ph-pagination__current-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--ph-fg);
  padding: 0 0.625rem;
}
.ph-pagination__current-mobile strong {
  font-weight: 600;
  color: var(--ph-primary);
}
.ph-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: var(--ph-r);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-fg);
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--ph-card);
  cursor: pointer;
  transition: background 0.15s var(--ph-ease), color 0.15s var(--ph-ease), transform 0.1s var(--ph-ease);
}
.ph-pagination__item:hover:not(:disabled):not(.ph-pagination__item--active):not(.ph-pagination__item--ellipsis) {
  background: var(--ph-primary);
  color: #fff;
  transform: translateY(-1px);
}
.ph-pagination__item:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
}
.ph-pagination__item--active {
  background: var(--ph-primary);
  border-color: var(--ph-primary);
  color: #fff;
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}
.ph-pagination__item--ellipsis, .ph-pagination__item--dots {
  background: transparent;
  border: none;
  color: var(--ph-muted);
  cursor: default;
  pointer-events: none;
  min-width: 1.5rem;
}
.ph-pagination__item--nav {
  background: transparent;
  color: var(--ph-fg);
}
.ph-pagination__item--nav:hover:not(:disabled) {
  background: var(--ph-card);
  color: var(--ph-primary);
  transform: translateY(-1px);
}
.ph-pagination__item:disabled, .ph-pagination__item[aria-disabled=true] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
}
.ph-pagination__icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@media (min-width: 768px) {
  .ph-pagination__nums {
    display: inline-flex;
  }
  .ph-pagination__current-mobile {
    display: none;
  }
}
@media print {
  .ph-pagination-wrap {
    display: none;
  }
}
@keyframes ph-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.ph-skeleton {
  background: linear-gradient(90deg, var(--ph-card) 25%, hsl(30, 50%, 92%) 50%, var(--ph-card) 75%);
  background-size: 800px 100%;
  animation: ph-shimmer 1.4s infinite linear;
  border-radius: var(--ph-r);
}
.ph-skeleton--text {
  height: 1rem;
  border-radius: var(--ph-r-sm);
}
.ph-skeleton--title {
  height: 1.4rem;
  border-radius: var(--ph-r-sm);
}
.ph-skeleton--image {
  aspect-ratio: 16/9;
  border-radius: var(--ph-r-lg) var(--ph-r-lg) 0 0;
}

.ph-card-save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: hsl(25, 20%, 62%);
  border-radius: 50%;
  transition: color 0.18s, background 0.18s;
}
.ph-card-save-btn:hover {
  color: hsl(4, 72%, 52%);
  background: hsla(4, 75%, 84%, 0.2);
}
.ph-card-save-btn.is-saved {
  color: hsl(4, 72%, 52%);
}
.ph-card-save-btn:disabled {
  opacity: 0.45;
  cursor: default;
}
.ph-card-save-btn--overlay {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  background: hsla(0, 0%, 100%, 0.88);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 5px hsla(0, 0%, 0%, 0.22);
}
.ph-card-save-btn--overlay:hover {
  background: #fff;
  color: hsl(4, 72%, 52%);
}
.ph-card-save-btn--overlay.is-saved {
  color: hsl(4, 72%, 52%);
}

.ph-provider-card--skeleton {
  background: #fff;
  border-radius: var(--ph-r-xl);
  overflow: hidden;
  box-shadow: var(--ph-shadow-soft);
}
.ph-provider-card--skeleton .ph-skeleton--image {
  display: block;
}
.ph-provider-card--skeleton .ph-skeleton-body {
  padding: 0.875rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-job-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-job-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 3px hsla(25, 30%, 15%, 0.06), 0 4px 16px hsla(25, 30%, 15%, 0.06);
  transition: box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.ph-job-card:hover {
  box-shadow: 0 4px 24px hsla(25, 30%, 15%, 0.14);
  transform: translateY(-2px);
}
.ph-job-card--urgent {
  border-color: hsl(25, 65%, 58%);
}
.ph-job-card__icon-col {
  flex-shrink: 0;
  width: 5.5rem;
  background: var(--ph-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}
.ph-job-card--has-photo .ph-job-card__icon-col {
  padding: 0;
  width: 6rem;
  align-items: stretch;
  justify-content: stretch;
}
.ph-job-card__pet-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph-job-card__pet-initial {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.ph-job-card__pet-photo {
  width: 100%;
  height: 100%;
  min-height: 5rem;
  object-fit: cover;
  display: block;
  border-radius: 0;
  flex: 1;
}
.ph-job-card__svc-badge {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1.5px solid #fff;
  margin-top: -0.5rem;
}
.ph-job-card__svc-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ph-job-card__svc-icon--stay-play {
  background: hsl(25, 50%, 30%);
}
.ph-job-card__svc-icon--sitting {
  background: hsl(210, 55%, 42%);
}
.ph-job-card__svc-icon--walking {
  background: hsl(142, 45%, 36%);
}
.ph-job-card__svc-icon--vet {
  background: hsl(355, 58%, 48%);
}
.ph-job-card__svc-sub {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin: 0;
  line-height: 1.3;
}
.ph-job-card__duration {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(25, 45%, 32%);
  background: hsl(25, 40%, 94%);
  padding: 0.1rem 0.4rem;
  border-radius: 0.3rem;
  white-space: nowrap;
}
.ph-job-card__urgent-badge {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: hsl(25, 70%, 38%);
  background: hsl(25, 80%, 94%);
  border-radius: var(--ph-r-full);
  padding: 0.1rem 0.35rem;
  line-height: 1.5;
  white-space: nowrap;
}
.ph-job-card__body {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ph-job-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 0.1rem;
}
.ph-job-card__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.ph-job-card__title a {
  color: var(--ph-fg);
  text-decoration: none;
}
.ph-job-card__title a:hover {
  color: var(--ph-primary);
}
.ph-job-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.ph-job-card__meta {
  font-size: 0.8rem;
  color: var(--ph-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.375rem;
  align-items: center;
  margin-top: 0.1rem;
}
.ph-job-card__dates {
  font-size: 0.8125rem;
  color: var(--ph-fg);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.ph-job-card__countdown {
  font-size: 0.7rem;
  font-weight: 700;
  color: hsl(25, 65%, 35%);
  background: hsl(25, 65%, 95%);
  padding: 0.1rem 0.4rem;
  border-radius: 0.3rem;
}
.ph-job-card__budget {
  font-size: 0.8125rem;
  color: hsl(142, 45%, 30%);
  font-weight: 600;
}
.ph-job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid hsl(25, 20%, 93%);
}
.ph-job-card__posted {
  font-size: 0.75rem;
  color: var(--ph-muted);
}
.ph-job-card__action {
  display: none;
}

.ph-dash-nearby-jobs {
  background: var(--ph-card);
  border-radius: var(--ph-r-lg);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.ph-dash-nearby-jobs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ph-dash-nearby-jobs__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ph-text);
}
.ph-dash-nearby-jobs__more {
  font-size: 0.8125rem;
  color: var(--ph-primary);
  font-weight: 500;
  text-decoration: none;
}
.ph-dash-nearby-jobs__more:hover {
  text-decoration: underline;
}

.ph-matched-providers {
  margin-top: 2rem;
  text-align: left;
}
.ph-matched-providers__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-text);
  margin-bottom: 0.75rem;
}
.ph-matched-providers__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ph-matched-providers__more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--ph-primary);
  font-weight: 500;
  text-decoration: none;
}
.ph-matched-providers__more:hover {
  text-decoration: underline;
}

.ph-matched-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: var(--ph-card);
  border-radius: var(--ph-r-lg);
  text-decoration: none;
  transition: background 0.15s;
}
.ph-matched-card:hover {
  background: hsl(25, 30%, 91%);
}
.ph-matched-card__img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--ph-r-md);
  overflow: hidden;
  flex-shrink: 0;
  background: hsl(25, 30%, 88%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-matched-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-matched-card__img-fallback {
  color: var(--ph-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-matched-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ph-matched-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-matched-card__meta {
  font-size: 0.75rem;
  color: var(--ph-muted);
}
.ph-matched-card__arrow {
  flex-shrink: 0;
  color: var(--ph-muted);
}

.ph-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
}

.ph-community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ph-community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ph-community-card {
  background: #fff;
  border-radius: var(--ph-r-lg);
  overflow: hidden;
  box-shadow: var(--ph-shadow-soft);
  border: 1.5px solid transparent;
}
.ph-community-card--urgent {
  border-color: hsla(0, 75%, 50%, 0.3);
}
.ph-community-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph-card);
}
.ph-community-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-community-card__image-wrap .ph-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
.ph-community-card__image--placeholder {
  width: 100%;
  height: 100%;
  background: var(--ph-card);
}
.ph-community-card__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ph-community-card__body h4 {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}
.ph-community-card__body h4 a {
  color: var(--ph-fg);
  text-decoration: none;
}
.ph-community-card__body h4 a:hover {
  color: var(--ph-primary);
}
.ph-community-card__location {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-searchbar {
  width: 100%;
}

.ph-section-eyebrow {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ph-primary);
  margin: 0 0 0.5rem;
}
.ph-section-eyebrow--light {
  color: var(--ph-accent);
}

.ph-hero {
  position: relative;
  overflow: hidden;
  background: hsla(19, 80%, 94%, 0.5);
  padding: 2.5rem 0 3rem;
}
.ph-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(25, 80%, 95%), hsla(4, 80%, 95%, 0.4));
  pointer-events: none;
}
.ph-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ph-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ph-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--ph-r-full);
  background: #fff;
  box-shadow: var(--ph-shadow-soft);
  border: 1px solid var(--ph-border);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ph-fg);
  width: fit-content;
}
.ph-hero__eyebrow svg {
  color: var(--ph-primary);
}
.ph-hero__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ph-fg);
  margin: 0;
}
.ph-hero__title mark {
  background: hsla(4, 75%, 84%, 0.45);
  padding: 0.1em 0.4em;
  border-radius: var(--ph-r-lg);
  color: var(--ph-fg);
}
.ph-hero__title .ph-nowrap {
  white-space: nowrap;
}
.ph-hero__subtitle {
  font-size: 1rem;
  color: hsla(25, 30%, 15%, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 36rem;
}
.ph-hero__image-wrap {
  position: relative;
}
.ph-hero__image-frame {
  aspect-ratio: 1;
  border-radius: var(--ph-r-xl);
  overflow: hidden;
  background: var(--ph-card);
  box-shadow: 0 30px 60px -20px hsla(4, 75%, 84%, 0.55);
  max-width: 480px;
  margin: 0 auto;
}
.ph-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-hero__image--placeholder {
  background: linear-gradient(135deg, var(--ph-card), var(--ph-accent));
}
.ph-hero__bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border-radius: var(--ph-r-lg);
  box-shadow: var(--ph-shadow-card);
  padding: 0.625rem 1rem;
  animation: ph-float 3s ease-in-out infinite;
}
.ph-hero__bubble--top {
  top: 0.75rem;
  right: -0.5rem;
}
.ph-hero__bubble--bottom {
  bottom: -0.75rem;
  left: 1rem;
  animation-delay: 1.5s;
}
.ph-hero__bubble-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-accent);
  color: var(--ph-primary);
  flex-shrink: 0;
}
.ph-hero__bubble-icon--pink {
  color: hsl(345, 80%, 55%);
}
.ph-hero__bubble-label {
  font-size: 0.65rem;
  color: var(--ph-muted);
  line-height: 1;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-hero__bubble-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.2;
}
.ph-hero__searchbar--mobile {
  display: block;
}
.ph-hero__searchbar--desktop {
  display: none;
}

@keyframes ph-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ph-hero__bubble {
    animation: none;
  }
}
.ph-how-it-works {
  background: var(--ph-bg);
  padding: 3.5rem 0;
}
.ph-how-it-works__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.ph-how-it-works__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--ph-fg);
}
.ph-how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ph-how-it-works__card {
  background: var(--ph-card);
  border-radius: var(--ph-r-xl);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--ph-shadow-soft);
  transition: box-shadow var(--ph-dur) var(--ph-ease);
}
.ph-how-it-works__card:hover {
  box-shadow: var(--ph-shadow-card);
}
.ph-how-it-works__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--ph-r-lg);
  background: var(--ph-accent);
  color: var(--ph-fg);
  flex-shrink: 0;
}
.ph-how-it-works__step-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--ph-fg);
}
.ph-how-it-works__step-desc {
  font-size: 0.875rem;
  color: hsla(25, 30%, 15%, 0.75);
  margin: 0;
  line-height: 1.6;
}

.ph-featured-section__wrapper { /* outer wrapper */ }

.ph-featured-section__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
}

.ph-featured-section__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--ph-fg);
}

.ph-featured-section__all-link {
  display: none;
  align-items: center;
  gap: 0.25rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.ph-featured-section__all-link:hover {
  text-decoration: underline;
}

.ph-featured-section {
  padding: 2.5rem 0;
}
.ph-featured-section--alt {
  background: hsla(19, 80%, 94%, 0.5);
}
.ph-featured-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ph-featured-section__cat-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--ph-fg);
}
.ph-featured-section__cat-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ph-r);
  background: var(--ph-accent);
  color: var(--ph-primary);
  flex-shrink: 0;
}

.ph-community {
  position: relative;
  margin-top: 1.5rem;
}
.ph-community__wave {
  display: block;
  width: 100%;
  height: 3rem;
}
.ph-community__wave--top {
  margin-bottom: -1px;
}
.ph-community__wave--bottom {
  margin-top: -1px;
}
.ph-community__body {
  background: #6e472a;
  color: #fff;
  padding: 3.5rem 0;
}
.ph-community__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.ph-community__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.ph-community__block + .ph-community__block {
  margin-top: 3rem;
}
.ph-community__block-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ph-community__block-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ph-community__block-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--ph-r-lg);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ph-accent);
  flex-shrink: 0;
}
.ph-community__block-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.ph-community__block-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.125rem 0 0;
}
.ph-community__all-link {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.ph-community__all-link:hover {
  text-decoration: underline;
}

.ph-community .ph-community-card {
  background: var(--ph-bg);
  color: var(--ph-fg);
}
.ph-community .ph-community-card__body h4 a {
  color: var(--ph-fg);
}

.ph-promo-section {
  padding: 1rem 0 2.5rem;
}

.ph-promo-carousel {
  position: relative;
  border-radius: var(--ph-r-xl);
  overflow: hidden;
}
.ph-promo-carousel__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ph-muted);
  padding: 0.2rem 0.6rem;
  border-radius: var(--ph-r-full);
}
.ph-promo-carousel__track {
  display: grid;
  position: relative;
  height: 160px;
}
@media (min-width: 640px) {
  .ph-promo-carousel__track {
    height: 180px;
  }
}
@media (min-width: 768px) {
  .ph-promo-carousel__track {
    height: 200px;
  }
}
.ph-promo-carousel__slide {
  grid-area: 1/1;
  position: relative;
  display: flex;
  text-decoration: none;
  background: var(--ph-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.ph-promo-carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
}
.ph-promo-carousel__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ph-promo-carousel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, hsla(25, 50%, 18%, 0.78) 0%, hsla(25, 50%, 18%, 0.42) 55%, transparent 100%);
}
.ph-promo-carousel__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  max-width: 34rem;
}
.ph-promo-carousel__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ph-fg);
  margin: 0 0 0.25rem;
}
.ph-promo-carousel__subtitle {
  font-size: 0.875rem;
  color: hsla(25, 30%, 15%, 0.75);
  margin: 0 0 0.75rem;
}
.ph-promo-carousel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-fg);
  color: #fff;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  width: fit-content;
}
.ph-promo-carousel__slide--has-image .ph-promo-carousel__title {
  color: #fff;
}
.ph-promo-carousel__slide--has-image .ph-promo-carousel__subtitle {
  color: rgba(255, 255, 255, 0.88);
}
.ph-promo-carousel__slide--has-image .ph-promo-carousel__cta {
  background: #fff;
  color: var(--ph-fg);
}
.ph-promo-carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  display: flex;
  gap: 0.375rem;
}
.ph-promo-carousel__dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: var(--ph-r-full);
  background: hsla(25, 30%, 15%, 0.35);
  border: none;
  cursor: pointer;
  transition: width var(--ph-dur) var(--ph-ease), background var(--ph-dur) var(--ph-ease);
}
.ph-promo-carousel__dot--active {
  width: 1.5rem;
  background: var(--ph-fg);
}
.ph-promo-carousel__dots--on-image .ph-promo-carousel__dot {
  background: rgba(255, 255, 255, 0.45);
}
.ph-promo-carousel__dots--on-image .ph-promo-carousel__dot--active {
  background: #fff;
  width: 1.5rem;
}

.ph-gradient-warm {
  background: linear-gradient(135deg, hsl(19, 80%, 88%), hsl(4, 75%, 84%));
}

.ph-gradient-earth {
  background: linear-gradient(135deg, hsl(30, 50%, 82%), hsl(25, 40%, 72%));
}

.ph-gradient-sage {
  background: linear-gradient(135deg, hsl(100, 20%, 85%), hsl(130, 15%, 75%));
}

.ph-gradient-ocean {
  background: linear-gradient(135deg, hsl(200, 50%, 82%), hsl(220, 40%, 72%));
}

.ph-partners {
  padding: 3.5rem 0;
}
.ph-partners__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--ph-fg);
}
.ph-partners__viewport {
  overflow: hidden;
}
.ph-partners__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0.25, 1);
  will-change: transform;
}
.ph-partners__page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.ph-partners__item {
  display: grid;
  place-items: center;
  height: 4rem;
  border-radius: var(--ph-r-lg);
  background: var(--ph-card);
  padding: 0.5rem 1rem;
}
.ph-partners__item img {
  max-height: 2.5rem;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter var(--ph-dur) var(--ph-ease);
}
.ph-partners__item a {
  display: contents;
}
.ph-partners__item:hover img {
  filter: grayscale(0);
}
.ph-partners__name {
  font-family: "Inter", "Prompt", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: hsla(25, 30%, 15%, 0.75);
  text-align: center;
  line-height: 1.3;
}
.ph-partners__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ph-partners__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: hsla(25, 30%, 15%, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-partners__dot.active {
  background: var(--ph-primary);
  transform: scale(1.3);
}

.ph-testimonials {
  background: hsla(19, 80%, 94%, 0.4);
  padding: 3.5rem 0;
}
.ph-testimonials__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--ph-fg);
}
.ph-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ph-testimonials__slider {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ph-testimonials__viewport {
  overflow: hidden;
}
.ph-testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0.25, 1);
  will-change: transform;
}
.ph-testimonials__page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ph-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.ph-testimonials__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--ph-r-full);
  background: hsla(25, 30%, 15%, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ph-testimonials__dot--active {
  background: var(--ph-primary);
  transform: scale(1.3);
}

.ph-testimonial-card {
  background: #fff;
  border-radius: var(--ph-r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--ph-shadow-soft);
  border: 1px solid var(--ph-border);
  margin: 0;
}
.ph-testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  color: hsl(38, 95%, 50%);
}
.ph-testimonial-card__star--empty {
  color: hsla(38, 95%, 50%, 0.3);
}
.ph-testimonial-card__text {
  font-family: "Prompt", "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: hsla(25, 30%, 15%, 0.78);
  line-height: 1.7;
  margin: 0;
}
.ph-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ph-testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--ph-r-full);
  object-fit: cover;
  flex-shrink: 0;
}
.ph-testimonial-card__avatar--placeholder {
  background: var(--ph-card);
}
.ph-testimonial-card__name {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ph-fg);
}
.ph-testimonial-card__role {
  font-size: 0.75rem;
  color: var(--ph-muted);
}

.ph-provider-cta {
  padding: 3.5rem 0;
}
.ph-provider-cta__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ph-r-xl);
  background: var(--ph-accent);
  padding: 2.5rem 2rem;
}
.ph-provider-cta__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ph-provider-cta__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ph-fg);
  margin: 0;
}
.ph-provider-cta__desc {
  font-size: 0.9375rem;
  color: hsla(25, 30%, 15%, 0.72);
  margin: 0;
}
.ph-provider-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ph-provider-cta__deco {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: var(--ph-r-full);
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.ph-btn--cta-primary {
  background: var(--ph-primary);
  color: #fff;
  height: 3rem;
  border-radius: var(--ph-r-lg);
  font-size: 1rem;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.ph-btn--cta-primary:hover {
  background: var(--ph-primary-dark);
  color: #fff;
}

.ph-btn--cta-outline {
  background: rgba(255, 255, 255, 0.4);
  color: var(--ph-fg);
  height: 3rem;
  border-radius: var(--ph-r-lg);
  font-size: 1rem;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 600;
  border: 1px solid hsla(25, 30%, 15%, 0.18);
}
.ph-btn--cta-outline:hover {
  background: rgba(255, 255, 255, 0.65);
}

.ph-blog-preview {
  padding: 0 0 3.5rem;
}
.ph-blog-preview__sub {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0.25rem 0 0;
}

.ph-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ph-blog-card {
  background: #fff;
  border-radius: var(--ph-r-xl);
  border: 1px solid var(--ph-border);
  overflow: hidden;
  box-shadow: var(--ph-shadow-soft);
  transition: box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-blog-card:hover {
  box-shadow: var(--ph-shadow-card);
  transform: translateY(-2px);
}
.ph-blog-card__image-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph-card);
}
.ph-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ph-ease);
}
.ph-blog-card__image--placeholder {
  background: var(--ph-card);
}
.ph-blog-card:hover .ph-blog-card__image {
  transform: scale(1.04);
}
.ph-blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.ph-blog-card__category {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ph-primary);
}
.ph-blog-card__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph-blog-card__title a {
  color: var(--ph-fg);
  text-decoration: none;
}
.ph-blog-card__title a:hover {
  color: var(--ph-primary);
}
.ph-blog-card__excerpt {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph-blog-card__date {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.72rem;
  color: var(--ph-muted);
}

.ph-chip {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: var(--ph-r-full);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-fg);
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ph-dur) var(--ph-ease), border-color var(--ph-dur) var(--ph-ease), color var(--ph-dur) var(--ph-ease);
}
.ph-chip:hover {
  background: var(--ph-card);
  border-color: var(--ph-primary);
}
.ph-chip--active {
  background: var(--ph-primary);
  border-color: var(--ph-primary);
  color: #fff;
}
.ph-chip--active:hover {
  background: var(--ph-primary-dark);
}
.ph-chip--sm {
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
}

.ph-select-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.ph-select-wrap::after {
  content: "";
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ph-muted);
  pointer-events: none;
}
.ph-select-wrap--sm {
  flex: 0 0 auto;
  min-width: 13rem;
}

.ph-select {
  width: 100%;
  height: 2.625rem;
  padding: 0 2.25rem 0 0.875rem;
  border-radius: var(--ph-r);
  border: 1px solid var(--ph-border);
  background: #fff;
  font-family: "Prompt", "Inter", sans-serif !important;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ph-fg);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--ph-dur) var(--ph-ease);
}
.ph-select:focus {
  outline: none;
  border-color: var(--ph-primary);
}
.ph-select:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}
.ph-select--sm {
  height: 2.25rem;
  font-size: 0.8125rem !important;
  padding: 0 1.75rem 0 0.75rem;
}

.ph-btn--search {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.625rem;
  padding: 0 1.25rem;
  border-radius: var(--ph-r);
  background: var(--ph-primary);
  color: #fff;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-btn--search:hover {
  background: var(--ph-primary-dark);
}

.ph-btn--reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.5rem;
  border-radius: var(--ph-r);
  background: transparent;
  border: 1px solid var(--ph-border);
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--ph-dur) var(--ph-ease), color var(--ph-dur) var(--ph-ease);
}
.ph-btn--reset:hover {
  border-color: var(--ph-primary);
  color: var(--ph-primary);
}

.ph-browse__header {
  background: hsla(19, 80%, 94%, 0.45);
  padding: 1.5em 0;
  border-bottom: 1px solid var(--ph-border);
}

.ph-browse__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .ph-browse__heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.ph-browse__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0 0 0.375rem;
  line-height: 1.2;
  text-align: left;
}
@media (min-width: 768px) {
  .ph-browse__title {
    font-size: 2rem;
  }
}

.ph-browse__subtitle {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-browse__search-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-xl);
  box-shadow: var(--ph-shadow-card);
  overflow: hidden;
  padding: 0.375rem;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .ph-browse__search-card {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0.375rem;
  }
}

.ph-browse__search-field {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1rem;
  flex: 1;
  min-width: 0;
  height: 3rem;
  border-bottom: 1px solid var(--ph-border);
}
.ph-browse__search-field:last-of-type {
  border-bottom: none;
}
@media (min-width: 768px) {
  .ph-browse__search-field {
    border-bottom: none;
    border-right: 1px solid var(--ph-border);
    height: auto;
  }
  .ph-browse__search-field--sep {
    border-left: none;
  }
  .ph-browse__search-field:last-of-type {
    border-right: none;
  }
}

.ph-browse__search-icon {
  flex-shrink: 0;
  color: var(--ph-muted);
}

.ph-browse__search-card:focus-within {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
}

.ph-browse__search-select,
.ph-browse__search-input {
  width: 100%;
  height: 2.75rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  color: var(--ph-fg);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.ph-browse__search-select::placeholder,
.ph-browse__search-input::placeholder {
  color: var(--ph-muted);
}
.ph-browse__search-select option,
.ph-browse__search-input option {
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-browse__search-input {
  cursor: text;
}

.ph-browse__search-select:disabled {
  color: var(--ph-muted);
  cursor: not-allowed;
  opacity: 0.7;
}

.ph-browse__search-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1.75rem;
  background: var(--ph-primary);
  color: #fff;
  border: none;
  border-radius: var(--ph-r-lg);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ph-dur) var(--ph-ease);
  white-space: nowrap;
}
.ph-browse__search-btn:hover {
  background: var(--ph-primary-dark);
}

.ph-browse__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ph-browse__chips-label {
  font-size: 0.8rem;
  color: var(--ph-muted);
  font-weight: 500;
  white-space: nowrap;
}

.ph-browse__toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ph-border);
}

.ph-browse__filter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.25rem;
  padding: 0 0.875rem;
  border-radius: var(--ph-r-full);
  background: #fff;
  border: 1px solid var(--ph-border);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ph-fg);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--ph-dur) var(--ph-ease);
}
.ph-browse__filter-btn:hover {
  border-color: var(--ph-primary);
}

.ph-browse__filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  margin-left: 0.125rem;
}

.ph-browse__count {
  font-size: 0.875rem;
  color: var(--ph-muted);
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}
.ph-browse__count strong {
  color: var(--ph-fg);
  font-weight: 700;
}

.ph-browse__body {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.ph-browse__backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: hsla(25, 30%, 15%, 0.4);
  backdrop-filter: blur(2px);
}

.ph-browse__sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: 18rem;
  background: #fff;
  box-shadow: var(--ph-shadow-card);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ph-ease);
  overflow-y: auto;
}
.ph-browse__sidebar.is-open {
  transform: translateX(0);
}

.ph-browse__sidebar-inner {
  padding: 0 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ph-browse__sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.5rem;
  border-bottom: 1px solid var(--ph-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  margin: 0 -1.25rem;
  padding: 1rem 1.25rem 0.75rem;
}

.ph-browse__sidebar-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ph-fg);
}

.ph-browse__sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-card);
  border: none;
  cursor: pointer;
  color: var(--ph-fg);
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-browse__sidebar-close:hover {
  background: var(--ph-border);
}

.ph-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ph-filter-group + .ph-filter-group {
  padding-top: 0.875rem;
  border-top: 1px solid hsl(25, 20%, 91%);
}

.ph-filter-group__title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
}

.ph-filter-group__price-val {
  font-weight: 600;
  color: var(--ph-primary);
  margin-left: 0.125rem;
}

.ph-filter-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.ph-filter-group__price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-filter-group__price-label {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-primary);
}

.ph-range {
  width: 100%;
  height: 0.25rem;
  accent-color: var(--ph-primary);
  cursor: pointer;
}

.ph-browse__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ph-browse__results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.ph-browse__results-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-fg);
}

.ph-browse__results-count {
  font-weight: 400;
  color: var(--ph-muted);
  margin-left: 0.25rem;
}

.ph-browse__results-note {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin: -0.5rem 0 0;
}
.ph-browse__results-note--warn {
  color: #c0392b;
}

.ph-geo-prompt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--ph-surface-elevated);
  border: 1px solid var(--ph-border);
  border-left: 4px solid var(--ph-primary);
  border-radius: var(--ph-r);
  box-shadow: var(--ph-shadow-soft);
  margin: 0.25rem 0;
}
.ph-geo-prompt__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.5rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-accent);
  color: var(--ph-primary-dark);
}
.ph-geo-prompt__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.ph-geo-prompt__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-fg);
}
.ph-geo-prompt__desc {
  font-size: 0.75rem;
  color: var(--ph-muted);
}
.ph-geo-prompt__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ph-geo-denied {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: hsl(0, 60%, 97%);
  border: 1px solid hsl(0, 60%, 88%);
  border-radius: var(--ph-r);
  font-size: 0.8125rem;
  color: hsl(0, 55%, 38%);
  margin: 0.25rem 0;
}
.ph-geo-denied svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ph-browse__toolbar-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.25rem;
  padding: 0 0.875rem;
  border-radius: var(--ph-r-full);
  background: #fff;
  border: 1.5px solid var(--ph-border);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-fg);
  cursor: pointer;
  margin-left: auto;
  transition: all var(--ph-dur) var(--ph-ease);
  white-space: nowrap;
}
.ph-browse__toolbar-map-btn:hover {
  border-color: var(--ph-primary);
  color: var(--ph-primary);
}

.ph-browse__map-thumb {
  display: none;
}

.ph-map-pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ph-primary);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px hsla(25, 45%, 30%, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.ph-map-pin:hover, .ph-map-pin--active {
  transform: scale(1.5);
}
.ph-map-pin--selected {
  width: 18px;
  height: 18px;
  background: var(--ph-primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px hsla(25, 45%, 30%, 0.5);
  transform: scale(1.2);
}

.ph-price-pin {
  display: inline-block;
  background: hsl(25, 45%, 25%);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  white-space: nowrap;
  box-shadow: 0 2px 8px hsla(25, 45%, 30%, 0.45);
}
.ph-price-pin__text {
  display: inline-block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
.ph-price-pin {
  cursor: pointer;
  transform: translate(-50%, calc(-100% - 5px));
  transition: background 0.12s, transform 0.12s;
  position: relative;
  line-height: 1.4;
}
.ph-price-pin::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: hsl(25, 45%, 25%) transparent transparent;
}
.ph-price-pin--active {
  background: hsl(25, 50%, 15%);
  transform: translate(-50%, calc(-100% - 5px)) scale(1.12);
}
.ph-price-pin--active::after {
  border-top-color: hsl(25, 50%, 15%);
}

.ph-slide-up-enter {
  transition: transform 0.32s cubic-bezier(0.32, 0, 0.67, 0);
}

.ph-slide-up--from {
  transform: translateY(100%);
}

.ph-slide-up--to {
  transform: translateY(0);
}

.ph-slide-up-leave {
  transition: transform 0.24s cubic-bezier(0.33, 1, 0.68, 1);
}

.ph-map-mini-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 500;
  pointer-events: none;
}
.ph-map-mini-card__inner {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px hsla(25, 30%, 15%, 0.2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  pointer-events: auto;
  border: 1.5px solid var(--ph-border);
}
.ph-map-mini-card__close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  line-height: 0;
}
.ph-map-mini-card__thumb {
  width: 100px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--ph-card);
}
.ph-map-mini-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-map-mini-card__no-img {
  width: 100%;
  height: 100%;
  background: var(--ph-card);
}
.ph-map-mini-card__info {
  flex: 1;
  padding: 0.75rem 0.75rem 0.75rem 0.875rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}
.ph-map-mini-card__name {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-map-mini-card__cat {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ph-primary);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-map-mini-card__loc {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-mini-card-enter {
  transition: transform 0.22s cubic-bezier(0.32, 0, 0.67, 0), opacity 0.22s;
}

.ph-mini-card--from {
  transform: translateY(1rem);
  opacity: 0;
}

.ph-mini-card--to {
  transform: translateY(0);
  opacity: 1;
}

.ph-mini-card-leave {
  transition: transform 0.18s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.18s;
}

.ph-map-popup .leaflet-popup-content-wrapper {
  border-radius: var(--ph-r);
  box-shadow: var(--ph-shadow-card);
  padding: 0;
}
.ph-map-popup .leaflet-popup-content {
  margin: 0.5rem 0.75rem;
}

.ph-map-popup__link {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-primary);
  text-decoration: none;
}
.ph-map-popup__link:hover {
  text-decoration: underline;
}

.ph-browse__map-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.ph-browse__map-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ph-border);
  background: #fff;
  flex-shrink: 0;
}

.ph-browse__map-panel-count {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--ph-muted);
}
.ph-browse__map-panel-count strong {
  color: var(--ph-fg);
  font-weight: 700;
}

.ph-browse__map-panel-inner {
  flex: 1;
  min-height: 0;
  position: relative;
}
.ph-browse__map-panel-inner .leaflet-container {
  width: 100%;
  height: 100%;
}

.ph-map-loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ph-card);
}
.ph-map-loading::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 3px solid var(--ph-border);
  border-top-color: var(--ph-primary);
  border-radius: 50%;
  animation: ph-spin 0.7s linear infinite;
}

@keyframes ph-spin {
  to {
    transform: rotate(360deg);
  }
}
.ph-map-error {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--ph-muted);
  text-align: center;
  padding: 2rem;
  background: var(--ph-card);
  margin: 0;
}

.ph-browse__map-close-float {
  display: none;
}

.ph-browse__map-close {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2rem;
  padding: 0 0.875rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-card);
  border: 1px solid var(--ph-border);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-fg);
  cursor: pointer;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-browse__map-close:hover {
  background: hsl(0, 70%, 96%);
  border-color: hsl(0, 60%, 75%);
  color: hsl(0, 60%, 40%);
}

@keyframes ph-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.ph-skeleton {
  background: linear-gradient(90deg, var(--ph-card) 25%, hsl(19, 80%, 90%) 50%, var(--ph-card) 75%);
  background-size: 800px 100%;
  animation: ph-shimmer 1.4s infinite linear;
  border-radius: var(--ph-r-sm);
}
.ph-skeleton--img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--ph-r-lg) var(--ph-r-lg) 0 0;
}
.ph-skeleton--line {
  height: 0.875rem;
  width: 100%;
}
.ph-skeleton--line.ph-skeleton--title {
  height: 1rem;
  width: 75%;
}
.ph-skeleton--line.ph-skeleton--short {
  width: 50%;
}

.ph-skeleton-card {
  background: #fff;
  border-radius: var(--ph-r-xl);
  border: 1px solid var(--ph-border);
  overflow: hidden;
}

.ph-skeleton-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-browse__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 4rem 1rem;
  text-align: center;
}
.ph-browse__empty svg {
  color: var(--ph-border);
}
.ph-browse__empty .ph-btn--reset {
  width: auto;
  padding: 0 1.5rem;
}

.ph-browse__empty-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
}

.ph-browse__empty-sub {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-cat-header {
  background: var(--ph-card);
  border-bottom: 1px solid var(--ph-border);
  padding: 1.5rem 0 1.25rem;
}

.ph-cat-header__content {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin: 0.75rem 0 0.875rem;
}

.ph-cat-header__icon {
  font-size: 2.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.ph-cat-header__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ph-cat-header__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
  line-height: 1.2;
}

.ph-cat-header__desc {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0;
  line-height: 1.55;
}

.ph-cat-header__count {
  font-size: 0.8125rem;
  color: var(--ph-primary);
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-cat-header__count strong {
  font-weight: 700;
}

.ph-cat-header__search {
  display: none;
}

.ph-gallery {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.ph-gallery__main-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ph-gallery__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.ph-gallery__nav:hover {
  background: #fff;
}
.ph-gallery__nav--prev {
  left: 0.625rem;
}
.ph-gallery__nav--next {
  right: 0.625rem;
}
.ph-gallery__counter {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-gallery__thumbs {
  display: flex;
  gap: 0.375rem;
  padding: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  background: transparent;
}
.ph-gallery__thumbs::-webkit-scrollbar {
  display: none;
}
.ph-gallery__thumb {
  flex: 0 0 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
  padding: 0;
  background: none;
}
.ph-gallery__thumb.is-active {
  border-color: var(--ph-primary);
}
.ph-gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-gallery--empty .ph-gallery__main-wrap, .ph-gallery__placeholder {
  aspect-ratio: 4/3;
  max-height: 320px;
  background: var(--ph-card) url("../img/placeholder.webp") center/cover no-repeat;
  width: 100%;
}

.ph-gallery__slider {
  display: block;
}
.ph-gallery__grid {
  display: none;
}
.ph-gallery__view-all {
  display: none;
}
.ph-gallery__grid-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  pointer-events: none;
}
.ph-gallery__grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.ph-gallery__grid-cell {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--ph-card);
}
.ph-gallery__grid-cell:hover .ph-gallery__grid-img {
  transform: scale(1.04);
}

.ph-gallery__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 6, 5, 0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ph-gallery__lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s;
  z-index: 10;
}
.ph-gallery__lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ph-gallery__lb-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 3.5rem 3rem 0.75rem;
}
.ph-gallery__lb-stage::before {
  content: "";
  position: absolute;
  inset: 20% 15%;
  background: radial-gradient(ellipse at center, rgba(91, 58, 26, 0.28) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.ph-gallery__lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 1.25rem;
  display: block;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  transition: opacity 0.18s ease;
}
.ph-gallery__lb-img.is-fading {
  opacity: 0;
}

.ph-gallery__lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s, opacity 0.3s ease;
  z-index: 2;
}
.ph-gallery__lb-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.ph-gallery__lb-nav--prev {
  left: 1rem;
}
.ph-gallery__lb-nav--next {
  right: 1rem;
}
.ph-gallery__lb-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.ph-gallery__lb-counter {
  position: absolute;
  top: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-family: "Prompt", "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.75rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.ph-gallery__lb-thumbs {
  display: flex;
  gap: 0.375rem;
  padding: 0.625rem 1rem 0.875rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  justify-content: center;
}
.ph-gallery__lb-thumbs::-webkit-scrollbar {
  display: none;
}

.ph-gallery__lb-thumb {
  flex: 0 0 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.15s, opacity 0.15s;
  opacity: 0.5;
}
.ph-gallery__lb-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}
.ph-gallery__lb-thumb:hover:not(.is-active) {
  opacity: 0.8;
}
.ph-gallery__lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-features {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--ph-border);
  border-bottom: 1px solid var(--ph-border);
}
.ph-features__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0 0 0.75rem;
}
.ph-features__specific {
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px dashed var(--ph-border);
}
.ph-features__specific-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ph-muted, #888);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ph-features__group + .ph-features__group {
  margin-top: 1rem;
}
.ph-features__group-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ph-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.ph-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.ph-feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  padding: 0.25rem 0;
}
.ph-feature-item svg {
  flex-shrink: 0;
  color: var(--ph-primary);
  width: 17px;
  height: 17px;
}

.ph-mobile-contact {
  margin: 0.75rem 0 0.25rem;
}
.ph-mobile-contact__price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--ph-primary);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.ph-mobile-contact__price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ph-muted);
  margin-bottom: 0.125rem;
}
.ph-mobile-contact__price-unit {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ph-muted);
}
.ph-mobile-contact .ph-contact-sidebar__social {
  margin-bottom: 0;
}
.ph-mobile-contact__map-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.ph-mobile-contact__map-btn {
  flex: 1;
  justify-content: center;
  gap: 0.375rem;
}

.ph-single-header__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}

.ph-single-header__tags .ph-tag-chip {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
}

.ph-hours-all-day {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--ph-card);
  border-radius: 0.875rem;
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
}
.ph-hours-all-day svg {
  flex-shrink: 0;
  color: var(--ph-primary);
}
.ph-hours-all-day strong {
  color: var(--ph-primary);
  font-weight: 700;
}

.ph-provider-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}
.ph-provider-stats__item {
  background: var(--ph-card);
  border-radius: 1rem;
  padding: 0.875rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ph-provider-stats__value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.1;
}
.ph-provider-stats__label {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-contact-sidebar__rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.ph-contact-sidebar__rating-score {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ph-fg);
}
.ph-contact-sidebar__rating-count {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-contact-sidebar__stars {
  display: flex;
  gap: 0.0625rem;
  font-size: 0.875rem;
  color: var(--ph-border);
  line-height: 1;
}
.ph-contact-sidebar__stars span.is-filled {
  color: hsl(38, 80%, 45%);
}

.ph-scroll-header {
  display: none;
}

.ph-nearby-providers__ad-wrap .ph-promo-section {
  padding: 0.5rem 0 1.5rem;
}

.ph-nearby-providers {
  padding: 1.25rem 0 1.5rem;
}
.ph-nearby-providers__heading {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-heading, hsl(25, 45%, 25%));
  margin-bottom: 1.25rem;
}
.ph-nearby-providers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.ph-event-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  line-height: 1.4;
  background: hsl(140, 45%, 92%);
  color: hsl(140, 50%, 30%);
}
.ph-event-status--ongoing {
  background: hsl(205, 70%, 92%);
  color: hsl(205, 70%, 35%);
}
.ph-event-status--past {
  background: hsl(25, 8%, 90%);
  color: hsl(25, 10%, 45%);
}

.ph-event-hero {
  position: relative;
  margin-bottom: 1.25rem;
}
.ph-event-hero__img {
  display: block;
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 1.5rem;
  background: var(--ph-card);
}
.ph-event-hero__img--placeholder {
  background: var(--ph-card);
}
.ph-event-hero .ph-event-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px hsla(25, 40%, 20%, 0.18);
}

@media (max-width: 600px) {
  .ph-event-hero__img {
    aspect-ratio: 4/3;
    border-radius: 1rem;
  }
}
.ph-event-datecard {
  background: var(--ph-card);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.ph-event-datecard__badge {
  margin-bottom: 0.6rem;
}
.ph-event-datecard__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ph-fg);
  margin: 0.2rem 0;
}
.ph-event-datecard__date svg {
  color: var(--ph-primary);
  flex-shrink: 0;
}
.ph-event-datecard__time {
  font-size: 0.9rem;
  color: var(--ph-muted);
  margin: 0.1rem 0;
}
.ph-event-datecard__countdown {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ph-primary);
  background: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
}
.ph-event-datecard__ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ph-fg);
}
.ph-event-datecard__ticket svg {
  color: var(--ph-primary);
}

.ph-event-body {
  line-height: 1.75;
}
.ph-event-body p {
  margin: 0 0 1rem;
}
.ph-event-body h2, .ph-event-body h3 {
  font-family: "Prompt", "Inter", sans-serif;
  margin: 1.5rem 0 0.6rem;
}
.ph-event-body ul, .ph-event-body ol {
  margin: 0 0 1rem 1.2rem;
}
.ph-event-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.ph-event-card__date {
  color: var(--ph-primary) !important;
  font-weight: 600;
}
.ph-event-card__date svg {
  color: var(--ph-primary);
}

.ph-event-results {
  padding: 1.5rem 0 4rem;
}

.ph-event-preview-card .ph-blog-card__image-wrap {
  position: relative;
}
.ph-event-preview-card .ph-event-status {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  box-shadow: 0 2px 8px hsla(25, 40%, 20%, 0.18);
}
.ph-event-preview-card__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.3rem 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ph-primary);
}
.ph-event-preview-card__date svg {
  color: var(--ph-primary);
  flex-shrink: 0;
}

.ph-event-card--past .ph-provider-card__thumb {
  filter: grayscale(0.35);
  opacity: 0.92;
}

.ph-single-layout {
  padding: 0 1rem 5rem;
}

.ph-provider-single .ph-single-layout {
  padding-bottom: 1.5rem;
}

.ph-provider-single .ph-breadcrumbs,
.ph-single-adoption .ph-breadcrumbs,
.ph-single-lostpet .ph-breadcrumbs,
.ph-single-request .ph-breadcrumbs {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.ph-single-content {
  min-width: 0;
}

.ph-single-header {
  padding: 1rem 0 0.75rem;
}
.ph-single-header__cat-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background: var(--ph-card);
  color: var(--ph-fg);
  margin-bottom: 0.625rem;
  text-decoration: none;
}
.ph-single-header__cat-chip:hover {
  opacity: 0.8;
}
.ph-single-header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ph-single-header__title {
  flex: 1 1 100%;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ph-fg);
  line-height: 1.25;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.ph-single-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  height: 1.5rem;
  padding: 0 0.625rem 0 0.4rem;
  border-radius: 2rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.ph-single-header__badge--verified-biz {
  background: hsl(25, 50%, 18%);
  color: #fff;
}
.ph-single-header__badge--promoted {
  background: hsl(38, 80%, 45%);
  color: #fff;
}
.ph-single-header__kyc-icon {
  display: inline-flex;
  color: var(--ph-primary);
  flex-shrink: 0;
}
.ph-single-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  flex-shrink: 0;
  margin-left: auto;
  padding-top: 0.25rem;
}
.ph-single-header__icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--ph-border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ph-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.ph-single-header__icon-btn:hover {
  background: var(--ph-card);
  color: var(--ph-fg);
}
.ph-single-header__icon-btn.is-saved {
  color: var(--ph-primary);
  border-color: var(--ph-primary);
  background: hsla(4, 75%, 84%, 0.2);
}
.ph-single-header__icon-btn.is-admin-published {
  color: #1a7a45;
  border-color: #1a7a45;
  background: #f0faf4;
}
.ph-single-header__icon-btn.is-admin-pending {
  color: #9a6200;
  border-color: #e6a817;
  background: #fffbf0;
}
.ph-single-header__icon-btn.is-admin-featured {
  color: var(--ph-primary);
  border-color: var(--ph-primary);
  background: hsla(25, 45%, 30%, 0.08);
}
.ph-single-header__icon-btn.ph-admin-delete-btn:hover {
  color: #c0392b;
  border-color: #c0392b;
  background: #fff8f8;
}
.ph-single-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.625rem;
  align-items: center;
}
.ph-single-header__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.ph-single-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.375rem;
}
.ph-single-header__subtitle {
  font-size: 0.875rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  margin: 0.25rem 0 0;
}

@keyframes ph-pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}
.ph-open-now {
  color: #166534;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.ph-open-now::before {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #16a34a;
  animation: ph-pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.ph-open-closed {
  color: #991b1b;
  font-weight: 600;
}

.ph-tabs {
  margin-top: 1.25rem;
}
.ph-tabs__nav {
  display: flex;
  background: var(--ph-card);
  border-radius: 3rem;
  padding: 0.25rem;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.ph-tabs__nav::-webkit-scrollbar {
  display: none;
}
.ph-tabs__item {
  flex-shrink: 0;
  padding: 0.5rem 1.125rem;
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-muted);
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.1s;
  white-space: nowrap;
  font-family: "Prompt", "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.ph-tabs__item.is-active {
  background: var(--ph-primary);
  color: #fff;
  box-shadow: none;
}
.ph-tabs__item.is-active .ph-tabs__badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.ph-tabs__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 1rem;
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0 0.3rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-tabs__panel {
  padding-top: 1.25rem;
  min-height: 10rem;
}

.ph-about-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ph-fg);
  margin-bottom: 1.25rem;
  white-space: pre-line;
}

.ph-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-hours-list__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--ph-border);
}
.ph-hours-list__item:last-child {
  border-bottom: none;
}
.ph-hours-list__item.is-today .ph-hours-list__day {
  color: var(--ph-primary);
  font-weight: 700;
}
.ph-hours-list__item.is-today .ph-hours-list__time {
  font-weight: 700;
}
.ph-hours-list__day {
  color: var(--ph-muted);
}
.ph-hours-list__time {
  font-weight: 500;
  color: var(--ph-fg);
}

#ph-provider-map {
  width: 100%;
  height: 260px;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 0;
}

.ph-tab-address {
  margin-top: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.5;
}

.ph-tab-directions {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.ph-sidebar-map {
  display: none;
}
.ph-sidebar-map__thumb {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--ph-card);
}
.ph-sidebar-map__thumb #ph-sidebar-map-canvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ph-sidebar-map__expand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.625rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.ph-sidebar-map__thumb:hover .ph-sidebar-map__expand {
  opacity: 1;
}
.ph-sidebar-map__thumb:focus-visible .ph-sidebar-map__expand {
  opacity: 1;
}
.ph-sidebar-map__address {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.5;
  margin: 0.625rem 0 0.75rem;
}
.ph-sidebar-map__address svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.ph-sidebar-map__directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.ph-map-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
}
.ph-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.ph-map-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  max-height: 92dvh;
  display: flex;
  flex-direction: column;
}
.ph-map-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--ph-border);
  flex-shrink: 0;
}
.ph-map-modal__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ph-fg);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-map-modal__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1.5px solid var(--ph-border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-fg);
  margin-left: 0.5rem;
}
.ph-map-modal #ph-provider-map-modal {
  flex: 1;
  min-height: 240px;
  max-height: 52dvh;
  z-index: 0;
}
.ph-map-modal__footer {
  padding: 0.875rem 1rem 1rem;
  border-top: 1px solid var(--ph-border);
  flex-shrink: 0;
}
.ph-map-modal__address {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.ph-map-modal__address svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.ph-map-modal__directions-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.ph-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-service-item {
  background: var(--ph-bg, hsl(30, 55%, 97%));
  border: 1.5px solid var(--ph-border);
  border-radius: 1rem;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.ph-service-item__info {
  flex: 1;
  min-width: 0;
}
.ph-service-item__name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.2rem;
  display: block;
}
.ph-service-item__desc {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-service-item__price-wrap {
  flex-shrink: 0;
  text-align: right;
}
.ph-service-item__price {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ph-primary);
  display: block;
  white-space: nowrap;
}
.ph-service-item__unit {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-pet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ph-pet-chip {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-family: "Prompt", "Inter", sans-serif;
  background: var(--ph-card);
  color: var(--ph-muted);
  border: 1.5px solid transparent;
  transition: background var(--ph-dur), color var(--ph-dur), border-color var(--ph-dur);
}
.ph-pet-chip.is-active {
  background: var(--ph-primary);
  color: #fff;
  border-color: var(--ph-primary);
}
.ph-pet-chip:not(.is-active):hover {
  border-color: var(--ph-primary);
  color: var(--ph-primary);
}
.ph-pet-chip__count {
  font-size: 0.75rem;
  opacity: 0.75;
}

.ph-pets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.ph-pet-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--ph-card);
  border-radius: var(--ph-r-xl);
  overflow: hidden;
  border: 1.5px solid var(--ph-border);
  transition: box-shadow var(--ph-dur), transform var(--ph-dur);
}
.ph-pet-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.ph-pet-card--skeleton {
  pointer-events: none;
}
.ph-pet-card__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ph-border);
}
.ph-pet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ph-pet-card:hover .ph-pet-card__img {
  transform: scale(1.04);
}
.ph-pet-card__body {
  padding: 0.625rem 0.75rem 0.75rem;
}
.ph-pet-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.ph-pet-card__meta {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.375rem;
}
.ph-pet-card__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ph-primary);
}
.ph-pet-card__free {
  color: hsl(140, 40%, 38%);
  font-weight: 600;
}

.ph-skeleton-line {
  background: linear-gradient(90deg, var(--ph-border) 25%, hsl(30, 30%, 88%) 50%, var(--ph-border) 75%);
  background-size: 200% 100%;
  animation: ph-skeleton-shimmer 1.4s infinite;
  border-radius: 4px;
}
.ph-skeleton-line--title {
  height: 0.875rem;
  width: 70%;
  margin-bottom: 0.4rem;
}
.ph-skeleton-line--meta {
  height: 0.75rem;
  width: 50%;
}

.ph-pet-card--skeleton .ph-pet-card__img-wrap {
  animation: ph-skeleton-shimmer 1.4s infinite;
  background: linear-gradient(90deg, var(--ph-border) 25%, hsl(30, 30%, 88%) 50%, var(--ph-border) 75%);
  background-size: 200% 100%;
}

@keyframes ph-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.ph-review-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ph-review-card {
  background: var(--ph-bg, hsl(30, 55%, 97%));
  border: 1.5px solid var(--ph-border);
  border-radius: 1rem;
  padding: 1rem;
}
.ph-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.ph-review-card__meta {
  flex: 1;
  min-width: 0;
}
.ph-review-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.1rem;
}
.ph-review-card__date {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-card__stars {
  font-size: 0.9rem;
  color: #d1d5db;
  flex-shrink: 0;
}
.ph-review-card__stars span.is-filled {
  color: #f59e0b;
}
.ph-review-card__verified {
  font-size: 0.6875rem;
  color: #166534;
  background: #dcfce7;
  padding: 0.125rem 0.4rem;
  border-radius: 1rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.25rem;
}
.ph-review-card__text {
  font-size: 0.875rem;
  color: var(--ph-fg);
  line-height: 1.65;
  margin-top: 0.375rem;
}

.ph-review-form {
  background: var(--ph-card);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.ph-review-form__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ph-fg);
}
.ph-review-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  margin-bottom: 0.375rem;
}
.ph-review-form__label--sm {
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-bottom: 0.5rem;
}
.ph-review-form__textarea {
  width: 100%;
  border: 1.5px solid var(--ph-border);
  border-radius: 0.625rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  resize: vertical;
  background: #fff;
  transition: border-color 0.15s;
  color: var(--ph-fg);
  margin-top: 0.25rem;
  margin-bottom: 0.875rem;
  display: block;
}
.ph-review-form__textarea:focus {
  outline: none;
  border-color: var(--ph-primary);
}
.ph-review-form__textarea:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}
.ph-review-form__recommend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  cursor: pointer;
  margin-bottom: 1rem;
  user-select: none;
}
.ph-review-form__recommend input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--ph-primary);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.ph-review-form__error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-bottom: 0.5rem;
}
.ph-review-form__success {
  text-align: center;
  padding: 1.25rem 0;
  color: #166534;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-form__already {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-form__login-prompt {
  padding: 0.75rem 0 0.25rem;
}

.ph-review-criteria {
  border-top: 1px solid hsl(25, 20%, 85%);
  margin-top: 0.25rem;
  padding-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.ph-criteria-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.ph-criteria-row__label {
  font-size: 0.8125rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  min-width: 8.5rem;
  flex-shrink: 0;
}
.ph-criteria-row__clear {
  background: none;
  border: none;
  padding: 0 0.125rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  cursor: pointer;
  line-height: 1;
  margin-left: 0.125rem;
  font-family: "Inter", "Prompt", sans-serif;
  transition: color 0.1s;
}
.ph-criteria-row__clear:hover {
  color: #dc2626;
}

.ph-star-picker {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.875rem;
}
.ph-star-picker--sm {
  margin-bottom: 0;
}
.ph-star-picker--sm .ph-star-picker__btn {
  font-size: 1.25rem;
}
.ph-star-picker__btn {
  font-size: 1.625rem;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  color: #d1d5db;
  transition: color 0.1s, transform 0.1s;
}
.ph-star-picker__btn.is-filled {
  color: #f59e0b;
}
.ph-star-picker__btn:hover {
  transform: scale(1.15);
}

.ph-empty-state {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  padding: 1rem 0;
}

.ph-provider-page .ph-contact-sidebar {
  display: block;
}

.ph-contact-sidebar {
  display: none;
}
.ph-contact-sidebar__price-label {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.125rem;
}
.ph-contact-sidebar__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ph-fg);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ph-contact-sidebar__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ph-muted);
}
.ph-contact-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ph-contact-sidebar__divider {
  border: none;
  border-top: 1px solid var(--ph-border);
  margin: 0.625rem 0;
}
.ph-contact-sidebar__social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}
.ph-contact-sidebar__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--ph-r);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Prompt", "Inter", sans-serif;
  transition: opacity 0.15s;
  border: 1px solid transparent;
}
.ph-contact-sidebar__social-link:hover {
  opacity: 0.8;
}
.ph-contact-sidebar__social-link--fb {
  background: hsl(213, 90%, 95%);
  color: #1877f2;
  border-color: hsl(213, 60%, 85%);
}
.ph-contact-sidebar__social-link--ig {
  background: hsl(330, 80%, 96%);
  color: #bc1888;
  border-color: hsl(330, 60%, 87%);
}
.ph-contact-sidebar__social-link--web {
  background: var(--ph-card);
  color: var(--ph-muted);
  border-color: var(--ph-border);
}
.ph-contact-sidebar__response {
  font-size: 0.6875rem;
  text-align: center;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  padding-top: 0.25rem;
}
.ph-contact-sidebar__secondary {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
.ph-contact-sidebar__icon-btn {
  flex: 1;
  height: 2.5rem;
  border-radius: var(--ph-r);
  border: 1.5px solid var(--ph-border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  transition: background 0.15s;
}
.ph-contact-sidebar__icon-btn:hover {
  background: var(--ph-card);
}
.ph-contact-sidebar__icon-btn.is-saved {
  color: var(--ph-primary);
  border-color: var(--ph-primary);
  background: hsla(4, 75%, 84%, 0.15);
}
.ph-contact-sidebar__claim-section {
  border-top: 1px solid var(--ph-border);
  padding-top: 0.75rem;
  margin-top: 0.125rem;
}
.ph-contact-sidebar__claim-label {
  font-size: 0.6875rem;
  color: var(--ph-muted);
  text-align: center;
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.375rem;
}

.ph-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--ph-border);
  padding: 0.625rem 1rem;
  padding-bottom: max(0.625rem, env(safe-area-inset-bottom));
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.ph-mobile-bar__cta {
  flex: 1;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: "Prompt", "Inter", sans-serif;
  text-decoration: none;
  transition: opacity 0.15s;
}
.ph-mobile-bar__cta:hover {
  opacity: 0.9;
}
.ph-mobile-bar__cta--line {
  background: #06C755;
}
.ph-mobile-bar__social-btn {
  flex: 0 0 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ph-mobile-bar__social-btn--line {
  background: #06C755;
  color: #fff;
}
.ph-mobile-bar__social-btn:hover {
  opacity: 0.9;
}
.ph-mobile-bar__phone-btn {
  flex: 0 0 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: var(--ph-card);
  color: var(--ph-primary);
  border: 1px solid hsl(25, 45%, 72%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s;
}
.ph-mobile-bar__phone-btn:hover {
  background: hsl(19, 80%, 90%);
}
.ph-mobile-bar__phone-btn--line {
  flex: 0 0 auto;
  padding: 0 1rem;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  background: #06C755;
  color: #fff;
  border-color: #06C755;
}
.ph-mobile-bar__phone-btn--line:hover {
  background: #05b04a;
}

.ph-wizard {
  max-width: 52rem;
  margin-inline: auto;
  padding: 1.5rem 1rem 5.5rem;
  font-family: "Prompt", "Inter", system-ui, sans-serif;
}
.ph-wizard p, .ph-wizard label, .ph-wizard button {
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-mode-selector__head {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}
.ph-mode-selector__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.ph-mode-selector__sub {
  color: var(--ph-muted);
  font-size: 0.9375rem;
}
.ph-mode-selector__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.ph-mode-selector__footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--ph-muted);
}
.ph-mode-selector__footer a {
  color: var(--ph-primary);
  font-weight: 600;
  text-decoration: underline;
}

.ph-mode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--ph-card);
  border: 2px solid transparent;
  border-radius: 1.5rem;
  padding: 2rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  width: 100%;
  box-shadow: var(--shadow-soft);
}
.ph-mode-card:hover {
  background: hsla(4, 75%, 84%, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.ph-mode-card__icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--ph-primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ph-mode-card__icon-box--adopt {
  background: hsl(350, 45%, 50%);
}
.ph-mode-card__icon-box--danger {
  background: hsl(32, 82%, 45%);
}
.ph-mode-card__icon-box--owner {
  background: hsl(168, 38%, 40%);
}
.ph-mode-card__icon-box--place {
  background: hsl(95, 32%, 40%);
}
.ph-mode-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-mode-card__desc {
  font-size: 0.875rem;
  color: var(--ph-muted);
  display: block;
  line-height: 1.45;
}

@media (prefers-reduced-motion: no-preference) {
  .ph-mode-selector__title {
    animation: ph-ms-head 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  }
  .ph-mode-selector__sub {
    animation: ph-ms-fade 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  }
  .ph-mode-selector__footer {
    animation: ph-ms-fade 0.6s ease 0.85s both;
  }
  .ph-mode-card {
    animation: ph-ms-rise 0.7s cubic-bezier(0.22, 1.16, 0.36, 1) var(--ph-ms-d, 0.3s) both;
  }
  .ph-mode-card:nth-child(1) {
    --ph-ms-d: 0.30s;
  }
  .ph-mode-card:nth-child(2) {
    --ph-ms-d: 0.40s;
  }
  .ph-mode-card:nth-child(3) {
    --ph-ms-d: 0.50s;
  }
  .ph-mode-card:nth-child(4) {
    --ph-ms-d: 0.60s;
  }
  .ph-mode-card:nth-child(5) {
    --ph-ms-d: 0.70s;
  }
  .ph-mode-card__icon-box {
    animation: ph-ms-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--ph-ms-d, 0.3s) + 0.12s) backwards;
  }
  .ph-mode-card:hover .ph-mode-card__icon-box svg {
    animation: ph-ms-wiggle 0.5s ease;
  }
  .ph-mode-card__body {
    animation: ph-ms-fade 0.55s ease calc(var(--ph-ms-d, 0.3s) + 0.2s) both;
  }
}
@keyframes ph-ms-head {
  from {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes ph-ms-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ph-ms-rise {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.94);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes ph-ms-pop {
  0% {
    transform: scale(0.2) rotate(-24deg);
  }
  55% {
    transform: scale(1.16) rotate(7deg);
  }
  78% {
    transform: scale(0.95) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes ph-ms-wiggle {
  0%, 100% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(-8deg) scale(1.06);
  }
  60% {
    transform: rotate(6deg) scale(1.06);
  }
}
.ph-wizard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ph-back-link {
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0;
  transition: color var(--ph-dur) var(--ph-ease);
}
.ph-back-link:hover {
  color: var(--ph-fg);
}

.ph-mode-badge {
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.ph-mode-badge--provider {
  background: hsl(25, 45%, 90%);
  color: hsl(25, 45%, 28%);
}
.ph-mode-badge--owner {
  background: hsl(168, 38%, 88%);
  color: hsl(168, 38%, 25%);
}
.ph-mode-badge--lost {
  background: hsl(32, 82%, 91%);
  color: hsl(32, 65%, 28%);
}
.ph-mode-badge--adopt {
  background: hsl(350, 45%, 92%);
  color: hsl(350, 45%, 32%);
}
.ph-mode-badge--place {
  background: hsl(95, 32%, 88%);
  color: hsl(95, 35%, 24%);
}

.ph-stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.ph-stepper__pills {
  flex: 1;
  display: flex;
  gap: 0.3rem;
}
.ph-stepper__pill {
  flex: 1;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--ph-card);
  transition: background 0.25s;
}
.ph-stepper__pill--done {
  background: var(--ph-primary);
}
.ph-stepper__count {
  font-size: 0.75rem;
  color: var(--ph-muted);
  white-space: nowrap;
  font-family: "Prompt", "Inter", sans-serif;
  flex-shrink: 0;
}
.ph-stepper__label {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  margin-top: -0.25rem;
}

.ph-wizard-step__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ph-wizard-step__hint {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-bottom: 1.25rem;
}

.ph-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ph-service-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.125rem 1rem;
  background: #fff;
  border: 2px solid var(--ph-border);
  border-radius: 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
  position: relative;
}
.ph-service-pick--active {
  border-color: var(--ph-primary);
  background: hsla(4, 75%, 84%, 0.25);
}
.ph-service-pick__icon-box {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--ph-primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.ph-service-pick__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-fg);
  line-height: 1.3;
}
.ph-service-pick__sub {
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-service-pick__check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.875rem;
  color: var(--ph-primary);
  font-weight: 700;
}

.ph-field {
  margin-bottom: 1rem;
}

.ph-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.ph-field-row .ph-field {
  margin-bottom: 0;
}

.ph-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.5rem;
  color: var(--ph-fg);
}
.ph-label--opt {
  font-weight: 400;
  color: var(--ph-muted);
  font-size: 0.8125rem;
}
.ph-label--req {
  color: #e53e3e;
}

.ph-input {
  width: 100%;
  height: 3rem;
  border: 1.5px solid var(--ph-border);
  border-radius: 1rem;
  padding: 0 1rem;
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif;
  background: #fff;
  color: var(--ph-fg);
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.ph-input:focus {
  outline: none;
  border-color: var(--ph-primary);
  box-shadow: 0 0 0 3px hsla(25, 45%, 30%, 0.12);
}
.ph-input:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}
.ph-input[type=date], .ph-input[type=time] {
  font-family: "Inter", "Prompt", sans-serif;
}

.ph-field-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.ph-field-hint {
  font-size: 0.8125rem;
  color: #9a8070;
  margin-top: 0.25rem;
}

.ph-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.ph-tag-groups {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.ph-tag-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.ph-tag-group__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  letter-spacing: 0.01em;
}

.ph-counter {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--ph-border);
  border-radius: 0.625rem;
  overflow: hidden;
}
.ph-counter__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--ph-card);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.15s;
}
.ph-counter__btn:hover {
  background: var(--ph-border);
}
.ph-counter__val {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 0.25rem;
}

.ph-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.ph-upload-slot {
  aspect-ratio: 1;
  border-radius: 0.875rem;
  background: var(--ph-card);
  border: 2px dashed var(--ph-border);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ph-muted);
  overflow: hidden;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.ph-upload-slot:hover {
  border-color: var(--ph-primary);
  background: hsla(4, 75%, 84%, 0.12);
}
.ph-upload-slot--filled {
  border-style: solid;
  border-color: transparent;
}
.ph-upload-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-upload-gate-notice {
  font-size: 0.8125rem;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.625rem;
}

.ph-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.ph-img-slot {
  aspect-ratio: 4/3;
  border-radius: 0.875rem;
  background: var(--ph-card);
  border: 2px dashed var(--ph-border);
  overflow: hidden;
  position: relative;
  cursor: grab;
}
.ph-img-slot--ghost {
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ph-muted);
  opacity: 0.4;
  transition: border-color 0.15s, background 0.15s, opacity 0.15s;
}
.ph-img-slot--ghost:hover {
  border-color: var(--ph-primary);
  background: hsla(4, 75%, 84%, 0.15);
  opacity: 0.75;
}
.ph-img-slot--uploading {
  cursor: default;
  opacity: 0.6;
}
.ph-img-slot--error {
  cursor: default;
  border-color: hsl(0, 60%, 65%);
  border-style: solid;
}
.ph-img-slot__error-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsla(0, 60%, 30%, 0.82);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.375rem;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
}
.ph-img-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-img-slot__cover-badge {
  position: absolute;
  top: 0.375rem;
  left: 0.375rem;
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
  pointer-events: none;
}
.ph-img-slot__remove {
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.ph-img-slot__remove:hover {
  background: rgba(0, 0, 0, 0.8);
}
.ph-img-slot__spinner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.ph-img-slot__spinner::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--ph-primary);
  border-radius: 50%;
  animation: ph-spin 0.6s linear infinite;
}

@keyframes ph-spin {
  to {
    transform: rotate(360deg);
  }
}
.ph-upload-error-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.375rem;
  background: hsl(0, 80%, 97%);
  border: 1px solid hsl(0, 60%, 82%);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: hsl(0, 55%, 38%);
}
.ph-upload-error-bar button {
  margin-left: auto;
  flex-shrink: 0;
}

.ph-price-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border: 1.5px solid var(--ph-border);
  border-radius: 0.875rem;
  padding: 0 1rem;
  background: #fff;
  height: 3.25rem;
  transition: border-color 0.15s;
}
.ph-price-wrap:focus-within {
  border-color: var(--ph-primary);
}
.ph-price-wrap__currency {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ph-fg);
  flex-shrink: 0;
}
.ph-price-wrap__unit {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.ph-price-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  min-width: 0;
}
.ph-price-wrap input:focus {
  outline: none;
}
.ph-price-wrap input:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
}
.ph-price-wrap input::placeholder {
  color: var(--ph-border);
  font-weight: 400;
  font-size: 1rem;
}

.ph-select-wrap {
  position: relative;
}
.ph-select-wrap::after {
  content: "";
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ph-muted);
  pointer-events: none;
}

.ph-select {
  width: 100%;
  appearance: none;
  border: 1.5px solid var(--ph-border);
  border-radius: 0.625rem;
  padding: 0.625rem 2.25rem 0.625rem 0.75rem;
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif !important;
  font-weight: 400;
  background: #fff;
  color: var(--ph-fg);
  cursor: pointer;
  transition: border-color 0.15s;
}
.ph-select:focus {
  outline: none;
  border-color: var(--ph-primary);
}
.ph-select:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}

.ph-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 2px dashed var(--ph-border);
  border-radius: 1rem;
  cursor: pointer;
  color: var(--ph-muted);
  font-size: 0.875rem;
  transition: border-color 0.15s, background 0.15s;
  min-height: 6rem;
}
.ph-upload-zone:hover {
  border-color: var(--ph-primary);
  background: hsla(4, 75%, 84%, 0.1);
}
.ph-upload-zone--single {
  aspect-ratio: 4/3;
  padding: 0;
  overflow: hidden;
}
.ph-upload-zone__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ph-muted);
}
.ph-upload-zone__preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

.ph-upload-thumb {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.ph-upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-upload-thumb__remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-bottom-left-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ph-pin-map {
  width: 100%;
  height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1.5px solid var(--ph-border);
  cursor: crosshair;
}

.ph-pin-map__coords {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  margin-top: 0.375rem;
}

.ph-preview-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--ph-border);
  font-size: 0.875rem;
}
.ph-preview-row:last-child {
  border-bottom: none;
}
.ph-preview-row__key {
  min-width: 6rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  flex-shrink: 0;
}

.ph-preview-thumb {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.ph-preview-cover-img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.875rem;
  display: block;
}

.ph-wizard-note {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  text-align: center;
  line-height: 1.5;
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-verify-step__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.ph-verify-step__header .ph-wizard-step__title {
  margin: 0;
}
.ph-verify-step__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.ph-verify-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.ph-verify-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 0.75rem;
  border: 2px solid var(--ph-border, #e0d5c8);
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.ph-verify-type-card:hover, .ph-verify-type-card:focus-visible {
  border-color: var(--ph-primary);
  background: hsl(30, 55%, 97%);
  transform: translateY(-2px);
}
.ph-verify-type-card__icon {
  font-size: 2rem;
}
.ph-verify-type-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ph-text);
}
.ph-verify-type-card__desc {
  font-size: 0.75rem;
  color: var(--ph-muted);
  line-height: 1.4;
}
.ph-verify-type-card__badge {
  font-size: 0.6875rem;
  color: #fff;
  background: var(--ph-primary, hsl(25, 45%, 30%));
  border-radius: 100px;
  padding: 0.15em 0.6em;
  margin-top: 0.25rem;
}

.ph-back-inline {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ph-muted);
  font-size: 0.8125rem;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.ph-back-inline:hover {
  color: var(--ph-primary);
}

.ph-doc-section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-text);
  margin: 0 0 0.5rem;
}

.ph-btn-skip {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ph-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.5rem;
  width: 100%;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ph-btn-skip:hover {
  color: var(--ph-text);
}

.ph-doc-upload-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-doc-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 2rem 1.5rem;
  background: hsl(30, 55%, 98%);
  border: 2px dashed hsl(25, 40%, 75%);
  border-radius: var(--ph-r-xl);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.ph-doc-drop-zone:hover {
  border-color: var(--ph-primary);
  background: hsl(25, 55%, 95%);
  box-shadow: 0 0 0 4px hsl(25, 55%, 92%);
}
.ph-doc-drop-zone__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(25, 45%, 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  color: var(--ph-primary);
  transition: background 0.18s;
}
.ph-doc-drop-zone__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.ph-doc-drop-zone:hover .ph-doc-drop-zone__icon {
  background: hsl(25, 45%, 82%);
}
.ph-doc-drop-zone__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-doc-drop-zone__sub {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-top: 0.125rem;
}
.ph-doc-drop-zone__hint {
  font-size: 0.6875rem;
  color: hsl(25, 25%, 65%);
  margin-top: 0.375rem;
  letter-spacing: 0.02em;
}

.ph-doc-hint-types {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ph-doc-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: hsl(30, 55%, 97%);
  border-radius: 0.5rem;
  border: 1px solid var(--ph-border, #e0d5c8);
}
.ph-doc-list__name {
  font-size: 0.8125rem;
  color: var(--ph-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.ph-doc-list__remove {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ph-muted);
  font-size: 0.875rem;
  padding: 0 0.25rem;
  line-height: 1;
}
.ph-doc-list__remove:hover {
  color: #e74c3c;
}

.ph-verify-submit-btn {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ph-pdpa-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ph-muted);
  line-height: 1.6;
  padding: 0.625rem 0.875rem;
  background: hsl(30, 40%, 96%);
  border-radius: var(--ph-r);
  margin-top: 0.75rem;
}

.ph-provider-thumb-upload {
  display: grid;
  place-items: center;
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  background: var(--ph-card);
  border: 2px dashed var(--ph-border);
  cursor: pointer;
  color: var(--ph-muted);
  overflow: hidden;
  transition: border-color 0.15s;
}
.ph-provider-thumb-upload:hover {
  border-color: var(--ph-primary);
}
.ph-provider-thumb-upload__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--ph-card);
  border: 2px dashed var(--ph-border);
  transition: border-color 0.15s;
}
.ph-gallery-main:has(.ph-gallery-main__label:hover) {
  border-color: var(--ph-primary);
}
.ph-gallery-main__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: var(--ph-muted);
  font-size: 0.85rem;
}
.ph-gallery-main__preview {
  position: relative;
  width: 100%;
  height: 100%;
}
.ph-gallery-main__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-gallery-upload {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.ph-gallery-upload__slot {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--ph-card);
  border: 2px dashed var(--ph-border);
  transition: border-color 0.15s;
}
.ph-gallery-upload__slot:has(.ph-gallery-upload__slot-inner:hover) {
  border-color: var(--ph-primary);
}
.ph-gallery-upload__slot-inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: var(--ph-muted);
}
.ph-gallery-upload__slot-preview {
  position: relative;
  width: 100%;
  height: 100%;
}
.ph-gallery-upload__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-gallery-upload__remove {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.65rem;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  z-index: 1;
}
.ph-gallery-upload__remove:hover {
  background: rgba(0, 0, 0, 0.85);
}

.ph-price-wrap--lg {
  height: 4rem;
  border-radius: 1rem;
}
.ph-price-wrap--lg .ph-price-wrap__currency {
  font-size: 1.75rem;
}
.ph-price-wrap--lg__input--lg,
.ph-price-wrap--lg input {
  font-size: 1.75rem !important;
  font-weight: 700;
}

.ph-chip--lg {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 0.875rem;
  font-weight: 500;
}

.ph-chip-group--col {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.ph-field-row--mt {
  margin-top: 0.75rem;
}

.ph-label--sm {
  font-size: 0.8125rem;
}

.ph-preview-card {
  background: var(--ph-card);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  space-y: 0.5rem;
}
.ph-preview-card__main {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  font-family: "Prompt", "Inter", sans-serif;
  display: block;
}
.ph-preview-card__sub {
  font-size: 0.875rem;
  color: var(--ph-muted);
  display: block;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.ph-preview-card__meta {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--ph-border);
  display: block;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-preview-card__label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.375rem;
}
.ph-preview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.625rem;
}
.ph-preview-card--compact {
  padding: 1rem;
  margin-top: 1rem;
}

.ph-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-family: "Prompt", "Inter", sans-serif;
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
  border-radius: 999px;
  padding: 0.2rem 0.625rem;
  color: var(--ph-fg);
}

.ph-btn--danger {
  background: #e11d48;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.ph-btn--danger:hover:not(:disabled) {
  background: #be123c;
}
.ph-btn--danger:disabled {
  opacity: 0.6;
}

.ph-btn--adopt {
  background: #db2777;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.ph-btn--adopt:hover:not(:disabled) {
  background: #be185d;
}
.ph-btn--adopt:disabled {
  opacity: 0.6;
}

.ph-wizard-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(30, 55%, 97%);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem env(safe-area-inset-bottom, 0);
}
.ph-wizard-nav__error {
  font-size: 0.875rem;
  color: #dc2626;
  text-align: center;
  margin-bottom: 0.5rem;
}
.ph-wizard-nav__buttons {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 52rem;
  margin-inline: auto;
}

.ph-draft-toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: hsl(25, 45%, 28%);
  color: #fff;
  font-size: 0.8125rem;
  font-family: "Prompt", "Inter", sans-serif;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  transition: opacity 0.3s;
}
.ph-draft-toast--hidden {
  opacity: 0;
}

.ph-draft-banner {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
}
.ph-draft-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.ph-draft-banner__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ph-draft-banner__text strong {
  font-size: 0.9rem;
  color: #92400e;
}
.ph-draft-banner__text span {
  font-size: 0.8rem;
  color: #b45309;
}
.ph-draft-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ph-draft-photo-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 0.5rem;
  padding: 0.6rem 0.875rem;
  font-size: 0.8rem;
  color: #9a3412;
  margin-bottom: 1rem;
}
.ph-draft-photo-warning svg {
  flex-shrink: 0;
}
.ph-draft-photo-warning span {
  flex: 1;
}
.ph-draft-photo-warning__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: #9a3412;
  padding: 0 0.2rem;
  opacity: 0.7;
}
.ph-draft-photo-warning__close:hover {
  opacity: 1;
}

.ph-section-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 1.25rem 0;
}

.ph-color-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  margin-right: 0.3rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.ph-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
  cursor: pointer;
}
.ph-confirm-check__input {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--ph-primary);
  cursor: pointer;
}
.ph-confirm-check__label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ph-fg);
  user-select: none;
}

.ph-auth-inline {
  max-width: 420px;
  margin: 0 auto;
}
.ph-auth-inline__social {
  margin-bottom: 0.5rem;
}
.ph-auth-inline__tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 1.5rem;
}
.ph-auth-inline__tab {
  flex: 1;
  background: none;
  border: none;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.ph-auth-inline__tab.is-active {
  color: var(--ph-primary);
  border-bottom-color: var(--ph-primary);
}
.ph-auth-inline__form {
  display: flex;
  flex-direction: column;
}
.ph-auth-inline__submit {
  width: 100%;
  margin-top: 1.25rem;
  justify-content: center;
}
.ph-auth-inline__error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  text-align: center;
}

.ph-wizard-success {
  text-align: center;
  padding: 3rem 1rem;
}
.ph-wizard-success__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.ph-wizard-success__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ph-wizard-success__desc {
  color: var(--ph-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.ph-wizard-success__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ph-auth {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 4rem;
  background: var(--ph-bg);
}

.ph-auth__card {
  background: #fff;
  border-radius: var(--ph-r-xl);
  box-shadow: var(--ph-shadow-card);
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 420px;
}

.ph-auth__logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.ph-auth__logo img {
  height: 2.5rem;
  width: auto;
}

.ph-auth__tabs-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ph-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.ph-auth__tabs {
  display: flex;
  border-radius: var(--ph-r-lg);
  background: var(--ph-card);
  padding: 0.25rem;
  margin-bottom: 1.25rem;
}

.ph-auth__tab {
  flex: 1;
  padding: 0.5rem 0.25rem;
  border: none;
  background: transparent;
  border-radius: calc(var(--ph-r-lg) - 0.25rem);
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 500;
  color: var(--ph-muted);
  cursor: pointer;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-auth__tab.is-active {
  background: #fff;
  color: var(--ph-primary);
  box-shadow: var(--ph-shadow-soft);
}

.ph-auth__alert {
  padding: 0.75rem 1rem;
  border-radius: var(--ph-r);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.ph-auth__alert--error {
  background: hsl(0, 80%, 97%);
  color: hsl(0, 70%, 45%);
  border: 1px solid hsl(0, 80%, 90%);
}
.ph-auth__alert--success {
  background: hsl(140, 60%, 96%);
  color: hsl(140, 50%, 30%);
  border: 1px solid hsl(140, 60%, 85%);
}

.ph-auth__toggle {
  display: flex;
  border-bottom: 2px solid var(--ph-border);
  margin-bottom: 1.25rem;
}
.ph-auth__toggle button {
  flex: 1;
  padding: 0.625rem;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 500;
  color: var(--ph-muted);
  cursor: pointer;
  position: relative;
  transition: color var(--ph-dur) var(--ph-ease);
}
.ph-auth__toggle button.is-active {
  color: var(--ph-primary);
}
.ph-auth__toggle button.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ph-primary);
  border-radius: 1px;
}

.ph-auth__remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.ph-auth__remember-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.ph-auth__remember-label input {
  flex-shrink: 0;
}

.ph-auth__forgot {
  color: var(--ph-primary);
  text-decoration: none;
  font-size: 0.875rem;
}
.ph-auth__forgot:hover {
  text-decoration: underline;
}

.ph-auth__tos {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-top: 1rem;
  line-height: 1.5;
}
.ph-auth__tos a {
  color: var(--ph-primary);
  text-decoration: underline;
}

.ph-auth__tos-check {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  align-items: flex-start;
}
.ph-auth__tos-check span {
  flex: 1;
  line-height: 1.5;
}
.ph-auth__tos-check a {
  color: var(--ph-primary);
  text-decoration: underline;
}

.ph-auth__switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-top: 1rem;
}
.ph-auth__switch button {
  background: none;
  border: none;
  padding: 0;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: inherit;
  font-weight: 600;
  color: var(--ph-primary);
  cursor: pointer;
}
.ph-auth__switch button:hover {
  text-decoration: underline;
}

.ph-auth__logo-text {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ph-primary);
}

.ph-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  cursor: pointer;
}
.ph-checkbox-label input[type=checkbox] {
  accent-color: var(--ph-primary);
}

.ph-auth__otp-hint {
  text-align: center;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  color: var(--ph-fg);
}
.ph-auth__otp-hint strong {
  color: var(--ph-primary);
}

.ph-otp-boxes {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ph-otp-box {
  width: 3rem;
  height: 3.25rem;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r);
  text-align: center;
  font-size: 1.5rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 600;
  color: var(--ph-fg);
  background: #fff;
  transition: border-color var(--ph-dur) var(--ph-ease);
}
.ph-otp-box:focus {
  outline: none;
  border-color: var(--ph-primary);
  box-shadow: 0 0 0 3px hsla(25, 45%, 30%, 0.12);
}
.ph-otp-box:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}

.ph-auth__resend {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-top: 0.75rem;
}

.ph-auth__resend-btn {
  background: none;
  border: none;
  color: var(--ph-primary);
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.ph-auth__back {
  display: block;
  margin: 0.75rem auto 0;
  background: none;
  border: none;
  color: var(--ph-muted);
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.ph-auth__social-hint {
  text-align: center;
  color: var(--ph-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.ph-auth__social-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ph-auth__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ph-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.ph-auth__divider::before, .ph-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ph-border);
}

.ph-auth__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ph-auth__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ph-primary);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.ph-auth__sub {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-auth__quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.ph-auth__quick .ph-auth__social-btns {
  margin-bottom: 0;
}
.ph-auth__quick .ph-auth__divider {
  margin-bottom: 0;
}

.ph-auth__phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ph-auth__footer {
  margin-top: 1.25rem;
  border-top: 1px solid var(--ph-border);
  padding-top: 1.25rem;
}
.ph-auth__footer .ph-auth__switch {
  margin-top: 0;
}
.ph-auth__footer .ph-auth__tos {
  margin-top: 0.75rem;
}

.ph-auth__social-btns .nsl-container {
  width: 100%;
}
.ph-auth__social-btns .nsl-container-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.ph-auth__social-btns a[data-plugin=nsl] {
  display: block;
  width: 100%;
  text-decoration: none;
}
.ph-auth__social-btns .nsl-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  border-radius: var(--ph-r) !important;
  padding: 0.6875rem 1.25rem !important;
  box-shadow: none !important;
  font-family: "Prompt", "Inter", sans-serif, sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  transition: filter var(--ph-dur) var(--ph-ease);
}
.ph-auth__social-btns .nsl-button:hover {
  filter: brightness(0.96);
}
.ph-auth__social-btns .nsl-button-svg-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  width: 24px;
  padding: 0 !important;
  margin-right: 0.75rem;
}
.ph-auth__social-btns .nsl-button-svg-container svg {
  width: 24px !important;
  height: 24px !important;
  display: block;
}
.ph-auth__social-btns .nsl-button-label-container {
  flex: 1;
  text-align: center;
  font-family: inherit;
  font-size: inherit;
  padding: 0 !important;
  line-height: 1.4 !important;
  margin: 0 24px 0 0;
}
.ph-auth__social-btns .nsl-button-google {
  background: #fff !important;
  color: #3c4043 !important;
  border: 1.5px solid #dadce0 !important;
}
.ph-auth__social-btns .nsl-button-google:hover {
  background: #f8f9fa !important;
  border-color: #c6c9cd !important;
}
.ph-auth__social-btns .nsl-button-line {
  background: #06c755 !important;
  color: #fff !important;
  border: none !important;
}

.ph-btn--social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: var(--ph-r);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-btn--social.ph-btn--facebook {
  background: hsl(213, 90%, 97%);
  color: #1877f2;
  border: 1px solid hsl(213, 60%, 88%);
}
.ph-btn--social.ph-btn--facebook:hover {
  background: hsl(213, 90%, 93%);
}
.ph-btn--social.ph-btn--google {
  background: #fff;
  color: var(--ph-fg);
  border: 1px solid var(--ph-border);
}
.ph-btn--social.ph-btn--google:hover {
  background: var(--ph-card);
}
.ph-btn--social.ph-btn--line {
  background: hsl(122, 44%, 97%);
  color: #06c755;
  border: 1px solid hsl(122, 44%, 88%);
}
.ph-btn--social.ph-btn--line:hover {
  background: hsl(122, 44%, 93%);
}

.ph-input-wrap {
  position: relative;
}

.ph-input--pass {
  padding-right: 2.75rem !important;
}

.ph-input__eye {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
  color: var(--ph-muted);
  display: flex;
  align-items: center;
}
.ph-input__eye:hover {
  color: var(--ph-fg);
}
.ph-input__eye svg {
  display: block;
}

.ph-dash-page {
  padding: 1.5rem 0;
}

.ph-dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.ph-dash-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.2;
}
.ph-dash-header__sub {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-top: 0.25rem;
}
.ph-dash-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ph-dash-promo {
  position: relative;
  background: linear-gradient(to right, hsl(38, 90%, 93%), hsl(5, 80%, 93%), hsl(340, 80%, 93%));
  border: 1px solid hsl(5, 80%, 88%);
  border-radius: var(--ph-r-xl);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ph-dash-promo__tag {
  position: absolute;
  top: 0.5rem;
  right: 3rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--ph-r-full);
  padding: 0.125rem 0.5rem;
  color: var(--ph-muted);
}
.ph-dash-promo__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-fg);
}
.ph-dash-promo__close:hover {
  background: rgba(255, 255, 255, 0.95);
}
.ph-dash-promo__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--ph-r-lg);
  background: hsl(0, 72%, 51%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ph-dash-promo__body {
  flex: 1;
  min-width: 0;
}
.ph-dash-promo__title {
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-dash-promo__desc {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0.25rem 0 0;
}
.ph-dash-promo__cta {
  align-self: flex-start;
}

.ph-dashboard {
  display: flex;
  flex-direction: column;
  background: var(--ph-bg);
}

.ph-dash-sidebar {
  display: none;
}

.ph-dash-tabs-strip-wrap {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--ph-border);
  overflow: hidden;
}
.ph-dash-tabs-strip-wrap::after {
  content: "›";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3rem;
  background: linear-gradient(to right, transparent, rgb(255, 255, 255) 60%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
  font-size: 1.125rem;
  color: var(--ph-muted);
  z-index: 1;
}

.ph-dash-tabs-strip {
  display: flex;
  overflow-x: auto;
  gap: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ph-dash-tabs-strip::-webkit-scrollbar {
  display: none;
}
.ph-dash-tabs-strip__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0.875rem;
  min-height: 3rem;
  border: none;
  background: transparent;
  font-size: 0.75rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-muted);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-dash-tabs-strip__btn .ph-dash-tabs-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
.ph-dash-tabs-strip__btn .ph-dash-tabs-strip__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.ph-dash-tabs-strip__btn.is-active {
  color: var(--ph-primary);
  border-bottom-color: var(--ph-primary);
  font-weight: 600;
}

.ph-dash-content {
  flex: 1;
  padding: 1rem;
  max-width: 100%;
  overflow: hidden;
}

.ph-dash-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--ph-fg);
}
.ph-dash-section__subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--ph-fg);
}
.ph-dash-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ph-dash-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--ph-r);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.ph-dash-alert--success {
  background: hsl(140, 60%, 96%);
  color: hsl(140, 50%, 30%);
  border: 1px solid hsl(140, 60%, 85%);
}
.ph-dash-alert--error {
  background: hsl(0, 80%, 97%);
  color: hsl(0, 70%, 45%);
  border: 1px solid hsl(0, 80%, 90%);
}

.ph-dash-profile-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--ph-border);
  margin-bottom: 0.5rem;
}
.ph-dash-profile-mini__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ph-fg);
}

.ph-dash-credit-link {
  font-size: 0.8125rem;
  color: var(--ph-primary);
  text-decoration: none;
}
.ph-dash-credit-link:hover {
  text-decoration: underline;
}

.ph-dash-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ph-card);
}
.ph-dash-avatar--lg {
  width: 5rem;
  height: 5rem;
  display: block;
}

.ph-dash-avatar-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ph-dash-avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ph-dur) var(--ph-ease);
}
.ph-dash-avatar-wrap:hover .ph-dash-avatar-overlay {
  opacity: 1;
}

.ph-dash-profile-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ph-card);
  border-radius: var(--ph-r-xl);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.ph-dash-profile-identity__info {
  flex: 1;
  min-width: 0;
}
.ph-dash-profile-identity__name {
  font-weight: 700;
  font-size: 1.0625rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-dash-profile-identity__email {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-top: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-dash-profile-identity__hint {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin-top: 0.375rem;
}

.ph-dash-profile-form {
  max-width: 640px;
}

.ph-avatar-picker {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.2s ease;
}
.ph-avatar-picker__sheet {
  width: 100%;
  background: var(--ph-bg);
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0 1.25rem 2.5rem;
  max-height: 88vh;
  overflow-y: auto;
  transition: transform 0.25s ease;
}
.ph-avatar-picker__handle {
  width: 2.5rem;
  height: 0.25rem;
  background: var(--ph-border);
  border-radius: 9999px;
  margin: 0.875rem auto 1.25rem;
}
.ph-avatar-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.ph-avatar-picker__title {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
}
.ph-avatar-picker__close {
  all: unset;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ph-card);
  color: var(--ph-muted);
  flex-shrink: 0;
  transition: background var(--ph-dur);
}
.ph-avatar-picker__close:hover {
  background: var(--ph-hover);
}

.ph-picker-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ph-border);
  margin-bottom: 1.25rem;
}
.ph-picker-tabs button {
  all: unset;
  cursor: pointer;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--ph-dur), border-color var(--ph-dur);
  white-space: nowrap;
}
.ph-picker-tabs button.active {
  color: var(--ph-primary);
  border-bottom-color: var(--ph-primary);
  font-weight: 600;
}

.ph-preset-section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ph-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.ph-preset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ph-preset-item {
  all: unset;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  outline: 3px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.15s ease, transform 0.15s ease;
}
.ph-preset-item svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ph-preset-item.active {
  outline-color: var(--ph-primary);
}
.ph-preset-item:hover {
  transform: scale(1.06);
}
.ph-preset-item:focus-visible {
  outline-color: var(--ph-primary);
}

.ph-color-swatches {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ph-color-swatch {
  all: unset;
  cursor: pointer;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  outline: 3px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.15s ease, transform 0.15s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.ph-color-swatch.active {
  outline-color: var(--ph-primary);
}
.ph-color-swatch:hover {
  transform: scale(1.12);
}
.ph-color-swatch:focus-visible {
  outline-color: var(--ph-primary);
}

.ph-picker-save-btn {
  width: 100%;
  justify-content: center;
}

.ph-picker-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 2px dashed var(--ph-border);
  border-radius: var(--ph-r-xl);
  padding: 2.5rem 1.25rem;
  cursor: pointer;
  text-align: center;
  color: var(--ph-muted);
  font-size: 0.875rem;
  transition: border-color var(--ph-dur), background var(--ph-dur);
  margin-bottom: 0.75rem;
}
.ph-picker-upload-zone svg {
  opacity: 0.4;
  margin-bottom: 0.25rem;
}
.ph-picker-upload-zone:hover {
  border-color: var(--ph-primary);
  background: var(--ph-card);
}
.ph-picker-upload-zone__hint {
  font-size: 0.75rem;
  color: var(--ph-muted);
  opacity: 0.7;
}

.ph-picker-upload-note {
  font-size: 0.75rem;
  color: var(--ph-muted);
  text-align: center;
  opacity: 0.7;
}

.ph-picker-social-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: 1.5rem 0 1rem;
}
.ph-picker-social-preview img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.ph-picker-social-preview__label {
  font-size: 0.875rem;
  color: var(--ph-muted);
}

.ph-connected-accounts {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ph-border);
}
.ph-connected-accounts__title {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  margin-bottom: 0.25rem;
}
.ph-connected-accounts__desc {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-bottom: 1rem;
}

.ph-connected-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ph-connected-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
}
.ph-connected-row__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.3rem;
  background: #fff;
  border: 1px solid var(--ph-border);
}
.ph-connected-row__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ph-connected-row__icon--line {
  background: #06C755;
  border-color: #06C755;
}
.ph-connected-row__icon--line svg {
  filter: brightness(0) invert(1);
}
.ph-connected-row__icon--facebook {
  background: #1877F2;
  border-color: #1877F2;
}
.ph-connected-row__icon--facebook svg {
  filter: brightness(0) invert(1);
}
.ph-connected-row__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
  min-width: 0;
}
.ph-connected-row__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-fg);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-connected-row__status {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}
.ph-connected-row__status--on {
  color: hsl(140, 45%, 38%);
}
.ph-connected-row__status--off {
  color: var(--ph-muted);
}
.ph-connected-row__action {
  flex-shrink: 0;
}
.ph-connected-row__action .nsl-container,
.ph-connected-row__action .nsl-container-block,
.ph-connected-row__action .nsl-container-buttons,
.ph-connected-row__action div[class*=nsl-container],
.ph-connected-row__action div[class*=nsl-buttons] {
  all: unset !important;
  display: inline-block !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.ph-connected-row__action a[data-plugin=nsl],
.ph-connected-row__action a.nsl-button {
  all: unset;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  font-family: "Prompt", "Inter", sans-serif !important;
  padding: 0.4rem 0.875rem !important;
  border-radius: var(--ph-r-full) !important;
  border: 1.5px solid var(--ph-border) !important;
  background: #fff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
  transition: border-color 0.15s, background 0.15s, color 0.15s !important;
}
.ph-connected-row__action a[data-plugin=nsl] .nsl-button-svg-container,
.ph-connected-row__action a[data-plugin=nsl] .nsl-button-icon,
.ph-connected-row__action a[data-plugin=nsl] img,
.ph-connected-row__action a[data-plugin=nsl] svg,
.ph-connected-row__action a.nsl-button .nsl-button-svg-container,
.ph-connected-row__action a.nsl-button .nsl-button-icon,
.ph-connected-row__action a.nsl-button img,
.ph-connected-row__action a.nsl-button svg {
  display: none !important;
}
.ph-connected-row__action a[data-plugin=nsl] .nsl-button-label-container,
.ph-connected-row__action a[data-plugin=nsl] .nsl-button-google-label,
.ph-connected-row__action a[data-plugin=nsl] .nsl-button-line-label,
.ph-connected-row__action a[data-plugin=nsl] span,
.ph-connected-row__action a[data-plugin=nsl] div,
.ph-connected-row__action a.nsl-button .nsl-button-label-container,
.ph-connected-row__action a.nsl-button .nsl-button-google-label,
.ph-connected-row__action a.nsl-button .nsl-button-line-label,
.ph-connected-row__action a.nsl-button span,
.ph-connected-row__action a.nsl-button div {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}
.ph-connected-row__action--unlink .nsl-button, .ph-connected-row__action--unlink a[data-plugin=nsl] {
  border-color: hsl(0, 60%, 88%) !important;
  color: hsl(0, 55%, 50%) !important;
}
.ph-connected-row__action--unlink .nsl-button:hover, .ph-connected-row__action--unlink a[data-plugin=nsl]:hover {
  background: hsl(0, 80%, 97%) !important;
  border-color: hsl(0, 60%, 70%) !important;
}
.ph-connected-row__action--connect .nsl-button, .ph-connected-row__action--connect a[data-plugin=nsl] {
  border-color: var(--ph-primary) !important;
  color: var(--ph-primary) !important;
}
.ph-connected-row__action--connect .nsl-button:hover, .ph-connected-row__action--connect a[data-plugin=nsl]:hover {
  background: var(--ph-primary) !important;
  color: #fff !important;
}

.ph-dash-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ph-form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ph-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.ph-form-group .ph-label {
  margin-bottom: 0;
}

.ph-dash-listing-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-dash-listing-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 0.875rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.ph-dash-listing-card__thumb {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--ph-r);
  overflow: hidden;
  background: var(--ph-card);
}
.ph-dash-listing-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-dash-listing-card__body {
  flex: 1;
  min-width: 0;
}
.ph-dash-listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}
.ph-dash-listing-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-dash-listing-card__title a {
  color: var(--ph-fg);
  text-decoration: none;
}
.ph-dash-listing-card__title a:hover {
  color: var(--ph-primary);
}
.ph-dash-listing-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-dash-listing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex-shrink: 0;
}

.ph-badge--success {
  background: hsl(140, 55%, 88%);
  color: hsl(140, 50%, 24%);
  border: 1px solid hsl(140, 45%, 76%);
}

.ph-badge--warn {
  background: hsl(38, 90%, 88%);
  color: hsl(38, 80%, 28%);
  border: 1px solid hsl(38, 70%, 72%);
}

.ph-badge--muted {
  background: hsl(25, 20%, 90%);
  color: var(--ph-muted);
  border: 1px solid hsl(25, 15%, 80%);
}

.ph-badge--error {
  background: hsl(0, 80%, 93%);
  color: hsl(0, 60%, 36%);
  border: 1px solid hsl(0, 60%, 80%);
}

.ph-badge--featured {
  background: hsl(45, 90%, 90%);
  color: hsl(45, 80%, 28%);
  border: 1px solid hsl(45, 70%, 72%);
}

.ph-dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ph-stats-free-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(135deg, hsl(30, 60%, 96%), hsl(19, 80%, 94%));
  border: 1px solid hsl(25, 50%, 85%);
  border-radius: var(--ph-r-lg);
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--ph-primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.ph-stats-free-banner__cta {
  font-size: 0.75rem;
  color: var(--ph-primary);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.25rem 0.625rem;
  border: 1.5px solid var(--ph-primary);
  border-radius: var(--ph-r-full);
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-stats-free-banner__cta:hover {
  background: var(--ph-primary);
  color: #fff;
}

.ph-stat-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 1rem;
}
.ph-stat-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1;
  margin: 0.25rem 0;
}
.ph-stat-card__label {
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-stat-card__sub {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin-top: 0.25rem;
}
.ph-stat-card__change {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.ph-stat-card__change.is-up {
  color: #16a34a;
}
.ph-stat-card__change.is-down {
  color: #dc2626;
}
.ph-stat-card--wide {
  grid-column: 1/-1;
  max-width: 200px;
  margin: 0.5rem 0;
}

.ph-stat-ctr--high {
  color: var(--ph-primary);
  font-weight: 600;
}

.ph-dash-stats-table {
  overflow-x: auto;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r);
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-dash-stats-table__head, .ph-dash-stats-table__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) repeat(5, 3.5rem);
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  align-items: center;
}
.ph-dash-stats-table__head--3col, .ph-dash-stats-table__row--3col {
  grid-template-columns: minmax(120px, 1fr) repeat(3, 4rem);
}
.ph-dash-stats-table__head {
  background: var(--ph-card);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ph-muted);
  border-bottom: 1px solid var(--ph-border);
}
.ph-dash-stats-table__row {
  border-bottom: 1px solid var(--ph-border);
}
.ph-dash-stats-table__row:last-child {
  border-bottom: none;
}
.ph-dash-stats-table__name {
  color: var(--ph-fg);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-dash-stats-table__name:hover {
  color: var(--ph-primary);
}

.ph-dash-mode-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ph-dash-mode-tabs .ph-tag-chip {
  border: 1.5px solid var(--ph-border);
  background: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  padding: 0.375rem 0.875rem;
  border-radius: var(--ph-r-full);
  color: var(--ph-fg);
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-dash-mode-tabs .ph-tag-chip.is-active {
  background: var(--ph-primary);
  color: #fff;
  border-color: var(--ph-primary);
}

.ph-review-reply {
  background: hsl(25, 30%, 97%);
  border-left: 3px solid var(--ph-border);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.625rem 0.75rem;
  margin-top: 0.625rem;
}
.ph-review-reply__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.25rem;
  display: block;
}
.ph-review-reply__text {
  font-size: 0.875rem;
  color: var(--ph-fg);
  line-height: 1.6;
  margin: 0;
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-review-reply-form {
  margin-top: 0.625rem;
}
.ph-review-reply-form__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ph-dash-review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ph-dash-review-filters .ph-tag-chip {
  border: 1px solid var(--ph-border);
  background: #fff;
  cursor: pointer;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-dash-review-filters .ph-tag-chip.is-active {
  background: var(--ph-primary);
  color: #fff;
  border-color: var(--ph-primary);
}

.ph-dash-badge-inline {
  font-size: 0.75rem;
  background: hsl(0, 80%, 55%);
  color: #fff;
  border-radius: var(--ph-r-full);
  padding: 0.1rem 0.375rem;
  margin-left: 0.25rem;
}

.ph-dash-review-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-dash-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ph-border);
}
.ph-dash-pagination__info {
  font-size: 0.875rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  min-width: 4rem;
  text-align: center;
}

.ph-dash-load-more {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.ph-review-card--dash {
  background: #fff;
  border: 1.5px solid var(--ph-border);
  border-radius: 1rem;
  padding: 1rem 1.125rem;
}
.ph-review-card--dash .ph-review-card__for {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-card--dash .ph-review-card__head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.625rem;
}
.ph-review-card--dash .ph-review-card__avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.ph-review-card--dash .ph-review-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.ph-review-card--dash .ph-review-card__meta strong {
  font-size: 0.9375rem;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-card--dash .ph-review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-primary);
  text-decoration: none;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-card--dash .ph-review-card__name:hover {
  text-decoration: underline;
}
.ph-review-card--dash .ph-review-card__stars {
  flex-shrink: 0;
  font-size: 0.9375rem;
}
.ph-review-card--dash .ph-review-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--ph-border);
}
.ph-review-card--dash .ph-review-card__date {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-card--dash .ph-review-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-review-card--dash .ph-review-card__actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.ph-dash-section__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-fg-muted);
  margin: 0 0 0.75rem;
}

.ph-dash-saved-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-dash-saved-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ph-dash-saved-card__thumb {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--ph-r);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ph-card);
}
.ph-dash-saved-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-dash-saved-card__body {
  flex: 1;
  min-width: 0;
}
.ph-dash-saved-card__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-fg);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}
.ph-dash-saved-card__title:hover {
  color: var(--ph-primary);
}

.ph-dash-unsave {
  flex-shrink: 0;
  color: var(--ph-muted);
}

.ph-verify-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--ph-r-lg);
  margin-bottom: 1.5rem;
}
.ph-verify-status__icon {
  font-size: 2rem;
}
.ph-verify-status strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.ph-verify-status p {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0;
}
.ph-verify-status--done {
  background: hsl(140, 60%, 95%);
  border: 1px solid hsl(140, 50%, 85%);
}
.ph-verify-status--pending {
  background: hsl(38, 90%, 96%);
  border: 1px solid hsl(38, 80%, 85%);
}

.ph-verify-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ph-verify-step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
}
.ph-verify-step__num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-verify-card {
  background: var(--ph-card);
  border-radius: var(--ph-r-xl);
  padding: 1.5rem;
  max-width: 640px;
}
.ph-verify-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
}
.ph-verify-card__desc {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0 0 1.25rem;
}

.ph-dash-section__desc {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: -0.5rem 0 1.25rem;
}

.ph-verify-block {
  background: var(--ph-card);
  border-radius: var(--ph-r-xl);
  padding: 1.25rem 1.5rem;
  max-width: 640px;
}
.ph-verify-block__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ph-verify-block__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: hsl(25, 50%, 92%);
  border-radius: 0.5rem;
  color: var(--ph-primary);
}
.ph-verify-block__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.ph-verify-block__title {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
}
.ph-verify-block__hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-verify-block .ph-badge {
  margin-left: auto;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  gap: 0.3rem;
}
.ph-verify-block__body {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(25, 30%, 90%);
}
.ph-verify-block__info {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0 0 0.75rem;
}
.ph-verify-block__reason {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: hsl(0, 60%, 45%);
  padding: 0.5rem 0.75rem;
  background: hsl(0, 80%, 97%);
  border-radius: var(--ph-r-md);
  border-left: 3px solid hsl(0, 60%, 65%);
}

.ph-verify-biz-status {
  margin-bottom: 0.75rem;
}

.ph-verify-biz-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
  margin: 0 0 0.625rem;
}

.ph-verify-done {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: hsl(140, 55%, 96%);
  border: 1px solid hsl(140, 40%, 82%);
  border-radius: var(--ph-r-lg);
  padding: 0.875rem 1rem;
}
.ph-verify-done__icon {
  color: hsl(140, 50%, 38%);
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: flex;
}
.ph-verify-done__content {
  flex: 1;
  min-width: 0;
}
.ph-verify-done__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(140, 40%, 28%);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.5rem;
}
.ph-verify-done__preview {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: hsl(140, 35%, 45%);
}
.ph-verify-done__preview-note {
  font-size: 0.75rem;
  color: hsl(140, 30%, 50%);
  font-style: italic;
}

.ph-verify-revoked {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: hsl(0, 70%, 97%);
  border: 1px solid hsl(0, 55%, 85%);
  border-radius: var(--ph-r-lg);
  padding: 0.75rem 1rem;
  margin-bottom: 0.875rem;
}
.ph-verify-revoked__icon {
  color: hsl(0, 58%, 42%);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.ph-verify-revoked__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(0, 55%, 30%);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.25rem;
}
.ph-verify-revoked__reason {
  font-size: 0.8125rem;
  color: hsl(0, 50%, 38%);
  margin: 0 0 0.25rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-verify-revoked__note {
  font-size: 0.8125rem;
  color: hsl(0, 40%, 50%);
  margin: 0;
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-btn--withdraw {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0 0.875rem;
  height: 2rem;
  border-radius: var(--ph-r-full);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
  background: transparent;
  color: hsl(0, 58%, 42%);
  border: 1.5px solid hsl(0, 50%, 80%);
  cursor: pointer;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-btn--withdraw:hover:not(:disabled) {
  background: hsl(0, 80%, 97%);
  border-color: hsl(0, 58%, 60%);
}
.ph-btn--withdraw:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ph-badge--lg {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
}

.ph-verify-upload-form {
  margin-top: 0.25rem;
}

.ph-verify-docs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.ph-verify-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--ph-bg);
  border: 1px dashed var(--ph-border);
  border-radius: var(--ph-r-lg);
  cursor: pointer;
  transition: border-color 0.2s;
}
.ph-verify-doc-row:hover {
  border-color: var(--ph-primary);
}
.ph-verify-doc-row.is-done {
  border-style: solid;
  border-color: hsl(142, 50%, 60%);
  background: hsl(142, 50%, 97%);
}
.ph-verify-doc-row__left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ph-fg);
  min-width: 0;
}
.ph-verify-doc-row__left svg {
  flex-shrink: 0;
  color: var(--ph-muted);
}
.ph-verify-doc-row__left span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-verify-doc-row__action {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-primary);
  flex-shrink: 0;
  white-space: nowrap;
}
.ph-verify-doc-row.is-done .ph-verify-doc-row__action {
  color: hsl(142, 50%, 38%);
}

.ph-dash-package-current {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ph-dash-package-current__tier {
  font-size: 1rem;
}
.ph-dash-package-current__expire {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-left: 0.75rem;
}

.ph-dash-package-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.ph-dash-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ph-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
}

.ph-mypet-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

.ph-mypet-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--ph-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-card);
  padding: 0.75rem 1rem;
}
.ph-mypet-card__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--ph-r-base);
  overflow: hidden;
  background: var(--ph-bg);
}
.ph-mypet-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-mypet-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ph-mypet-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
}
.ph-mypet-card__meta {
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-mypet-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.ph-mypet-card__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ph-tag-chip--xs {
  font-size: 0.6875rem;
  padding: 0.1rem 0.4rem;
}

.ph-color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ph-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--ph-border);
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-family: "Prompt", "Inter", sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ph-color-chip input[type=checkbox] {
  display: none;
}
.ph-color-chip:has(input:checked) {
  border-color: var(--ph-primary);
  background: hsl(25, 45%, 94%);
  color: var(--ph-primary);
  font-weight: 600;
}
.ph-color-chip:hover {
  border-color: var(--ph-primary);
}

.ph-mypet-form {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}
.ph-mypet-form__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--ph-fg);
}
.ph-mypet-form__photo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ph-mypet-form__photo-hint {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-top: 0.5rem;
}
.ph-mypet-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ph-border);
}

.ph-mypet-dropzone {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border: 2px dashed var(--ph-border);
  border-radius: var(--ph-r-card);
  background: hsl(30, 55%, 97%);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-mypet-dropzone:hover {
  border-color: var(--ph-primary);
  background: hsl(25, 45%, 96%);
}
.ph-mypet-dropzone--filled {
  border-style: solid;
  border-color: var(--ph-primary);
}
.ph-mypet-dropzone--loading {
  pointer-events: none;
}
.ph-mypet-dropzone__preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-mypet-dropzone__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: var(--ph-muted);
  padding: 1.5rem;
  text-align: center;
}
.ph-mypet-dropzone__placeholder svg {
  opacity: 0.5;
}
.ph-mypet-dropzone__placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
}
.ph-mypet-dropzone__spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(30, 55%, 97%, 0.85);
  font-size: 0.875rem;
  color: var(--ph-primary);
  font-weight: 500;
  gap: 0.5rem;
}

.ph-dash-empty__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ph-dash-stats-empty-hint {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin: 0.25rem 0 1.25rem;
  padding: 0.625rem 0.875rem;
  background: hsl(25, 30%, 95%);
  border-radius: var(--ph-r-md);
}

.ph-dash-review-filters--status {
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ph-border);
}

.ph-dash-review-filters__label {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.ph-quickfill {
  background: hsl(30, 55%, 95%);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-card);
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
}
.ph-quickfill__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-muted);
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ph-quickfill__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ph-quickfill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  background: var(--ph-card);
  border: 2px solid var(--ph-border);
  border-radius: var(--ph-r-base);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  min-width: 70px;
  text-align: center;
}
.ph-quickfill-card--active {
  border-color: var(--ph-primary);
  background: hsl(25, 45%, 95%);
}
.ph-quickfill-card--new {
  border-style: dashed;
  color: var(--ph-muted);
}
.ph-quickfill-card__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.ph-quickfill-card__icon {
  font-size: 1.25rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-quickfill-card__name {
  font-size: 0.75rem;
  font-weight: 500;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-dash-badge {
  background: hsl(0, 80%, 55%);
  color: #fff;
  border-radius: var(--ph-r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.1rem 0.375rem;
  margin-left: auto;
}

.ph-boost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.ph-boost-card {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-boost-card.is-selected {
  border-color: var(--ph-primary);
  background: hsla(25, 45%, 30%, 0.06);
}
.ph-boost-card__icon {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}
.ph-boost-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ph-fg);
  margin-bottom: 0.125rem;
}
.ph-boost-card__price {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-boost-total {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-top: 0.5rem;
}
.ph-boost-total strong {
  color: var(--ph-primary);
}

.ph-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.ph-counter button {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--ph-border);
  border-radius: 50%;
  background: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--ph-dur) var(--ph-ease);
}
.ph-counter button:hover {
  border-color: var(--ph-primary);
  color: var(--ph-primary);
}
.ph-counter span {
  font-size: 0.9375rem;
  font-weight: 600;
  min-width: 4rem;
  text-align: center;
}

.ph-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.ph-modal {
  background: #fff;
  border-radius: var(--ph-r-xl) var(--ph-r-xl) 0 0;
  padding: 1.5rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.ph-modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ph-modal__desc {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-bottom: 1rem;
}
.ph-modal__footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

.ph-dash-sidebar__footer {
  padding: 1rem;
  border-top: 1px solid var(--ph-border);
  margin-top: auto;
}

.ph-dash-logout {
  font-size: 0.875rem;
  color: var(--ph-muted);
  text-decoration: none;
}
.ph-dash-logout:hover {
  color: hsl(0, 60%, 50%);
}

.ph-dash-side-msg {
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: var(--ph-r-lg);
  background: var(--ph-primary);
  color: #fff;
}
.ph-dash-side-msg__head {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ph-dash-side-msg__text {
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 0.75rem;
}
.ph-dash-side-msg__text strong {
  color: #fff;
}
.ph-dash-side-msg__btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  justify-content: center;
  display: flex;
  height: auto;
  padding: 0.4rem 0.875rem;
}
.ph-dash-side-msg__btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.ph-btn--success {
  background: hsl(140, 50%, 45%);
  color: #fff;
}
.ph-btn--success:hover {
  background: hsl(140, 50%, 40%);
}
.ph-btn--success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ph-btn--danger {
  background: hsl(0, 60%, 50%);
  color: #fff;
}
.ph-btn--danger:hover {
  background: hsl(0, 60%, 44%);
}
.ph-btn--danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ph-btn--success {
  background: hsl(142, 50%, 38%);
  color: #fff;
}
.ph-btn--success:hover {
  background: hsl(142, 50%, 32%);
}
.ph-btn--success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ph-btn--xs {
  padding: 0.25rem 0.625rem;
  font-size: 0.8rem;
}

.ph-btn--sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.875rem;
}

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

.ph-credits {
  background: var(--ph-bg);
  min-height: calc(100vh - 4rem);
  padding-bottom: 4rem;
}

.ph-credits__wrap {
  padding-top: 2rem;
}

.ph-credits__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ph-credits__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
}

.ph-credits__balance {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  background: var(--ph-primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--ph-r-full);
}

.ph-credits__balance-num {
  font-size: 1.625rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1;
}

.ph-credits__balance-label {
  font-size: 0.875rem;
  opacity: 0.85;
}

.ph-credits__section {
  margin-bottom: 2.5rem;
}

.ph-credits__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin-bottom: 0.375rem;
}

.ph-credits__section-desc {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-bottom: 1rem;
}

.ph-topup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ph-topup-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 1.125rem 0.75rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--ph-dur) var(--ph-ease);
  user-select: none;
}
.ph-topup-card:hover {
  border-color: var(--ph-primary);
  transform: translateY(-2px);
}
.ph-topup-card.is-selected {
  border-color: var(--ph-primary);
  background: hsla(25, 45%, 30%, 0.05);
  box-shadow: 0 0 0 3px hsla(25, 45%, 30%, 0.15);
}
.ph-topup-card--popular {
  border-color: var(--ph-primary);
}
.ph-topup-card__tag {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.625rem;
  border-radius: var(--ph-r-full);
  white-space: nowrap;
}
.ph-topup-card__price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.25rem;
}
.ph-topup-card__credits {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ph-fg);
  margin-bottom: 0.25rem;
}
.ph-topup-card__bonus {
  font-size: 0.8rem;
  color: hsl(140, 50%, 40%);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.ph-topup-card__rate {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-promptpay {
  margin-top: 1.25rem;
}

.ph-promptpay__card {
  background: #fff;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r-xl);
  padding: 1.5rem;
}

.ph-promptpay__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ph-fg);
}

.ph-promptpay__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ph-promptpay__qr-wrap {
  display: flex;
  justify-content: center;
}

.ph-promptpay__qr-placeholder {
  width: 8rem;
  height: 8rem;
  background: var(--ph-card);
  border-radius: var(--ph-r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: var(--ph-muted);
  font-size: 0.8125rem;
}
.ph-promptpay__qr-placeholder span {
  font-size: 2rem;
}

.ph-promptpay__info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ph-promptpay__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ph-border);
}
.ph-promptpay__row:last-child {
  border-bottom: none;
}
.ph-promptpay__row span {
  color: var(--ph-muted);
}
.ph-promptpay__row strong {
  color: var(--ph-fg);
}

.ph-promptpay__amount {
  color: var(--ph-primary) !important;
  font-size: 1.125rem;
}

.ph-promptpay__hint {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.ph-promptpay__confirm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ph-upload-zone--sm {
  padding: 0.75rem 1rem;
}
.ph-upload-zone--sm.has-file {
  background: hsl(140, 60%, 96%);
  border-color: hsl(140, 50%, 60%);
  color: hsl(140, 50%, 35%);
}

.ph-upload-zone__filename {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
  word-break: break-all;
}

.ph-boost-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ph-boost-grid--lg {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.ph-boost-grid--lg .ph-boost-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-align: left;
  padding: 0.875rem 1rem;
}
.ph-boost-grid--lg .ph-boost-card__icon {
  font-size: 1.5rem;
}
.ph-boost-grid--lg .ph-boost-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
}
.ph-boost-grid--lg .ph-boost-card__price {
  font-size: 0.8rem;
  color: var(--ph-muted);
}
.ph-boost-grid--lg .ph-boost-card__desc {
  font-size: 0.8rem;
  color: var(--ph-muted);
  display: none;
}

.ph-boost-duration {
  background: var(--ph-card);
  border-radius: var(--ph-r-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ph-boost-duration__tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ph-boost-duration__tab {
  padding: 0.375rem 0.875rem;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r-full);
  background: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--ph-dur) var(--ph-ease);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-boost-duration__tab.is-active {
  background: var(--ph-primary);
  color: #fff;
  border-color: var(--ph-primary);
}

.ph-boost-summary {
  background: #fff;
  border-radius: var(--ph-r);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ph-boost-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.ph-boost-summary__row span {
  color: var(--ph-muted);
}
.ph-boost-summary__row strong {
  color: var(--ph-fg);
}

.ph-text-error {
  color: hsl(0, 60%, 50%);
}

.ph-boost-no-credits {
  font-size: 0.875rem;
}
.ph-boost-no-credits a {
  color: var(--ph-primary);
}

.ph-txn-list {
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  overflow: hidden;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.875rem;
}
.ph-txn-list__head, .ph-txn-list__row {
  display: grid;
  grid-template-columns: 6rem 1fr 4rem 4rem;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  align-items: center;
}
.ph-txn-list__head {
  background: var(--ph-card);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ph-muted);
  border-bottom: 1px solid var(--ph-border);
}
.ph-txn-list__row {
  border-bottom: 1px solid var(--ph-border);
}
.ph-txn-list__row:last-child {
  border-bottom: none;
}
.ph-txn-list__row:nth-child(odd) {
  background: hsl(30, 55%, 99%);
}
.ph-txn-list__date {
  color: var(--ph-muted);
  font-size: 0.8rem;
}
.ph-txn-list__desc {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ph-txn-list__amount {
  text-align: right;
  font-weight: 600;
}
.ph-txn-list__amount.is-credit {
  color: hsl(140, 50%, 40%);
}
.ph-txn-list__amount.is-debit {
  color: hsl(0, 60%, 50%);
}
.ph-txn-list__balance {
  text-align: right;
  color: var(--ph-muted);
}

.ph-packages {
  background: var(--ph-bg);
  padding: 3rem 0 5rem;
}

.ph-packages__header {
  text-align: center;
  margin-bottom: 3rem;
}

.ph-packages__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin-bottom: 0.5rem;
}

.ph-packages__subtitle {
  font-size: 1rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-packages__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.ph-pkg-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--ph-border);
  border-radius: var(--ph-r-xl);
  padding: 1.75rem 1.5rem;
}
.ph-pkg-card--primary {
  border-color: var(--ph-primary);
}
.ph-pkg-card--dark {
  background: var(--ph-primary-dark);
  color: #fff;
  border-color: var(--ph-primary-dark);
}
.ph-pkg-card--current {
  box-shadow: 0 0 0 3px hsla(25, 45%, 30%, 0.2);
}
.ph-pkg-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--ph-r-full);
}
.ph-pkg-card__current-label {
  display: inline-block;
  font-size: 0.75rem;
  background: hsl(140, 60%, 93%);
  color: hsl(140, 50%, 30%);
  padding: 0.2rem 0.625rem;
  border-radius: var(--ph-r-full);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.ph-pkg-card__head {
  margin-bottom: 1rem;
}
.ph-pkg-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.ph-pkg-card--dark .ph-pkg-card__name {
  color: #fff;
}
.ph-pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.ph-pkg-card__price-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-primary);
}
.ph-pkg-card--dark .ph-pkg-card__price-num {
  color: hsl(30, 90%, 80%);
}
.ph-pkg-card__price-period {
  font-size: 0.875rem;
  color: var(--ph-muted);
}
.ph-pkg-card--dark .ph-pkg-card__price-period {
  color: rgba(255, 255, 255, 0.65);
}
.ph-pkg-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ph-pkg-card__feat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.ph-pkg-card__feat.is-no {
  color: var(--ph-muted);
}
.ph-pkg-card--dark .ph-pkg-card__feat.is-no {
  color: rgba(255, 255, 255, 0.45);
}
.ph-pkg-card__feat-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.is-ok .ph-pkg-card__feat-icon {
  background: hsl(140, 60%, 93%);
  color: hsl(140, 50%, 35%);
}
.is-no .ph-pkg-card__feat-icon {
  background: var(--ph-card);
  color: var(--ph-muted);
}
.ph-pkg-card--dark .is-ok .ph-pkg-card__feat-icon {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}
.ph-pkg-card__cta {
  width: 100%;
  text-align: center;
}

.ph-packages__faq {
  margin-bottom: 3rem;
}

.ph-packages__faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ph-packages__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-packages__faq-item {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  overflow: hidden;
}
.ph-packages__faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.ph-packages__faq-item summary::after {
  content: "＋";
  color: var(--ph-muted);
}
.ph-packages__faq-item[open] summary::after {
  content: "－";
}

.ph-packages__faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--ph-muted);
  line-height: 1.6;
  margin: 0;
}

.ph-packages--teaser {
  position: relative;
}
.ph-packages--teaser .ph-packages__inner {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  opacity: 0.8;
}

.ph-packages__teaser-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 2rem 1.25rem;
}

.ph-packages__teaser-card {
  background: #fff;
  border-radius: var(--ph-r-xl);
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--ph-shadow-card);
  max-width: 380px;
  width: 100%;
}

.ph-packages__teaser-eyebrow {
  font-family: "Inter", "Prompt", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ph-primary);
  margin: 0 0 0.75rem;
}

.ph-packages__teaser-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ph-fg);
  line-height: 1.2;
  margin: 0 0 0.875rem;
}

.ph-packages__teaser-text {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.ph-packages__contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--ph-muted);
}

.ph-blog-archive__header {
  margin-top: 0.75rem;
}
.ph-blog-archive__body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.ph-blog-archive__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ph-primary);
  margin-bottom: 0.375rem;
}
.ph-blog-archive__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ph-text);
  margin: 0 0 0.375rem;
  line-height: 1.2;
  text-align: left;
}
.ph-blog-archive__subtitle {
  color: var(--ph-muted);
  font-size: 0.9375rem;
  margin: 0;
}
.ph-blog-archive__count {
  color: var(--ph-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.ph-blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ph-blog-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: var(--ph-card-bg);
  border: 1px solid var(--ph-border);
  color: var(--ph-text);
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ph-blog-cat:hover {
  background: var(--ph-primary);
  border-color: var(--ph-primary);
  color: #fff;
}
.ph-blog-cat.is-active {
  background: var(--ph-primary);
  border-color: var(--ph-primary);
  color: #fff;
}
.ph-blog-cat__count {
  font-size: 0.75rem;
  opacity: 0.75;
}

.ph-blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.ph-blog-grid--related {
  grid-template-columns: 1fr;
}

.ph-blog-card {
  background: var(--ph-card-bg);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--ph-border);
  transition: box-shadow 0.2s;
}
.ph-blog-card:hover {
  box-shadow: var(--shadow-card);
}
.ph-blog-card__thumb-link {
  display: block;
  overflow: hidden;
}
.ph-blog-card__thumb {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}
.ph-blog-card__thumb--placeholder {
  width: 100%;
  height: 200px;
  background: var(--ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-blog-card__thumb--placeholder::after {
  content: "";
  width: 36px;
  height: 36px;
  opacity: 0.35;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='%23a0856c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ph-blog-card__thumb-link:hover .ph-blog-card__thumb {
  transform: scale(1.04);
}
.ph-blog-card__body {
  padding: 1rem;
}
.ph-blog-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ph-primary);
  text-decoration: none;
  margin-bottom: 0.375rem;
}
.ph-blog-card__cat:hover {
  text-decoration: underline;
}
.ph-blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.ph-blog-card__title a {
  color: var(--ph-text);
  text-decoration: none;
}
.ph-blog-card__title a:hover {
  color: var(--ph-primary);
}
.ph-blog-card__title--sm {
  font-size: 0.9375rem;
}
.ph-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--ph-muted);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.ph-blog-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-blog-card--sm .ph-blog-card__thumb {
  height: 160px;
}
.ph-blog-card--sm__thumb--placeholder {
  height: 160px;
}

.ph-blog-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ph-card-bg);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--ph-border);
  margin-bottom: 2rem;
}
.ph-blog-hero__thumb-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ph-blog-hero__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.ph-blog-hero__thumb--placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--ph-border);
}
.ph-blog-hero__thumb-link:hover .ph-blog-hero__thumb {
  transform: scale(1.04);
}
.ph-blog-hero__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ph-blog-hero__label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.ph-blog-hero__dot {
  color: var(--ph-muted);
  font-size: 0.75rem;
}
.ph-blog-hero__featured-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ph-primary);
  opacity: 0.75;
}
.ph-blog-hero__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}
.ph-blog-hero__title a {
  color: var(--ph-text);
  text-decoration: none;
}
.ph-blog-hero__title a:hover {
  color: var(--ph-primary);
}
.ph-blog-hero__excerpt {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.ph-blog-hero__meta {
  font-size: 0.8125rem;
  color: var(--ph-muted);
}

.ph-single-post {
  padding: 1.5rem 0 3rem;
}
.ph-single-post__wrap {
  display: block;
}
.ph-single-post__layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.ph-single-post__article {
  min-width: 0;
}
.ph-single-post__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0.75rem 0 1rem;
  color: var(--ph-text);
}
.ph-single-post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-bottom: 1.25rem;
}
.ph-single-post__author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.ph-single-post__author {
  font-weight: 500;
  color: var(--ph-text);
}
.ph-single-post__dot {
  opacity: 0.4;
}

.ph-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ph-text);
}
.ph-prose h2, .ph-prose h3, .ph-prose h4 {
  font-weight: 700;
  margin: 1.75em 0 0.75em;
  line-height: 1.35;
}
.ph-prose h2 {
  font-size: 1.375rem;
}
.ph-prose h3 {
  font-size: 1.15rem;
}
.ph-prose p {
  margin: 0 0 1.25em;
}
.ph-prose ul, .ph-prose ol {
  margin: 0 0 1.25em 1.5rem;
}
.ph-prose li {
  margin-bottom: 0.375em;
}
.ph-prose blockquote {
  border-left: 3px solid var(--ph-primary);
  margin: 1.5em 0;
  padding: 0.75em 1.25em;
  background: var(--ph-card-bg);
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--ph-muted);
}
.ph-prose img {
  max-width: 100%;
  border-radius: 0.75rem;
}
.ph-prose a {
  color: var(--ph-primary);
}
.ph-prose a:hover {
  text-decoration: underline;
}
.ph-prose code {
  background: var(--ph-border);
  padding: 0.1em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}
.ph-prose pre {
  background: var(--ph-card-bg);
  border: 1px solid var(--ph-border);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
}
.ph-prose pre code {
  background: none;
  padding: 0;
}

.ph-single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.ph-tag-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--ph-card-bg);
  border: 1px solid var(--ph-border);
  font-size: 0.8125rem;
  color: var(--ph-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.ph-tag-chip:hover {
  border-color: var(--ph-primary);
  color: var(--ph-primary);
}

.ph-single-post__admin-bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.875rem;
  background: hsl(38, 80%, 97%);
  border: 1px solid hsl(38, 55%, 87%);
  border-radius: 0.625rem;
}
.ph-single-post__admin-bar-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(38, 50%, 45%);
  font-family: "Prompt", "Inter", system-ui, sans-serif;
  margin-right: 0.125rem;
  flex-shrink: 0;
}
.ph-single-post__admin-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ph-single-post__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--ph-border);
  border-radius: 1rem;
  background: var(--ph-card);
}

.ph-share-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.ph-share-group--right {
  margin-left: auto;
}

.ph-share-group__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.ph-share-btn:hover {
  opacity: 0.85;
}
.ph-share-btn--fb {
  background: #1877f2;
  color: #fff;
}
.ph-share-btn--line {
  background: #06c755;
  color: #fff;
}
.ph-share-btn--copy {
  background: var(--ph-card-bg);
  border: 1px solid var(--ph-border);
  color: var(--ph-text);
}

.ph-single-post__sidebar {
  display: none;
}

.ph-single-post__sidebar-card {
  background: var(--ph-card-bg);
  border-radius: 1rem;
  border: 1px solid var(--ph-border);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.ph-single-post__sidebar-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--ph-text);
}

.ph-sidebar-post {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--ph-border);
  text-decoration: none;
}
.ph-sidebar-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ph-sidebar-post:first-of-type {
  padding-top: 0;
}
.ph-sidebar-post__thumb {
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}
.ph-sidebar-post__thumb--placeholder {
  background: var(--ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.ph-sidebar-post__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-text);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.ph-sidebar-post__date {
  font-size: 0.75rem;
  color: var(--ph-muted);
}
.ph-sidebar-post:hover .ph-sidebar-post__title {
  color: var(--ph-primary);
}

.ph-sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ph-border);
  text-decoration: none;
  color: var(--ph-text);
  font-size: 0.875rem;
}
.ph-sidebar-cat:last-child {
  border-bottom: none;
}
.ph-sidebar-cat:hover {
  color: var(--ph-primary);
}
.ph-sidebar-cat__count {
  font-size: 0.75rem;
  color: var(--ph-muted);
  background: var(--ph-border);
  padding: 0.1em 0.5em;
  border-radius: 9999px;
}

.ph-related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ph-border);
}
.ph-related-posts__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.ph-blog-grid--related {
  gap: 1rem;
}

.ph-blog-archive__back {
  margin-bottom: 1.25rem;
}
.ph-blog-archive__back a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-primary);
  text-decoration: none;
}
.ph-blog-archive__back a:hover {
  text-decoration: underline;
}

.ph-read-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--ph-bar-pct, 0%);
  height: 3px;
  background: var(--ph-primary);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

.ph-single-post__hero {
  margin: 0 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ph-border);
}
.ph-single-post__hero .ph-single-post__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-single-post__hero .ph-single-post__hero-caption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  text-align: center;
  background: var(--ph-card);
}

.ph-single-post__updated {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  background: hsl(38, 80%, 95%);
  color: hsl(38, 70%, 35%);
  border: 1px solid hsl(38, 60%, 85%);
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-prose h2 {
  border-left: 3px solid var(--ph-primary);
  padding-left: 0.75rem;
  margin-left: -0.75rem;
}
.ph-prose mark {
  background: hsl(38, 90%, 88%);
  color: var(--ph-fg);
  padding: 0 0.25em;
  border-radius: 0.2em;
}
.ph-prose .ph-pullquote {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ph-primary);
  border-left: none;
  padding: 1rem 1.25rem;
  margin: 2em 0;
  background: var(--ph-card);
  border-radius: 1rem;
  font-family: "Prompt", "Inter", sans-serif;
  quotes: none;
}
.ph-prose .ph-pullquote::before, .ph-prose .ph-pullquote::after {
  content: none;
}
.ph-prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ph-border), transparent);
  margin: 2em 0;
}

.ph-toc-mobile {
  margin-bottom: 1.25rem;
  border-radius: 0.875rem;
  border: 1px solid var(--ph-border);
  overflow: hidden;
}
.ph-toc-mobile__toggle {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  background: var(--ph-card);
  cursor: pointer;
}
.ph-toc-mobile__toggle svg:first-child {
  color: var(--ph-primary);
  flex-shrink: 0;
}
.ph-toc-mobile__chevron {
  margin-left: auto;
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--ph-muted);
}

.ph-toc--mobile {
  background: #fff;
  padding: 0.75rem 1rem 0.875rem;
}
.ph-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.ph-toc__item {
  display: flex;
  align-items: flex-start;
}
.ph-toc__num {
  display: none;
}
.ph-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-muted);
  text-decoration: none;
  width: 100%;
  line-height: 1.45;
  transition: color 0.15s, background 0.15s;
}
.ph-toc__link:hover {
  color: var(--ph-primary);
  background: hsla(25, 45%, 30%, 0.06);
}
.ph-toc__link.is-active {
  color: var(--ph-primary);
  font-weight: 600;
  background: hsla(25, 45%, 30%, 0.08);
}

.ph-author-bio {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ph-card);
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin-top: 2rem;
  border: 1px solid var(--ph-border);
}
.ph-author-bio__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ph-border);
}
.ph-author-bio__body {
  flex: 1;
  min-width: 0;
}
.ph-author-bio__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ph-primary);
  margin-bottom: 0.2rem;
}
.ph-author-bio__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin-bottom: 0.125rem;
}
.ph-author-bio__role {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.5rem;
}
.ph-author-bio__desc {
  font-size: 0.875rem;
  color: var(--ph-fg);
  line-height: 1.65;
  margin: 0 0 0.625rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-author-bio__more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ph-primary);
  text-decoration: none;
}
.ph-author-bio__more:hover {
  text-decoration: underline;
}

.ph-post-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ph-primary);
  color: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.ph-post-cta__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-post-cta__icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.ph-post-cta__body {
  flex: 1;
  min-width: 160px;
}
.ph-post-cta__title {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  margin-bottom: 0.2rem;
}
.ph-post-cta__sub {
  font-size: 0.8125rem;
  opacity: 0.8;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-post-cta__btn {
  flex-shrink: 0;
  background: #fff !important;
  color: var(--ph-primary) !important;
  border-color: transparent !important;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
}
.ph-post-cta__btn:hover {
  background: hsl(30, 55%, 97%) !important;
}

.ph-back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 200;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ph-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px hsla(25, 45%, 30%, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.ph-back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ph-back-top:hover {
  background: var(--ph-primary-dark);
}

.ph-contact-page {
  padding: 2rem 0 3rem;
}
.ph-contact-page__layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.ph-contact-page__subtitle {
  color: var(--ph-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 1.75rem;
}

.ph-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ph-contact-form__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.ph-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ph-required {
  color: #e53e3e;
}

.ph-textarea {
  width: 100%;
  min-height: 120px;
  border: 1.5px solid var(--ph-border);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif;
  background: #fff;
  color: var(--ph-fg);
  transition: border-color 0.15s;
  box-sizing: border-box;
  resize: vertical;
  line-height: 1.6;
}
.ph-textarea:focus {
  outline: none;
  border-color: var(--ph-primary);
  box-shadow: 0 0 0 3px hsla(25, 45%, 30%, 0.12);
}
.ph-textarea:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}
.ph-textarea::placeholder {
  color: #9ca3af;
}

.ph-btn--full {
  width: 100%;
  justify-content: center;
}

.ph-contact-form__note {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  line-height: 1.5;
  margin-top: 0.625rem;
  text-align: center;
}

.ph-contact-info-card {
  background: var(--ph-card-bg);
  border-radius: 1rem;
  border: 1px solid var(--ph-border);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.ph-contact-info-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}
.ph-contact-info-card__subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.875rem;
}
.ph-contact-info-card--social {
  margin-bottom: 0;
}

.ph-contact-info-item {
  display: flex;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ph-border);
}
.ph-contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ph-contact-info-item:first-child {
  padding-top: 0;
}
.ph-contact-info-item__icon {
  color: var(--ph-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.ph-contact-info-item__label {
  font-size: 0.75rem;
  color: var(--ph-muted);
  margin-bottom: 0.15rem;
}
.ph-contact-info-item__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ph-text);
  text-decoration: none;
}
.ph-contact-info-item__value:hover {
  color: var(--ph-primary);
}

.ph-contact-info-card--social .s_social {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.ph-contact-info-card--social .s_social a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-primary-dark);
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-contact-info-card--social .s_social a:hover {
  background: var(--ph-primary);
  color: #fff;
}
.ph-contact-info-card--social .s_social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ph-faq-page {
  padding: 2rem 0 3rem;
}
.ph-faq-page__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ph-faq-page__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ph-text);
  margin-bottom: 0.5rem;
}
.ph-faq-page__subtitle {
  color: var(--ph-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.ph-faq-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ph-faq-group__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-text);
  margin: 0 0 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--ph-primary);
  display: inline-block;
}

.ph-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ph-border);
  border-radius: 1rem;
  overflow: hidden;
}

.ph-faq-item {
  border-bottom: 1px solid var(--ph-border);
}
.ph-faq-item:last-child {
  border-bottom: none;
}
.ph-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ph-card-bg);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ph-text);
  font-family: inherit;
  transition: background 0.15s;
}
.ph-faq-item__q:hover {
  background: var(--ph-hover);
}
.ph-faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.ph-faq-item.is-open .ph-faq-item__icon {
  transform: rotate(180deg);
}
.ph-faq-item.is-open .ph-faq-item__q {
  background: var(--ph-hover);
}
.ph-faq-item__a {
  overflow: hidden;
}
.ph-faq-item__a-inner {
  padding: 0.875rem 1.25rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ph-muted);
  background: var(--ph-bg);
}
.ph-faq-item__a-inner p {
  margin: 0 0 0.75em;
}
.ph-faq-item__a-inner p:last-child {
  margin-bottom: 0;
}

.ph-faq-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--ph-muted);
  font-size: 0.9375rem;
}

.ph-faq-a-enter {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ph-faq-a-start {
  opacity: 0;
  transform: translateY(-6px);
}

.ph-faq-a-end {
  opacity: 1;
  transform: translateY(0);
}

.ph-field--zip {
  position: relative;
}

.ph-zip-wrap {
  position: relative;
}
.ph-zip-wrap .ph-input {
  padding-right: 2.5rem;
}

.ph-zip-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r);
  box-shadow: var(--ph-shadow-card);
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
}
.ph-zip-results__item {
  padding: 0.625rem 1rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--ph-fg);
  transition: background var(--ph-dur) var(--ph-ease);
}
.ph-zip-results__item:hover {
  background: var(--ph-card);
  color: var(--ph-primary);
}

.ph-zip-selected {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--ph-primary);
  font-weight: 500;
}

.ph-zip-hint {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.ph-zip-hint::before {
  content: "";
  flex-shrink: 0;
}

.ph-svc-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.ph-svc-row > .ph-input {
  grid-column: 1/-1;
}
.ph-svc-row__unit {
  height: 2.75rem;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  border: 1.5px solid var(--ph-border);
  background: var(--ph-bg);
  font-size: 0.8rem;
  color: var(--ph-text);
  cursor: pointer;
  white-space: nowrap;
}
.ph-svc-row__unit:focus {
  outline: none;
  border-color: var(--ph-primary);
}
.ph-svc-row__unit:focus-visible {
  outline: 2px solid var(--ph-primary);
  outline-offset: 2px;
  border-color: var(--ph-primary);
}
.ph-svc-row__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--ph-border);
  background: transparent;
  color: var(--ph-muted);
  cursor: pointer;
  flex-shrink: 0;
}
.ph-svc-row__remove:hover {
  border-color: #e11d48;
  color: #e11d48;
}

.ph-price-tier {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ph-primary);
  margin-left: 0.25rem;
  opacity: 0.85;
}

.ph-btn--sm {
  font-size: 0.8rem;
  padding: 0.375rem 0.75rem;
  height: auto;
  border-radius: 0.75rem;
  margin-top: 0.25rem;
}

.ph-toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}
.ph-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ph-toggle__track {
  width: 2.5rem;
  height: 1.375rem;
  background: #d1cbc4;
  border-radius: 9999px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ph-toggle__track::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.ph-toggle__input:checked ~ .ph-toggle__track {
  background: var(--ph-primary);
}
.ph-toggle__input:checked ~ .ph-toggle__track::after {
  transform: translateX(1.125rem);
}
.ph-toggle__input:disabled ~ .ph-toggle__track {
  opacity: 0.45;
  cursor: not-allowed;
}

.ph-oh-global {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  background: var(--ph-card);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.ph-oh-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-oh-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid var(--ph-border);
  background: var(--ph-bg);
}
.ph-oh-row__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: 7rem;
  flex-shrink: 0;
}
.ph-oh-row__check {
  width: 1rem;
  height: 1rem;
  accent-color: var(--ph-primary);
  cursor: pointer;
}
.ph-oh-row__day {
  font-size: 0.9rem;
  font-weight: 500;
}
.ph-oh-row__times {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
}
.ph-oh-row__sep {
  color: var(--ph-muted);
}
.ph-oh-row__closed {
  font-size: 0.8rem;
  color: var(--ph-muted);
}
.ph-oh-row__24h {
  margin-left: auto;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--ph-border);
  background: var(--ph-bg);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ph-muted);
}
.ph-oh-row__24h.is-active {
  background: var(--ph-primary);
  border-color: var(--ph-primary);
  color: #fff;
}

.ph-input--time {
  max-width: 6rem;
  padding: 0.375rem 0.5rem;
  height: 2.25rem;
  font-size: 0.875rem;
}

.ph-success-share {
  margin-top: 1.5rem;
  text-align: center;
}
.ph-success-share__label {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-bottom: 0.75rem;
}
.ph-success-share__btns {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ph-btn--line {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.ph-btn--line:hover {
  background: #05b04a;
}
.ph-btn--line.ph-btn--full, .ph-btn--line.ph-btn--sm {
  border-radius: var(--ph-r-lg);
}

.ph-btn--warm {
  background: var(--ph-card);
  color: var(--ph-primary);
  border: 1px solid hsl(25, 45%, 72%);
}
.ph-btn--warm:hover {
  background: hsl(19, 80%, 90%);
}

.ph-btn--claim {
  background: hsl(4, 75%, 94%);
  color: hsl(4, 55%, 38%);
  border: 1px solid hsl(4, 75%, 80%);
}
.ph-btn--claim:hover {
  background: hsl(4, 75%, 89%);
}

.ph-btn--fb {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.ph-btn--fb:hover {
  background: #1565d8;
}

.ph-adoption-archive {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.ph-adoption-archive__hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}
.ph-adoption-archive__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0 0 0.5rem;
}
.ph-adoption-archive__sub {
  color: var(--ph-muted);
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

.ph-adoption-filter,
.ph-lostpet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--ph-card);
  border-radius: var(--ph-r-lg);
}
.ph-adoption-filter__select,
.ph-lostpet-filter__select {
  height: 2.75rem;
  padding: 0 2.25rem 0 0.75rem;
  border-radius: var(--ph-r);
  border: 1px solid var(--ph-border);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.625rem center;
  -webkit-appearance: none;
  appearance: none;
  font-size: 0.875rem;
  color: var(--ph-fg);
  cursor: pointer;
  min-width: 130px;
}
.ph-adoption-filter__select:focus,
.ph-lostpet-filter__select:focus {
  outline: 2px solid var(--ph-primary);
  outline-offset: 1px;
}
.ph-adoption-filter__clear,
.ph-lostpet-filter__clear {
  font-size: 0.875rem;
  color: var(--ph-muted);
  text-decoration: underline;
  padding: 0.5rem;
}
.ph-adoption-filter__clear:hover,
.ph-lostpet-filter__clear:hover {
  color: var(--ph-fg);
}

.ph-adoption-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.ph-adoption-card {
  background: #fff;
  border-radius: var(--ph-r-lg);
  border: 1px solid var(--ph-border);
  overflow: hidden;
  box-shadow: var(--ph-shadow-soft);
  transition: box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-adoption-card:hover {
  box-shadow: var(--ph-shadow-card);
  transform: translateY(-2px);
}
.ph-adoption-card--resolved {
  opacity: 0.65;
  pointer-events: none;
}
.ph-adoption-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph-card);
}
.ph-adoption-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ph-ease);
}
.ph-adoption-card:hover .ph-adoption-card__image {
  transform: scale(1.04);
}
.ph-adoption-card__image--placeholder {
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--ph-muted);
  background: var(--ph-card) url("../img/placeholder.webp") center/cover no-repeat;
}
.ph-adoption-card__badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--ph-r-full);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-adoption-card__badge--free {
  background: hsl(142, 60%, 90%);
  color: hsl(142, 50%, 30%);
}
.ph-adoption-card__badge--paid {
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 30%);
}
.ph-adoption-card__resolved {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: hsla(142, 40%, 20%, 0.7);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-adoption-card__body {
  padding: 0.875rem 1rem 1rem;
}
.ph-adoption-card__name {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ph-fg);
}
.ph-adoption-card__name a {
  color: inherit;
  text-decoration: none;
}
.ph-adoption-card__name a:hover {
  color: var(--ph-primary);
}
.ph-adoption-card__meta {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0 0 0.5rem;
}
.ph-adoption-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.ph-adoption-card2 {
  position: relative;
  background: #fff;
  border-radius: var(--ph-r-lg);
  border: 1px solid var(--ph-border);
  overflow: hidden;
  box-shadow: var(--ph-shadow-soft);
  transition: box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-adoption-card2:hover {
  box-shadow: var(--ph-shadow-card);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}
.ph-adoption-card2--resolved {
  opacity: 0.65;
  pointer-events: none;
}
.ph-adoption-card2__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ph-adoption-card2__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph-card);
}
.ph-adoption-card2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ph-ease);
}
.ph-adoption-card2:hover .ph-adoption-card2__image {
  transform: scale(1.04);
}
.ph-adoption-card2__image--placeholder {
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--ph-muted);
  background: var(--ph-card) url("../img/placeholder.webp") center/cover no-repeat;
}
.ph-adoption-card2__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--ph-r-full);
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-adoption-card2__resolved-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: hsla(142, 40%, 20%, 0.7);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-adoption-card2__body {
  padding: 0.875rem 1rem 1rem;
}
.ph-adoption-card2__head {
  margin-bottom: 0.25rem;
}
.ph-adoption-card2__name {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--ph-fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-adoption-card2__species {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0 0 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-adoption-card2__location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-bottom: 0.625rem;
}
.ph-adoption-card2__location svg {
  flex-shrink: 0;
}
.ph-adoption-card2__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ph-adoption-card2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  flex: 1;
}
.ph-adoption-card2__fee {
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.15rem 0.5rem;
  border-radius: var(--ph-r-full);
}
.ph-adoption-card2__fee--free {
  background: hsl(142, 60%, 90%);
  color: hsl(142, 50%, 30%);
}
.ph-adoption-card2__fee--paid {
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 30%);
}

.ph-detail-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ph-border);
}
.ph-detail-section:last-of-type {
  border-bottom: none;
}
.ph-detail-section__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ph-fg);
  margin: 0 0 1rem;
}

.ph-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.ph-detail-item__label {
  display: block;
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.ph-detail-item__value {
  font-size: 0.9375rem;
  color: var(--ph-fg);
  font-weight: 500;
}
.ph-detail-item__value--mono {
  font-family: "Inter", monospace;
  font-size: 0.875rem;
}
.ph-detail-item--full {
  grid-column: 1/-1;
}

.ph-detail-note {
  font-size: 0.9375rem;
  color: var(--ph-fg);
  line-height: 1.65;
  margin: 0.75rem 0 0;
  padding: 1rem;
  background: var(--ph-card);
  border-radius: var(--ph-r);
}

.ph-health-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ph-health-chip {
  padding: 0.3rem 0.75rem;
  border-radius: var(--ph-r-full);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-health-chip--good {
  background: hsl(142, 60%, 90%);
  color: hsl(142, 50%, 25%);
}
.ph-health-chip--warn {
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 25%);
}
.ph-health-chip--neutral {
  background: var(--ph-card);
  color: var(--ph-fg);
  border: 1px solid var(--ph-border);
}

.ph-owner-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ph-border);
}

.ph-close-choices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ph-close-choice {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--ph-r-lg);
  border: 2px solid transparent;
  font-size: 1rem;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-align: left;
}
.ph-close-choice--happy {
  background: hsl(142, 60%, 94%);
  color: hsl(142, 50%, 22%);
  border-color: hsl(142, 50%, 80%);
}
.ph-close-choice--happy:hover:not(:disabled) {
  background: hsl(142, 60%, 88%);
  border-color: hsl(142, 50%, 65%);
}
.ph-close-choice--neutral {
  background: var(--ph-card);
  color: var(--ph-fg);
  border-color: var(--ph-border);
}
.ph-close-choice--neutral:hover:not(:disabled) {
  background: hsl(25, 30%, 90%);
}
.ph-close-choice:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ph-close-cancel {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-muted);
  cursor: pointer;
  text-align: center;
}
.ph-close-cancel:hover {
  color: var(--ph-fg);
}

.ph-ph-reward-card,
.ph-reward-card {
  background: hsl(35, 90%, 92%);
  border-radius: var(--ph-r-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}
.ph-ph-reward-card__label,
.ph-reward-card__label {
  font-size: 0.8125rem;
  color: hsl(35, 60%, 35%);
  margin: 0 0 0.25rem;
  font-family: "Prompt", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ph-ph-reward-card__amount,
.ph-reward-card__amount {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  color: hsl(35, 60%, 25%);
  margin: 0;
}

.ph-days-ago {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin-left: 0.375rem;
}

.ph-contact-card__share {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ph-border);
}
.ph-contact-card__share-label {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0 0 0.625rem;
}

.ph-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--ph-r);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-alert--success {
  background: hsl(142, 60%, 90%);
  color: hsl(142, 50%, 25%);
  border: 1px solid hsl(142, 40%, 80%);
}
.ph-alert--urgent {
  background: hsl(0, 90%, 93%);
  color: hsl(0, 60%, 30%);
  border: 1px solid hsl(0, 60%, 82%);
}
.ph-alert--warning {
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 25%);
  border: 1px solid hsl(35, 80%, 78%);
}

.ph-lostpet-archive {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.ph-lostpet-archive__hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}
.ph-lostpet-archive__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0 0 0.5rem;
}
.ph-lostpet-archive__sub {
  color: var(--ph-muted);
  margin: 0 0 1.5rem;
}

.ph-lostpet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.ph-lostpet-card {
  background: #fff;
  border-radius: var(--ph-r-lg);
  border: 1px solid var(--ph-border);
  overflow: hidden;
  box-shadow: var(--ph-shadow-soft);
  transition: box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-lostpet-card:hover {
  box-shadow: var(--ph-shadow-card);
  transform: translateY(-2px);
}
.ph-lostpet-card--urgent {
  border-color: hsl(0, 75%, 75%);
}
.ph-lostpet-card--warning {
  border-color: hsl(35, 85%, 70%);
}
.ph-lostpet-card--found {
  opacity: 0.65;
}
.ph-lostpet-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph-card);
}
.ph-lostpet-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ph-ease);
}
.ph-lostpet-card:hover .ph-lostpet-card__image {
  transform: scale(1.04);
}
.ph-lostpet-card__image--placeholder {
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--ph-muted);
  background: var(--ph-card);
}
.ph-lostpet-card__status-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--ph-r-full);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-lostpet-card__status-badge--found {
  background: hsl(142, 60%, 90%);
  color: hsl(142, 50%, 25%);
}
.ph-lostpet-card__status-badge--urgent {
  background: hsl(0, 90%, 93%);
  color: hsl(0, 60%, 30%);
}
.ph-lostpet-card__reward {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--ph-r-full);
  background: hsl(35, 90%, 90%);
  color: hsl(35, 60%, 25%);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-lostpet-card__body {
  padding: 0.875rem 1rem 1rem;
}
.ph-lostpet-card__name {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--ph-fg);
}
.ph-lostpet-card__name a {
  color: inherit;
  text-decoration: none;
}
.ph-lostpet-card__name a:hover {
  color: var(--ph-primary);
}
.ph-lostpet-card__meta {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0 0 0.375rem;
}
.ph-lostpet-card__lost-date {
  font-size: 0.8125rem;
  color: var(--ph-fg);
  margin: 0 0 0.25rem;
  font-weight: 500;
}
.ph-lostpet-card__days-ago {
  color: var(--ph-muted);
  font-weight: 400;
}
.ph-lostpet-card__location {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  margin: 0;
}

.ph-side-card {
  background: #fff;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 1.25rem;
  box-shadow: var(--ph-shadow-soft);
  margin-top: 2rem;
}
.ph-side-card__heading {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.875rem;
  color: var(--ph-fg);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.ph-side-card__kyc-icon {
  display: inline-flex;
  color: var(--ph-primary);
  flex-shrink: 0;
}
.ph-side-card__fee {
  margin-bottom: 0.875rem;
}
.ph-side-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.625rem;
  color: var(--ph-fg);
}
.ph-side-card__gate {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  margin: 0 0 0.75rem;
}
.ph-side-card__address {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.ph-side-card__expires {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  text-align: center;
  margin: 0.75rem 0 0;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-side-card .ph-btn {
  margin-bottom: 0.5rem;
}
.ph-side-card .ph-reward-card {
  margin-bottom: 1rem;
}
.ph-side-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ph-side-card__actions .ph-btn {
  margin-bottom: 0;
}
.ph-side-card__actions .ph-action-wrap {
  width: 100%;
}

.ph-catpage__hero {
  background: hsla(19, 80%, 94%, 0.45);
  border-bottom: 1px solid var(--ph-border);
  padding: 1.5rem 0;
}
.ph-catpage__hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .ph-catpage__hero-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.ph-catpage__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ph-fg);
  line-height: 1.2;
  margin: 0 0 0.375rem;
  text-align: left;
}
@media (min-width: 768px) {
  .ph-catpage__title {
    font-size: 2rem;
  }
}
.ph-catpage__desc {
  font-size: 1rem;
  color: hsl(25, 30%, 40%);
  margin: 0;
  text-align: left;
}
.ph-catpage__count {
  font-size: 0.875rem;
  color: var(--ph-muted);
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}
.ph-catpage__count strong {
  color: var(--ph-fg);
}
.ph-catpage__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .ph-catpage__toolbar {
    display: none;
  }
}
.ph-catpage__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r);
  background: var(--ph-card);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ph-fg);
  cursor: pointer;
}
.ph-catpage__filter-btn:hover {
  background: var(--ph-accent);
}
.ph-catpage__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .ph-catpage__body {
    grid-template-columns: 15rem 1fr;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .ph-catpage__body--full {
    grid-template-columns: 1fr;
  }
}
.ph-catpage__backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: hsla(25, 50%, 8%, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.ph-catpage__sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  z-index: 50;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.28s var(--ph-ease);
  background: var(--ph-bg);
  border-right: 1px solid var(--ph-border);
  box-shadow: 4px 0 32px hsla(25, 40%, 20%, 0.12);
}
.ph-catpage__sidebar.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .ph-catpage__sidebar {
    position: sticky;
    top: 5rem;
    transform: none !important;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }
}
.ph-catpage__sidebar-inner {
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  .ph-catpage__sidebar-inner {
    padding: 0;
  }
}
.ph-catpage__sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ph-border);
}
.ph-catpage__sidebar-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ph-fg);
}
.ph-catpage__sidebar-close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: var(--ph-r);
  background: var(--ph-card);
  cursor: pointer;
  color: var(--ph-fg);
}
.ph-catpage__sidebar-close:hover {
  background: var(--ph-accent);
}
@media (min-width: 1024px) {
  .ph-catpage__sidebar-close {
    display: none;
  }
}
.ph-catpage__map {
  border-radius: var(--ph-r-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--ph-card);
  border: 1px solid var(--ph-border);
  margin-bottom: 1rem;
}
.ph-catpage__filter-form {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-xl);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--ph-shadow-soft);
}
.ph-catpage__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ph-catpage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .ph-catpage__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .ph-catpage__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ph-catpage__featured-section {
  margin-bottom: 2.5rem;
}
.ph-catpage__section-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--ph-primary);
}
.ph-catpage__section-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0;
}
.ph-catpage__all-title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0 0 1rem;
}

.ph-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r);
  background: var(--ph-bg);
  font-size: 0.875rem;
  color: var(--ph-fg);
  font-family: "Inter", "Prompt", sans-serif;
}
.ph-input:focus {
  outline: 2px solid var(--ph-primary);
  border-color: var(--ph-primary);
}
.ph-input--sm {
  height: 2.25rem;
  font-size: 0.8125rem;
}

.ph-input-clear {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ph-muted);
  padding: 0;
}
.ph-input-clear:hover {
  color: var(--ph-fg);
}

.ph-range {
  width: 100%;
  accent-color: var(--ph-primary);
  cursor: pointer;
}

.ph-select--full {
  width: 100%;
  margin-bottom: 0.625rem;
}

.ph-filter-group__price-sep {
  flex-shrink: 0;
  color: var(--ph-muted);
}
.ph-filter-group__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.ph-map-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ph-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px hsla(25, 40%, 20%, 0.3);
}

.ph-tag-chip--found {
  background: hsl(142, 55%, 88%);
  color: hsl(142, 50%, 25%);
}

.ph-map-dot--lostpet {
  background: hsl(0, 75%, 55%);
}

.ph-catpage__map--lostpet {
  border-color: hsl(0, 60%, 82%);
}

.ph-adopt-search {
  margin-top: 1.25rem;
}

.ph-adopt-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ph-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
}
.ph-adopt-price-row__label {
  font-size: 0.8125rem;
  color: var(--ph-muted);
  white-space: nowrap;
}
.ph-adopt-price-row__sep {
  color: var(--ph-muted);
  flex-shrink: 0;
}
.ph-adopt-price-row__unit {
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-adopt-price-row__input {
  width: 9rem;
  flex-shrink: 0;
}
.ph-adopt-price-row__input--wide {
  width: 14rem;
}

.ph-admin-unclaimed-toggle {
  margin-top: 1.5rem;
  padding: 0.875rem 1rem;
  background: #fdf3e3;
  border: 1px solid #e8c88a;
  border-radius: var(--ph-r-base);
}
.ph-admin-unclaimed-toggle__label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #7a5230;
}
.ph-admin-unclaimed-toggle__label input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ph-admin-unclaimed-toggle__note {
  margin: 6px 0 0 24px;
  font-size: 0.8125rem;
  color: #9a6830;
}

.ph-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.ph-modal-overlay--center {
  align-items: center;
  padding: 1rem;
}
.ph-modal-overlay--center .ph-modal {
  border-radius: var(--ph-r-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
}

.ph-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0e8e0;
}
.ph-modal__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
}
.ph-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ph-muted);
  line-height: 1;
}
.ph-modal__close:hover {
  color: var(--ph-text);
}
.ph-modal__body--center {
  text-align: center;
  padding: 1rem 0;
}
.ph-modal--sm {
  max-width: 480px;
}

.ph-claim-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--ph-muted);
  background: #fdf9f4;
  border: 1px solid #ece0d0;
  border-radius: var(--ph-r-base);
  padding: 0.625rem 0.875rem;
  margin-bottom: 0.75rem;
}
.ph-claim-disclaimer svg {
  flex-shrink: 0;
}

.ph-claim-banner {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: #fff7f0;
  border: 1px solid #f0d8c0;
  border-radius: var(--ph-r-xl);
  padding: 1.125rem 1rem;
}
.ph-claim-banner--pending {
  background: #f0f8ff;
  border-color: #bcd8f0;
}
.ph-claim-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ph-claim-banner__content svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ph-primary);
}
.ph-claim-banner__content strong {
  display: block;
  font-size: 0.9375rem;
}
.ph-claim-banner__content p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--ph-muted);
}
.ph-claim-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ph-claim-banner__unlock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-primary);
}
.ph-claim-banner__unlock svg {
  flex-shrink: 0;
}

.ph-claim-stats {
  background: #fff;
  border: 1px solid #f0d8c0;
  border-radius: var(--ph-r-base);
  padding: 0.75rem 0.875rem;
}
.ph-claim-stats__head {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ph-muted);
  margin-bottom: 0.75rem;
}
.ph-claim-stats__head svg {
  flex-shrink: 0;
}
.ph-claim-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.ph-claim-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
}
.ph-claim-stats__item + .ph-claim-stats__item::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  top: 15%;
  bottom: 15%;
  border-left: 1px solid #f0e2d2;
}
.ph-claim-stats__num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ph-primary);
  line-height: 1.1;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
.ph-claim-stats__label {
  font-size: 0.7rem;
  color: var(--ph-muted);
}

.ph-claim-benefits {
  background: #fdf9f4;
  border: 1px solid #f0e2d2;
  border-radius: var(--ph-r-base);
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
}
.ph-claim-benefits__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ph-text);
  margin: 0 0 0.625rem;
}
.ph-claim-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ph-claim-benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ph-text);
}
.ph-claim-benefits__list li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #27ae60;
}
.ph-claim-benefits__upsell {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0.75rem 0 0;
  padding-top: 0.625rem;
  border-top: 1px dashed #e8dccc;
  font-size: 0.8125rem;
  color: var(--ph-muted);
}
.ph-claim-benefits__upsell svg {
  flex-shrink: 0;
  color: hsl(38, 80%, 45%);
}

.ph-claim-container {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.ph-claim-form__field {
  margin-bottom: 1rem;
}
.ph-claim-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.ph-claim-form__note {
  font-size: 0.875rem;
  color: var(--ph-muted);
  margin-bottom: 1rem;
}
.ph-claim-form__error {
  font-size: 0.85rem;
  color: #c0392b;
  margin: 0.375rem 0 0;
}

.ph-claim-upload {
  border: 2px dashed #e0d0c0;
  border-radius: var(--ph-r-base);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf9f4;
  transition: border-color 0.15s;
}
.ph-claim-upload.is-uploading {
  opacity: 0.6;
}
.ph-claim-upload__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--ph-muted);
  width: 100%;
  text-align: center;
}
.ph-claim-upload__label svg {
  color: var(--ph-primary);
}
.ph-claim-upload__done {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--ph-text);
  width: 100%;
}

.ph-provider-card__badge--unclaimed {
  background: rgba(255, 255, 255, 0.88);
  color: #7a5230;
  border: 1px solid rgba(122, 82, 48, 0.3);
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 600;
}

.ph-dash-pending-claims {
  background: #fff7f0;
  border: 1px solid #f0d8c0;
  border-radius: var(--ph-r-xl);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.ph-dash-claim-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f0e8e0;
}
.ph-dash-claim-row:last-child {
  border-bottom: none;
}
.ph-dash-claim-row__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--ph-r-base);
  flex-shrink: 0;
}
.ph-dash-claim-row__info {
  flex: 1;
  min-width: 0;
}
.ph-dash-claim-row__title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ph-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.ph-dash-claim-row__title:hover {
  text-decoration: underline;
}
.ph-dash-claim-row__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 3px;
}

.ph-chip--reset {
  color: var(--ph-muted);
  text-decoration: none;
}
.ph-chip--reset:hover {
  color: var(--ph-primary);
}

@keyframes ph-heart-pop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.4);
  }
  65% {
    transform: scale(0.88);
  }
  100% {
    transform: scale(1);
  }
}
.ph-single-header__icon-btn.is-saved,
.ph-contact-sidebar__icon-btn.is-saved {
  color: hsl(4, 72%, 52%);
}
.ph-single-header__icon-btn.is-popping svg,
.ph-contact-sidebar__icon-btn.is-popping svg {
  animation: ph-heart-pop 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.ph-single-header__icon-btn.is-active,
.ph-contact-sidebar__icon-btn.is-active {
  color: var(--ph-primary);
  background: var(--ph-card);
}

.ph-action-wrap {
  position: relative;
}

.ph-login-prompt {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 28px hsla(0, 0%, 0%, 0.13);
  padding: 1rem;
  width: 168px;
  text-align: center;
}
.ph-login-prompt--up {
  top: auto;
  bottom: calc(100% + 0.5rem);
}
.ph-login-prompt__text {
  font-size: 0.8125rem;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
  margin: 0 0 0.625rem;
  line-height: 1.4;
}
.ph-login-prompt .ph-btn--sm {
  width: 100%;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.ph-share-popover {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 200;
  background: #fff;
  border-radius: 1rem;
  filter: drop-shadow(0 6px 20px hsla(0, 0%, 0%, 0.13));
  padding: 0.375rem;
  width: 200px;
  display: flex;
  flex-direction: column;
}
.ph-share-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 12px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  pointer-events: none;
}
.ph-share-popover__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: none;
  background: none;
  border-radius: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
  color: var(--ph-fg);
  text-align: left;
  transition: background 0.13s;
}
.ph-share-popover__item:hover {
  background: var(--ph-card);
}
.ph-share-popover__item.is-copied {
  color: #166534;
  background: hsl(142, 76%, 95%);
}
.ph-share-popover__item.is-copied .ph-share-popover__icon {
  background: hsl(142, 76%, 88%);
  color: #166534;
}
.ph-share-popover__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ph-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ph-fg);
}
.ph-share-popover__icon--line {
  background: #06C755;
  color: #fff;
}
.ph-share-popover__icon--fb {
  background: #1877F2;
  color: #fff;
}
.ph-share-popover__icon--x {
  background: #000;
  color: #fff;
}
.ph-share-popover__icon--msng {
  background: linear-gradient(135deg, #0099FF, #A033FF);
  color: #fff;
}

.ph-pop-in {
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.ph-pop-in-start {
  opacity: 0;
  transform: scale(0.94) translateY(-4px);
}

.ph-pop-in-end {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.ph-pop-out {
  transition: opacity 0.1s ease;
}

.ph-pop-out-start {
  opacity: 1;
}

.ph-pop-out-end {
  opacity: 0;
}

.ph-save-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  background: hsl(25, 50%, 18%);
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 6px 24px hsla(0, 0%, 0%, 0.22);
  font-size: 0.9375rem;
  font-family: "Prompt", "Inter", sans-serif;
  white-space: nowrap;
}
.ph-save-toast svg {
  flex-shrink: 0;
  color: hsl(4, 72%, 68%);
}
.ph-save-toast__link {
  color: hsl(38, 80%, 72%);
  text-decoration: none;
  font-weight: 600;
  padding-left: 0.25rem;
  border-left: 1px solid hsla(0, 0%, 100%, 0.25);
  margin-left: 0.125rem;
}
.ph-save-toast__link:hover {
  color: #fff;
}

.ph-toast-in {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ph-toast-in-start {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

.ph-toast-in-end {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ph-toast-out {
  transition: opacity 0.18s ease;
}

.ph-toast-out-start {
  opacity: 1;
}

.ph-toast-out-end {
  opacity: 0;
}

.ph-req-hero-banner {
  background: linear-gradient(135deg, var(--ph-card) 0%, hsl(19, 70%, 93%) 60%, hsl(4, 60%, 91%) 100%);
  position: relative;
  overflow: hidden;
}
.ph-req-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, hsla(4, 60%, 86%, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.ph-req-hero-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.ph-req-hero-banner__avatar {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, 0.1);
}
.ph-req-hero-banner__avatar span {
  line-height: 1;
}
.ph-req-hero-banner__info {
  flex: 1;
  min-width: 0;
}
.ph-req-hero-banner__svc {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.25rem;
}
.ph-req-hero-banner__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}
.ph-req-hero-banner__dates {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--ph-muted);
  font-size: 0.875rem;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-req-hero-banner__dates svg {
  flex-shrink: 0;
}
.ph-req-hero-banner__dur {
  font-size: 0.7rem;
  font-weight: 700;
  color: hsl(25, 45%, 32%);
  background: hsla(25, 45%, 32%, 0.12);
  padding: 0.1rem 0.45rem;
  border-radius: 0.3rem;
  white-space: nowrap;
}

.ph-request-hero {
  background: linear-gradient(135deg, var(--ph-card) 0%, var(--ph-bg) 55%, hsl(19, 60%, 92%) 100%);
  border-radius: var(--ph-r-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.ph-request-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, hsla(4, 75%, 84%, 0.25) 0%, transparent 65%);
  pointer-events: none;
}
.ph-request-hero__icon {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  background: hsla(25, 45%, 30%, 0.1);
  border-radius: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-primary);
  position: relative;
  z-index: 1;
}
.ph-request-hero__icon svg {
  width: 2.25rem;
  height: 2.25rem;
}
.ph-request-hero__icon--photo {
  background: none;
  padding: 0;
  overflow: hidden;
}
.ph-request-hero__cover {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 1.125rem;
  display: block;
}
.ph-request-hero__body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.ph-request-hero__service {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.2rem;
}
.ph-request-hero__tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ph-fg);
  font-family: "Prompt", "Inter", sans-serif;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.ph-request-hero__date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--ph-primary);
  color: #fff;
  padding: 0.35rem 0.875rem;
  border-radius: var(--ph-r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
  white-space: nowrap;
}
.ph-request-hero__date-pill svg {
  flex-shrink: 0;
}

.ph-expiry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--ph-r-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-expiry-badge svg {
  flex-shrink: 0;
}
.ph-expiry-badge--soon {
  background: hsl(40, 90%, 92%);
  color: hsl(35, 75%, 25%);
}
.ph-expiry-badge--urgent {
  background: hsl(28, 95%, 90%);
  color: hsl(22, 80%, 25%);
}
.ph-expiry-badge--critical {
  background: hsl(4, 75%, 90%);
  color: hsl(4, 60%, 28%);
  animation: ph-pulse-badge 1.5s ease-in-out infinite;
}

@keyframes ph-pulse-badge {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.ph-detail-item--date-highlight {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--ph-card) 0%, hsl(19, 70%, 96%) 100%);
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.ph-detail-item--date-highlight .ph-date-highlight__icon {
  flex-shrink: 0;
  color: var(--ph-primary);
  display: flex;
}
.ph-detail-item--date-highlight .ph-date-highlight__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ph-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Prompt", "Inter", sans-serif;
  margin: 0 0 0.1rem;
}
.ph-detail-item--date-highlight .ph-date-highlight__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ph-primary);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-requester-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--ph-border);
  margin-bottom: 1rem;
}
.ph-requester-info__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ph-card);
  border: 2px solid var(--ph-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-fg);
  font-size: 1rem;
  font-weight: 700;
  font-family: "Prompt", "Inter", sans-serif;
  overflow: hidden;
}
.ph-requester-info__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-requester-info__meta {
  flex: 1;
  min-width: 0;
}
.ph-requester-info__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-fg);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "Prompt", "Inter", sans-serif;
  margin: 0 0 0.15rem;
}
.ph-requester-info__name .ph-kyc-dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--ph-primary);
}
.ph-requester-info__since {
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}

.ph-related-requests {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ph-border);
}
.ph-related-requests__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ph-fg);
  margin: 0 0 1rem;
}
.ph-related-requests__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
.ph-related-requests__see-all {
  display: block;
  text-align: center;
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: var(--ph-primary);
  font-weight: 600;
  font-family: "Prompt", "Inter", sans-serif;
  text-decoration: none;
}
.ph-related-requests__see-all:hover {
  text-decoration: underline;
}

.ph-request-card {
  background: #fff;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-r-lg);
  padding: 0.875rem 1rem;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ph-dur) var(--ph-ease), box-shadow var(--ph-dur) var(--ph-ease), transform var(--ph-dur) var(--ph-ease);
}
.ph-request-card:hover {
  border-color: hsla(25, 45%, 30%, 0.4);
  box-shadow: var(--ph-shadow-soft);
  transform: translateY(-1px);
}
.ph-request-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ph-request-card__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-fg);
  line-height: 1.4;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph-request-card__chip {
  flex-shrink: 0;
  background: var(--ph-card);
  color: var(--ph-fg);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--ph-r-full);
  font-family: "Prompt", "Inter", sans-serif;
  white-space: nowrap;
}
.ph-request-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.875rem;
  font-size: 0.8rem;
  color: var(--ph-muted);
  font-family: "Prompt", "Inter", sans-serif;
}
.ph-request-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.ph-request-card__meta-item svg {
  flex-shrink: 0;
  color: var(--ph-primary);
  opacity: 0.65;
}

.ph-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--ph-border);
  padding: 0.75rem 1.25rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px hsla(25, 40%, 20%, 0.1);
}
.ph-sticky-cta .ph-btn {
  width: 100%;
  justify-content: center;
}

.ph-page-hero-wrap {
  display: block !important;
  background: hsl(24, 67%, 96%);
  border-bottom: 1px solid var(--ph-border);
}

.ph-page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.ph-page-hero {
  padding: 1.5rem 0 2rem;
  text-align: left;
}
.ph-page-hero .ph-breadcrumbs {
  margin-bottom: 1rem;
}
.ph-page-hero__eyebrow {
  font-family: "Inter", "Prompt", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ph-primary);
  margin: 0 0 0.375rem;
}
.ph-page-hero__title {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 2rem !important;
  font-weight: 700;
  color: var(--ph-fg);
  line-height: 1.15;
  margin: 0 0 0.625rem;
  text-align: left !important;
}
.ph-page-hero__subtitle {
  font-size: 0.9375rem;
  color: var(--ph-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.site-main.ph-page-main {
  width: 100%;
  max-width: 1180px;
  padding: 0 1.25rem;
  margin-top: 3rem;
}

.ph-ad-zone {
  position: relative;
  overflow: hidden;
  border-radius: var(--ph-radius);
}

.ph-ad-zone--banner {
  margin-block: 1rem;
}

.ph-ad-page-end {
  padding-bottom: 2rem;
}

.ph-ad-label {
  position: absolute;
  top: 0.375rem;
  left: 0.5rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  pointer-events: none;
}

.ph-ad-banner__track {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ph-radius);
  background: var(--ph-bg-card);
}

.ph-ad-banner__slide {
  width: 100%;
}

.ph-ad-banner__link {
  display: block;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--ph-radius);
}
.ph-ad-banner__link--image {
  line-height: 0;
}
.ph-ad-banner__link--rich {
  display: flex;
  align-items: flex-end;
  min-height: 100px;
  padding: 1.25rem 1.5rem 1.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ph-ad-banner__link--rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  border-radius: inherit;
}

.ph-ad-banner__img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.ph-ad-banner__content {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ph-ad-banner__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.ph-ad-banner__sub {
  font-size: 0.875rem;
  opacity: 0.88;
  margin: 0;
}

.ph-ad-banner__cta {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.ph-ad-banner__dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0 0.25rem;
}

.ph-ad-banner__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--ph-border);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.ph-ad-banner__dot.is-active {
  background: var(--ph-primary);
}

.ph-ad-zone--native {
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  overflow: hidden;
}

.ph-ad-native__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.ph-ad-native__link:hover {
  background: var(--ph-bg-card);
}

.ph-ad-native__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: calc(var(--ph-radius) - 2px);
  flex-shrink: 0;
}

.ph-ad-native__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.ph-ad-native__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ph-ad-native__sub {
  font-size: 0.8125rem;
  color: var(--ph-text-muted);
}

.ph-ad-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

.ph-ad-report {
  display: grid;
  gap: 1rem;
}

.ph-ad-report__card {
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 1rem 1.25rem;
}

.ph-ad-report__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.ph-ad-report__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.ph-ad-report__meta {
  font-size: 0.8125rem;
  color: var(--ph-text-muted);
}

.ph-ads-hero {
  padding: 3.5rem 0 4rem;
  background: var(--ph-bg-card);
}
.ph-ads-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ph-ads-hero__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ph-heading);
}
.ph-ads-hero__sub {
  font-size: 1rem;
  color: var(--ph-text-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.ph-ads-stat {
  background: #fff;
  border-radius: var(--ph-radius);
  padding: 1rem 0.875rem;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.ph-ads-stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ph-primary);
  line-height: 1;
}
.ph-ads-stat__label {
  font-size: 0.75rem;
  color: var(--ph-text-muted);
  margin-top: 0.25rem;
}

.ph-ads-how {
  padding: 3rem 0;
}

.ph-ads-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ph-ads-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ph-ads-step__num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ph-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ph-ads-step__title {
  font-weight: 700;
  font-size: 0.9375rem;
  padding-top: 0.25rem;
}
.ph-ads-step__desc {
  font-size: 0.8125rem;
  color: var(--ph-text-muted);
  margin-top: 0.2rem;
}

.ph-ads-zones {
  padding: 3rem 0 2rem;
}

.ph-ads-zone-grid {
  display: grid;
  gap: 1rem;
}

.ph-ads-zone-card {
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  overflow: hidden;
}
.ph-ads-zone-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.ph-ads-zone-card__body {
  padding: 0.875rem 1rem;
}
.ph-ads-zone-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
}
.ph-ads-zone-card__size, .ph-ads-zone-card__desc {
  font-size: 0.8125rem;
  color: var(--ph-text-muted);
  margin-top: 0.2rem;
}
.ph-ads-zone-card__price {
  font-weight: 700;
  color: var(--ph-primary);
  margin-top: 0.5rem;
}

.ph-ads-packages-section {
  padding: 3rem 0;
  background: var(--ph-bg-card);
}

.ph-ads-packages-grid {
  display: grid;
  gap: 1rem;
}

.ph-ads-pkg-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg, 1.5rem);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ph-ads-pkg-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ph-heading);
}
.ph-ads-pkg-card__price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--ph-primary);
}
.ph-ads-pkg-card__desc {
  font-size: 0.875rem;
  color: var(--ph-text-muted);
  line-height: 1.6;
  flex: 1;
}
.ph-ads-pkg-card__cta {
  margin-top: 0.5rem;
  text-align: center;
}

.ph-ads-faq {
  padding: 3rem 0;
}

.ph-faq-item {
  border-bottom: 1px solid var(--ph-border);
}
.ph-faq-item__q {
  padding: 1rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ph-faq-item__q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--ph-text-muted);
  flex-shrink: 0;
}
.ph-faq-item[open] .ph-faq-item__q::after {
  content: "−";
}
.ph-faq-item__a {
  padding-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--ph-text-muted);
  line-height: 1.7;
}

.ph-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--ph-border, hsl(25, 30%, 88%));
}
.ph-faq__item {
  border-bottom: 1px solid var(--ph-border, hsl(25, 30%, 88%));
}
.ph-faq__item:last-child {
  border-bottom: none;
}
.ph-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--ph-card, hsl(19, 80%, 94%));
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-text, hsl(25, 45%, 20%));
  transition: background 0.15s ease;
}
.ph-faq__question:hover {
  background: var(--ph-card-hover, hsl(19, 70%, 90%));
}
.ph-faq__question span {
  flex: 1;
  line-height: 1.5;
}
.ph-faq__chevron {
  flex-shrink: 0;
  color: var(--ph-primary, hsl(25, 45%, 30%));
  transition: transform 0.2s ease;
}
.ph-faq__chevron--open {
  transform: rotate(180deg);
}
.ph-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
  background: #fff;
}
.ph-faq__answer--open {
  grid-template-rows: 1fr;
}
.ph-faq__answer-inner {
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ph-text-muted, hsl(25, 20%, 40%));
  transition: padding 0.22s ease;
}
.ph-faq__answer--open .ph-faq__answer-inner {
  padding-top: 0.875rem;
  padding-bottom: 1rem;
}

.ph-faq-section {
  margin-block: 2rem;
}
.ph-faq-section__heading {
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ph-heading, hsl(25, 45%, 25%));
  margin-bottom: 1rem;
}
