/* =========================================================
   products-services.css - PetNurture
   Enhanced listing & detail UI for products and services
   ========================================================= */

/* ── Sidebar offcanvas body reset ─────────────────────── */
#filterOffcanvas .offcanvas-body,
#svcFilterOffcanvas .offcanvas-body {
  padding: 0;
}

/* ── Sticky sidebar (lg+) ─────────────────────────────── */
@media (min-width: 992px) {
  .ps-sidebar-sticky {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
  }
  .ps-sidebar-sticky::-webkit-scrollbar {
    width: 4px;
  }
  .ps-sidebar-sticky::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
  }
}

/* ── Widget title ─────────────────────────────────────── */
.ps-sidebar-sticky .widget-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #2A2A2A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #6AAF08;
}

/* ── Offcanvas mobile toggle ──────────────────────────── */
.ps-filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: 2px solid #6AAF08;
  color: #6AAF08;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ps-filter-toggle:hover {
  background: #6AAF08;
  color: #fff;
}

/* ── Offcanvas overrides ──────────────────────────────── */
#filterOffcanvas.offcanvas-lg,
#svcFilterOffcanvas.offcanvas-lg {
  --bs-offcanvas-width: 300px;
}

/* ── Product / service card ───────────────────────────── */
.ps-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ps-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}

/* ── Card image wrapper ───────────────────────────────── */
.ps-card-img {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.ps-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ps-card:hover .ps-card-img img {
  transform: scale(1.06);
}
.ps-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 48px;
}

/* ── Category badge (top-left) ────────────────────────── */
.ps-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #6AAF08;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.3px;
  line-height: 1.5;
  transition: background 0.2s;
}
.ps-cat-badge:hover {
  background: #2A2A2A;
  color: #fff;
}

/* ── Trust badges (top-right stack) ──────────────────── */
.ps-card-trust {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.ps-tbadge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-transform: uppercase;
}
.ps-tbadge--featured  { background: #F59E0B; color: #fff; }
.ps-tbadge--eco       { background: #22C55E; color: #fff; }
.ps-tbadge--vet       { background: #3B82F6; color: #fff; }
.ps-tbadge--247       { background: #06B6D4; color: #fff; }
.ps-tbadge--mobile    { background: #7C3AED; color: #fff; }
.ps-tbadge--emergency { background: #EF4444; color: #fff; }
.ps-tbadge--homevisit { background: #F97316; color: #fff; }

/* ── Quick view button overlay ────────────────────────── */
.ps-quickview-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(42,42,42,0.88);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.15s;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.ps-card:hover .ps-quickview-btn,
.ps-card:focus-within .ps-quickview-btn {
  opacity: 1;
  transform: translateY(0);
}
.ps-quickview-btn:hover {
  background: rgba(106,175,8,0.95);
}

/* touch devices: always show quick view button */
@media (hover: none) {
  .ps-quickview-btn {
    opacity: 1;
    transform: translateY(0);
    background: rgba(42,42,42,0.72);
    font-size: 11px;
    padding: 8px;
  }
}

/* ── Card body ────────────────────────────────────────── */
.ps-card-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ps-card-meta {
  font-size: 11px;
  color: #888;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.4;
}
.ps-card-meta a {
  color: #888;
  text-decoration: none;
}
.ps-card-meta a:hover {
  color: #6AAF08;
}
.ps-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #2A2A2A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ps-card-title a {
  color: inherit;
  text-decoration: none;
}
.ps-card-title a:hover {
  color: #6AAF08;
}

/* pet type chips */
.ps-pet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 8px;
}
.ps-pet-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #555;
  font-weight: 600;
}

.ps-card-price {
  font-size: 19px;
  font-weight: 800;
  color: #6AAF08;
  margin-bottom: 12px;
  line-height: 1;
}
.ps-card-price-empty {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
  font-style: italic;
}

.ps-card-footer {
  margin-top: auto;
}
.ps-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #6AAF08;
  color: #fff;
  border: 2px solid #6AAF08;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.2px;
}
.ps-card-btn:hover {
  background: #2A2A2A;
  border-color: #2A2A2A;
  color: #fff;
}

/* ── Card grid row gap ────────────────────────────────── */
#product-grid .col-md-6,
#service-grid .col-md-6 {
  margin-bottom: 28px;
}

/* ── Sort / result bar ────────────────────────────────── */
.ps-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #666;
}

/* ── Active filter tags ───────────────────────────────── */
.ps-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  align-items: center;
}
.ps-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f8e8;
  border: 1px solid #6AAF08;
  color: #2A2A2A;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.ps-filter-tag i { color: #6AAF08; }
