/* ==========================================================
   HRDelivered — HR Packages Service Page
   Depends on: hrdelivered-global.css (tokens, nav, footer, btn-primary, etc.)
   ========================================================== */

/* ── Shared content width (mirrors homepage) ──────────────── */
.pt-hero-inner,
.section-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .pt-hero-inner,
  .section-inner {
    padding-inline: 2.5rem;
  }
}

.section {
  padding-block: 4rem;
}

.section--white { background: #ffffff; }
.section--cream { background: var(--color-cream, #F6F3E8); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.65;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.card-icon { margin-bottom: 1rem; }
.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  margin-bottom: 0.5rem;
}
.card-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.6;
}

.pt-hero {
  background-color: #001342;
  padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--nav-height, 5rem) + 1.5rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.pt-hero-glow1 {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: rgba(9, 79, 254, 0.25);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.pt-hero-glow2 {
  position: absolute;
  top: 4rem;
  left: 33%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: rgba(215, 1, 63, 0.20);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.pt-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pt-hero-inner {
    grid-template-columns: 1fr 460px;
    gap: 3rem;
  }
}

.pt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.pt-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.pt-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.pt-hero-sub strong { color: #ffffff; font-weight: 600; }

.pt-hero-h1-accent { color: var(--color-blue-light, #5b8cff); }

.pt-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.pt-hero-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.pt-features-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pt-features-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pt-features-4 { grid-template-columns: repeat(4, 1fr); }
}

.pt-feature-tile {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem;
}
.pt-feature-icon {
  width: 44px;
  height: 44px;
  background: #eff4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pt-feature-tile h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  margin-bottom: 0.5rem;
}
.pt-feature-tile p {
  font-size: 0.9375rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.6;
}

.pt-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pt-split {
    grid-template-columns: 1fr 1fr;
  }
  .pt-split--reverse .pt-split-text { order: 2; }
  .pt-split--reverse .pt-split-image { order: 1; }
}

.pt-split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.pt-split-text p {
  font-size: 1rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pt-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.pt-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.55;
  padding-block: 0.35rem;
}
.pt-bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue, #094ffe);
  margin-top: 0.5rem;
}

/* ── ab-check-list ──────────────────────────────────────── */
.ab-check-list { list-style: none; padding: 0; margin: 1.25rem 0 2rem; }
.ab-check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9375rem; color: var(--color-navy, #001342); background: none !important; line-height: 1.55; margin-bottom: 0.35rem; padding-block: 0; }
.ab-check-list li::before { content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2322c55e'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ── Package card — featured (HR Full Suite) ────────────── */
.hrp-pkg-card--featured {
  border-color: var(--color-blue, #094ffe);
  box-shadow: 0 4px 24px rgba(9,79,254,0.12);
}

/* ── Comparison table legend ────────────────────────────── */
.hrp-table-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted, #4b5563);
}
.hrp-table-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Comparison table wrapper + table ───────────────────── */
.hrp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}


.hrp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.9375rem;
}

.hrp-table thead tr {
  background: var(--color-navy, #001342);
}
.hrp-table thead th {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
.hrp-table thead th.hrp-th-label {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  min-width: 240px;
  white-space: normal;
}
.hrp-table thead th.hrp-col-hl {
  background: rgba(9,79,254,0.35);
}

/* ── Ghost sticky header (JS-driven clone shown on scroll) ──── */
.hrp-ghost-head {
  position: fixed;
  z-index: 200;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hrp-ghost-head.hrp-ghost-visible {
  opacity: 1;
  pointer-events: auto;
}
.hrp-ghost-head .hrp-table {
  border-collapse: collapse;
  min-width: 0;
  table-layout: fixed;
}
.hrp-ghost-head .hrp-table thead th {
  white-space: nowrap;
}

.hrp-table tbody tr:nth-child(even) {
  background: #f9fafb;
}
.hrp-table tbody tr:hover {
  background: #f0f4ff;
}
.hrp-table tbody td {
  padding: 0.8125rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  color: #374151;
  vertical-align: middle;
}
.hrp-table tbody td:first-child {
  text-align: left;
  color: var(--color-navy, #001342);
  font-weight: 500;
}
.hrp-table tbody td.hrp-col-hl {
  background: rgba(9,79,254,0.05);
}
.hrp-table tbody tr:nth-child(even) td.hrp-col-hl {
  background: rgba(9,79,254,0.08);
}
.hrp-table tbody tr:hover td.hrp-col-hl {
  background: rgba(9,79,254,0.1);
}
.hrp-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Add-on group separator row ─────────────────────────── */
.hrp-row-group td {
  background: #f3f4f6 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6b7280;
  padding: 0.5rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}

.hrp-row-addon td:first-child {
  color: #4b5563;
  font-weight: 400;
}

/* ── Icon helpers ───────────────────────────────────────── */
.hrp-c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hrp-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-blue, #094ffe);
  background: rgba(9,79,254,0.08);
  border-radius: 9999px;
  padding: 0.2rem 0.6rem;
}
.hrp-d {
  color: #d1d5db;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.pt-split-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.pt-callout-section {
  background: #F6F3E8;
  border-bottom: 1px solid #e2dece;
  padding-block: 2rem;
}
.pt-callout-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .pt-callout-inner { padding-inline: 2.5rem; }
}
@media (min-width: 900px) {
  .pt-callout-inner { flex-wrap: nowrap; }
}

.pt-callout-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(0, 19, 66, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy, #001342);
}
.pt-callout-body { flex: 1; min-width: 220px; }
.pt-callout-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.pt-callout-text {
  font-size: 1rem;
  color: var(--color-navy, #001342);
  line-height: 1.6;
}
.pt-callout-text strong { color: var(--color-navy, #001342); font-weight: 700; }

.pt-callout-btn {
  background: var(--color-crimson, #d7013f) !important;
  border-color: var(--color-crimson, #d7013f) !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.pt-callout-btn:hover {
  background: #b5012f !important;
  border-color: #b5012f !important;
}

.pt-grid-2-plus-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .pt-grid-2-plus-img {
    grid-template-columns: 1fr 360px;
  }
}

.pt-features-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .pt-features-6 { grid-template-columns: 1fr 1fr; }
}

.pt-feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  transition: box-shadow 0.2s;
}
.pt-feature-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.pt-feature-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #eff4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  margin-bottom: 0.3rem;
}
.pt-feature-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.55;
}

.pt-confidence-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.pt-tax-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .pt-tax-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pt-tax-grid { grid-template-columns: repeat(4, 1fr); }
}

.pt-mid-cta {
  background: var(--color-cream, #F6F3E8);
  border-top: 1px solid #e2dece;
  border-bottom: 1px solid #e2dece;
  padding-block: 4rem;
  text-align: center;
}
.pt-mid-cta-inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .pt-mid-cta-inner { padding-inline: 2.5rem; }
}
.pt-mid-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 0.75rem;
}
.pt-mid-cta p {
  font-size: 1.0625rem;
  color: var(--color-text-muted, #4b5563);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.pt-faq {
  max-width: 820px;
  margin-inline: auto;
}

.pt-faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.pt-faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.pt-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  padding-block: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.15s;
}
.pt-faq-q:hover { color: var(--color-blue, #094ffe); }

.pt-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.pt-faq-item.is-open .pt-faq-chevron {
  transform: rotate(180deg);
}

.pt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pt-faq-a p {
  font-size: 0.9375rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: #001342;
  padding-block: 5rem;
  text-align: center;
}
.cta-glow1, .cta-glow2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-glow1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(9,79,254,0.25) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.cta-glow2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,140,255,0.18) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}
.cta-inner {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .cta-inner { padding-inline: 2.5rem; }
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-inner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================
   HR Packages — Page-Specific Styles
   ========================================================== */

/* Hero accent */
.hrp-hero-h1-accent {
  color: var(--color-blue-light, #5b8cff);
}

/* Package cards grid */
.hrp-pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hrp-pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .hrp-pkg-grid { grid-template-columns: repeat(4, 1fr); }
}

.hrp-pkg-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hrp-pkg-card:hover {
  box-shadow: 0 8px 32px rgba(0,19,66,0.1);
  transform: translateY(-2px);
}

.hrp-pkg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hrp-pkg-header h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin: 0;
}

.hrp-best-value {
  display: inline-block;
  background: var(--color-blue, #094ffe);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
}

.hrp-pkg-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted, #4b5563);
  line-height: 1.6;
  margin: 0;
}

.hrp-pkg-features h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.hrp-pkg-features .pt-bullet-list {
  margin-bottom: 0;
}

/* Side image utility */
.pt-grid-side-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ── Compare controls (legend + collapse-all button) ────── */
.hrp-compare-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hrp-toggle-all {
  flex-shrink: 0;
  background: none;
  border: 1.5px solid #e5e7eb;
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.hrp-toggle-all:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

/* ── Collapsible category rows ──────────────────────────── */
.hrp-cat-row {
  background: #f0f4ff !important;
  cursor: pointer;
}
.hrp-cat-row:hover {
  background: #e4ecff !important;
}
.hrp-cat-row td {
  padding: 0 !important;
  border-bottom: 2px solid #cbd5f5 !important;
  text-align: left !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.hrp-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy, #001342);
  text-align: left;
  letter-spacing: 0.01em;
}
.hrp-cat-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--color-navy, #001342);
  opacity: 0.7;
}
.hrp-cat-row[data-open="false"] .hrp-cat-chevron {
  transform: rotate(-90deg);
}
.hrp-feat-hidden {
  display: none !important;
}

/* ==========================================================
   HR Packages — Mobile table (max 767px)
   No horizontal scroll — everything scaled to fit screen
   ========================================================== */
.hrp-scroll-hint { display: none !important; }

@media (max-width: 767px) {
  /* ── No overflow scroll, no rounded corners ────────────── */
  .hrp-table-wrap { overflow-x: hidden; border-radius: 0; }

  /* ── Controls stack vertically ──────────────────────────── */
  .hrp-compare-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .hrp-table-legend { gap: 0.625rem; font-size: 0.75rem; }

  /* ── Table fits full width with fixed column layout ──────── */
  .hrp-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 0.6875rem;
  }

  /* Feature label column: 30% */
  .hrp-table thead th.hrp-th-label {
    width: 30%;
    min-width: 0;
    font-size: 0.5rem;
    padding: 0.5rem 0.3rem;
    white-space: normal;
    line-height: 1.25;
  }

  /* Package columns: equal share of remaining 70% */
  .hrp-table thead th {
    padding: 0.5rem 0.2rem;
    font-size: 0.5625rem;
    min-width: 0;
    white-space: normal;
    line-height: 1.25;
  }

  /* Body cells */
  .hrp-table tbody td {
    padding: 0.45rem 0.25rem;
    font-size: 0.6875rem;
  }
  .hrp-table tbody td:first-child {
    font-size: 0.625rem;
    min-width: 0;
    max-width: none;
    word-break: break-word;
    line-height: 1.3;
  }

  /* Smaller checkmark icons */
  .hrp-c svg { width: 15px; height: 15px; }

  /* Compact add-on badge */
  .hrp-a { font-size: 0.5rem; padding: 0.1rem 0.25rem; }

  /* Category toggle row */
  .hrp-cat-toggle {
    padding: 0.625rem 0.625rem;
    font-size: 0.75rem;
  }
  .hrp-cat-row td,
  .hrp-row-group td { box-shadow: none !important; }
}
