﻿.business-catalog-page .business-hero {
  padding: 44px 42px 36px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.985) 0%, rgba(251, 247, 240, 0.97) 54%, rgba(245, 236, 217, 0.93) 100%);
  border: 1px solid rgba(200, 167, 91, 0.2);
  box-shadow:
    0 30px 80px rgba(31, 24, 14, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.business-catalog-page .business-hero::before {
  width: 290px;
  height: 290px;
  top: -125px;
  right: -80px;
  background: radial-gradient(circle, rgba(200, 167, 91, 0.2), transparent 68%);
}

.business-catalog-page .business-hero::after {
  width: 210px;
  height: 210px;
  left: auto;
  right: 16%;
  bottom: -125px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.66), transparent 74%);
}

.business-catalog-page .business-hero-content {
  gap: 22px;
}

.business-catalog-page .business-eyebrow {
  padding: 12px 18px;
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(200, 167, 91, 0.24);
  box-shadow: 0 10px 24px rgba(168, 132, 50, 0.07);
}

.business-catalog-page .business-title {
  font-size: clamp(2rem, 4.9vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.business-catalog-page .business-copy {
  max-width: 820px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(95, 86, 74, 0.94);
}

.business-catalog-page .business-chip {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(200, 167, 91, 0.18);
  box-shadow: 0 12px 24px rgba(31, 24, 14, 0.04);
}

.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.page-title {
  margin: 0;
}

.page-subtitle {
  margin-top: 10px;
}

.filter-wrapper {
  flex: 0 0 auto;
}

#filter-btn {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(200, 167, 91, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 229, 0.94));
  box-shadow:
    0 18px 34px rgba(31, 24, 14, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 167, 91, 0.34);
  box-shadow:
    0 22px 40px rgba(31, 24, 14, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

#filter-btn img {
  width: 22px;
  height: 22px;
  opacity: 0.92;
  filter: brightness(0) saturate(100%) invert(48%) sepia(31%) saturate(839%) hue-rotate(8deg) brightness(94%) contrast(88%);
}

.urgent-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px dashed rgba(200, 167, 91, 0.55);
  background:
    linear-gradient(90deg, rgba(200, 167, 91, 0.1), rgba(255, 255, 255, 0.86)),
    linear-gradient(180deg, #fffdfa 0%, #f8f2e7 100%);
}

.urgent-copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.urgent-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(200, 167, 91, 0.18);
  color: var(--business-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.urgent-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 800;
  color: var(--business-ink);
}

.urgent-subtitle {
  margin: 0;
  color: var(--business-ink-soft);
  line-height: 1.7;
}

.urgent-actions {
  display: flex;
  gap: 10px;
}

.urgent-btn {
  min-width: 84px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--business-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--business-gold-dark);
  text-decoration: none;
  font-weight: 800;
}

.urgent-btn.is-active {
  background: linear-gradient(135deg, #111111, #292119);
  border-color: transparent;
  color: #fff;
}

.urgent-btn.urgent-yes {
  background: rgba(200, 167, 91, 0.12);
}

.urgent-btn.urgent-yes.is-active {
  background: linear-gradient(135deg, var(--business-gold), var(--business-gold-dark));
  color: #fff;
}

.divider {
  border: none;
  height: 1px;
  margin: 24px 0 0;
  background: linear-gradient(90deg, rgba(200, 167, 91, 0.46), transparent);
}

.services-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.service-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--business-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 235, 0.92));
  box-shadow: 0 18px 42px rgba(31, 24, 14, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--business-border-strong);
  box-shadow: 0 24px 54px rgba(31, 24, 14, 0.11);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
}

.service-image-link,
.service-title-link {
  text-decoration: none;
  color: inherit;
}

.service-content h2 {
  margin: 0 0 10px;
  font-family: "Vesper Libre", serif;
  font-size: 28px;
}

.service-content p {
  margin: 0 0 14px;
  color: var(--business-ink-soft);
  line-height: 1.8;
}

.recommended {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 167, 91, 0.14);
  border: 1px solid rgba(200, 167, 91, 0.24);
  color: var(--business-gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--business-gold), var(--business-gold-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 28px rgba(168, 132, 50, 0.22);
}

.filter-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
  background: rgba(15, 12, 10, 0.5);
  backdrop-filter: blur(8px);
}

.filter-modal.open {
  display: flex;
}

.filter-card {
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--business-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 232, 0.96));
  box-shadow: var(--business-shadow-strong);
}

.filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(200, 167, 91, 0.2);
}

.filter-eyebrow {
  margin: 0 0 8px;
  color: var(--business-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-head h3 {
  margin: 0 0 8px;
  font-family: "Vesper Libre", serif;
  font-size: 30px;
}

.filter-copy,
.filter-status {
  color: var(--business-ink-soft);
  line-height: 1.7;
}

.filter-close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--business-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  cursor: pointer;
}

.filter-field + .filter-field,
.filter-status,
.filter-actions {
  margin-top: 18px;
}

.filter-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Vesper Libre", serif;
  font-size: 13px;
  font-weight: 700;
}

.filter-input,
.filter-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--business-border);
  background: rgba(255, 255, 255, 0.95);
  font-size: 12px;
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.filter-actions .reset,
.filter-actions .apply {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.filter-actions .reset {
  background: rgba(17, 17, 17, 0.08);
  color: var(--business-ink);
}

.filter-actions .apply {
  background: linear-gradient(135deg, var(--business-gold), var(--business-gold-dark));
  color: #fff;
}

@media (max-width: 960px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 250px;
  }

  .quote-btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .business-catalog-page .business-hero {
    padding: 30px 22px 24px;
    border-radius: 28px;
  }

  .business-catalog-page .business-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .business-catalog-page .business-copy {
    font-size: 12px;
    line-height: 1.75;
  }

  .header-row,
  .urgent-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .urgent-actions,
  .filter-actions {
    width: 100%;
  }

  .urgent-btn,
  .filter-actions .reset,
  .filter-actions .apply {
    flex: 1 1 0;
    text-align: center;
  }

  .service-content h2 {
    font-size: 24px;
  }
}