.ps-filter-tag-clear {
  font-size: 11px;
  color: #999;
  text-decoration: none;
  padding: 3px 6px;
}
.ps-filter-tag-clear:hover { color: #e00; }

/* ── Quick View Modal ─────────────────────────────────── */
.ps-qv-modal .modal-dialog {
  max-width: 860px;
}
.ps-qv-modal .modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
}
.ps-qv-modal .modal-body {
  padding: 0;
}
.ps-qv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.ps-qv-close:hover { background: #f0f0f0; }

.ps-qv-img-col {
  background: #f5f5f5;
}
.ps-qv-img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.ps-qv-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ps-qv-no-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 48px;
}
.ps-qv-info-col {
  padding: 28px 24px 24px;
  overflow-y: auto;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
.ps-qv-cat-badge {
  display: inline-block;
  background: #6AAF08;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-decoration: none;
}
.ps-qv-title {
  font-size: 20px;
  font-weight: 800;
  color: #2A2A2A;
  line-height: 1.3;
  margin-bottom: 6px;
}
.ps-qv-vendor {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.ps-qv-vendor a {
  color: #6AAF08;
  text-decoration: none;
  font-weight: 600;
}
.ps-qv-vendor a:hover { text-decoration: underline; }
.ps-qv-location {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}
.ps-qv-price {
  font-size: 24px;
  font-weight: 900;
  color: #6AAF08;
  margin-bottom: 10px;
  line-height: 1;
}
.ps-qv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.ps-qv-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  overflow-y: auto;
}
.ps-qv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.ps-qv-actions .theme-btn,
.ps-qv-actions .theme-btn2 {
  flex: 1;
  min-width: 120px;
  text-align: center;
  font-size: 13px;
  padding: 9px 12px;
}
/* make ext-ctas container transparent to flexbox so its children become flex items */
.ps-qv-ext-ctas {
  display: contents;
}

/* modal bottom sheet on mobile */
@media (max-width: 767px) {
  .ps-qv-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none !important;
    align-items: flex-end;
  }
  .ps-qv-modal.fade .modal-dialog {
    transform: translateY(100%) !important;
  }
  .ps-qv-modal.show .modal-dialog {
    transform: translateY(0) !important;
  }
  .ps-qv-modal .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .ps-qv-img-wrap { padding-top: 50%; }
  .ps-qv-info-col {
    padding: 20px 16px 16px;
    max-height: 70dvh;
  }
  .ps-qv-title { font-size: 18px; }
}

/* ── Sticky mobile CTA bar (single pages) ────────────── */
.ps-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  padding: 10px 16px env(safe-area-inset-bottom, 0);
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .ps-mobile-cta {
    display: flex;
  }
  .has-ps-mobile-cta {
    padding-bottom: 72px;
  }
}
.ps-mobile-cta-price {
  font-size: 18px;
  font-weight: 900;
  color: #6AAF08;
  white-space: nowrap;
  flex-shrink: 0;
}
.ps-mobile-cta-btns {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.ps-mobile-cta-btns .theme-btn,
.ps-mobile-cta-btns .theme-btn2 {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 9px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Empty state ──────────────────────────────────────── */
.ps-empty-state {
  text-align: center;
  padding: 60px 20px;
}
.ps-empty-icon {
  width: 64px;
  opacity: 0.3;
  margin: 0 auto 20px;
  display: block;
}

/* ── Skeleton loading ─────────────────────────────────── */
@keyframes ps-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ps-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e5e5e5 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: ps-shimmer 1.5s infinite;
  border-radius: 6px;
}

/* ── Responsive adjustments ───────────────────────────── */
@media (max-width: 575px) {
  .ps-card-title { font-size: 14px; }
  .ps-card-body  { padding: 12px; }
  .ps-card-price { font-size: 16px; }
}

/* ===================================================================
   SERVICES PAGE REDESIGN - .svc-* prefix (isolated from products page)
   =================================================================== */

/* ── Hero Section ──────────────────────────────────────────────────── */
.svc-hero {
  background: linear-gradient(135deg, #f0f8e6 0%, #e4f5cc 60%, #d8f0b8 100%);
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(106,175,8,.12) 0%, transparent 70%);
  pointer-events: none;
}
.svc-hero-text { padding-right: 20px; }
.svc-hero-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #272727;
  line-height: 1.2;
  margin-bottom: 14px;
}
.svc-hero-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.svc-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.svc-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #6AAF08;
  border: 1px solid #c5e38a;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* Stat cards (right column) */
.svc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}
.svc-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(106,175,8,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.svc-stat-icon {
  font-size: 22px;
  color: #6AAF08;
  margin-bottom: 4px;
}
.svc-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: #272727;
  line-height: 1;
}
.svc-stat-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Hero search bar */
.svc-hero-search {
  margin: 24px auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  padding: 6px;
  max-width: 100%;
}
.svc-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.svc-search-field {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 160px;
  padding: 6px 14px;
  position: relative;
}
.svc-search-icon {
  color: #aaa;
  font-size: 14px;
  margin-right: 8px;
  flex-shrink: 0;
}
.svc-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  width: 100%;
}
.svc-search-input::placeholder { color: #aaa; }
.svc-search-select-wrap { min-width: 140px; }
.svc-search-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 4px;
}
.svc-search-divider {
  width: 1px;
  height: 28px;
  background: #e5e5e5;
  flex-shrink: 0;
}
.svc-search-btn {
  margin: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 24px !important;
  border-radius: 12px !important;
}

/* ── Category Strip ────────────────────────────────────────────────── */
.svc-cat-strip {
  background: #fff;
  padding: 12px 0;
}
.svc-strip-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.svc-strip-inner::-webkit-scrollbar { display: none; }
.svc-strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #f5f5f5;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.svc-strip-pill:hover {
  background: #eef7d6;
  color: #6AAF08;
  border-color: #c5e38a;
}
.svc-strip-pill.active {
  background: #6AAF08;
  color: #fff;
  border-color: #6AAF08;
}
.svc-strip-count {
  background: rgba(255,255,255,.3);
  color: inherit;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
}
.svc-strip-pill.active .svc-strip-count { background: rgba(255,255,255,.25); }
.svc-strip-pill:not(.active) .svc-strip-count {
  background: #e0e0e0;
  color: #666;
}

/* ── Mobile Filter Toggle Button ────────────────────────────────────── */
.svc-filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #272727;
  cursor: pointer;
  transition: border-color .15s;
}
.svc-filter-toggle-btn:hover { border-color: #6AAF08; color: #6AAF08; }
.svc-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #6AAF08;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}

/* ── Filter Sidebar Enhancements ────────────────────────────────────── */
.svc-filter-group { border-radius: 8px; }
.svc-cat-count {
  display: inline-block;
  background: #f0f0f0;
  color: #888;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 4px;
}

/* ── Active Filter Pills Row ─────────────────────────────────────────── */
.svc-filter-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-pills-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-right: 2px;
}
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: #eef7d6;
  border: 1.5px solid #c5e38a;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #4a7c08;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.svc-pill:hover {
  background: #d8f0a0;
  border-color: #6AAF08;
  color: #3a6206;
}
.svc-pill--clear {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #b91c1c;
}
.svc-pill--clear:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
}

/* ── Enhanced Card - card-level badge variants ───────────────────────── */
/* Featured/Verified/Licensed are shown as trust-chip icons in the card body */
.ps-tbadge--featured {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(245,158,11,.4);
}
.ps-tbadge--verified {
  background: #059669 !important;
  color: #fff !important;
}
.ps-tbadge--licensed {
  background: #0891b2 !important;
  color: #fff !important;
}

/* Trust row inside card body */
.svc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}
.svc-trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 12px;
  cursor: default;
}
.svc-trust-chip--featured  { background: #fef3c7; color: #d97706; }
.svc-trust-chip--verified  { background: #d1fae5; color: #059669; }
.svc-trust-chip--licensed  { background: #cffafe; color: #0891b2; }
.svc-trust-chip--247       { background: #dbeafe; color: #2563eb; }
.svc-trust-chip--mobile    { background: #ede9fe; color: #7C3AED; }
.svc-trust-chip--home      { background: #fef3c7; color: #d97706; }
.svc-trust-chip--emergency { background: #fee2e2; color: #dc2626; }
/* hide empty trust row when service has no flags */
.svc-trust-row:empty { display: none; }

/* Experience line */
.svc-experience-line {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

/* ── Trust Section (6-item grid) ─────────────────────────────────────── */
.svc-trust-section { background: #f9fdf2; }
.svc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-trust-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  border-top: 3px solid #6AAF08;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.svc-trust-item:hover {
  box-shadow: 0 6px 24px rgba(106,175,8,.15);
  transform: translateY(-3px);
}
.svc-trust-icon {
  width: 52px;
  height: 52px;
  background: #eef7d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  color: #6AAF08;
}
.svc-trust-title {
  font-size: 15px;
  font-weight: 700;
  color: #272727;
  margin-bottom: 8px;
}
.svc-trust-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* ── Browse by Category Grid ──────────────────────────────────────────── */
.svc-browse-section { background: #f5f5f5; }
.svc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-cat-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px 22px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid #eee;
  position: relative;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-cat-card:hover {
  box-shadow: 0 8px 28px rgba(106,175,8,.15);
  border-color: #6AAF08;
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}
.svc-cat-icon {
  width: 56px;
  height: 56px;
  background: #eef7d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6AAF08;
  margin-bottom: 14px;
}
.svc-cat-count-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #6AAF08;
  color: #fff;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}
.svc-cat-name {
  font-size: 16px;
  font-weight: 700;
  color: #272727;
  margin-bottom: 6px;
}
.svc-cat-desc {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
  line-height: 1.5;
}
.svc-cat-browse {
  font-size: 13px;
  font-weight: 600;
  color: #6AAF08;
  margin-top: auto;
}

/* ── Top Cities Grid ──────────────────────────────────────────────────── */
.svc-cities-section { background: #fff; }
.svc-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.svc-city-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #eee;
  background: #fafafa;
  text-decoration: none;
  color: #333;
  transition: border-color .15s, background .15s, color .15s;
}
.svc-city-card:hover {
  border-color: #6AAF08;
  background: #f0f8e6;
  color: #3a6206;
  text-decoration: none;
}
.svc-city-card .fa-map-pin {
  font-size: 14px;
  color: #6AAF08;
  flex-shrink: 0;
}
.svc-city-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.svc-city-state {
  font-size: 11px;
  color: #999;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Vendor CTA benefits list ─────────────────────────────────────────── */
.svc-cta-benefits {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-cta-benefits li {
  font-size: 13px;
  color: #f0f0f0;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .svc-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cat-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .svc-hero { padding: 48px 0 30px; }
  .svc-hero-title { font-size: 24px; }
  .svc-hero-sub { font-size: 14px; }
  .svc-hero-chips { gap: 6px; }
  .svc-hero-chip { font-size: 11px; padding: 4px 10px; }
  .svc-search-form { flex-direction: column; gap: 0; }
  .svc-search-field { width: 100%; border-bottom: 1px solid #f0f0f0; }
  .svc-search-field:last-of-type { border-bottom: none; }
  .svc-search-btn { width: calc(100% - 8px); margin: 4px; }
  .svc-cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .svc-trust-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-trust-item  { padding: 18px 14px; }
  .svc-cat-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-search { border-radius: 12px; }
}
