:root {
  --ink: #102225;
  --muted: #5e7377;
  --teal: #006d70;
  --teal-dark: #024b4e;
  --line-green: #06a85f;
  --amber: #d98300;
  --amber-dark: #b66d00;
  --steel: #e6eef0;
  --steel-2: #f4f8f9;
  --surface: #ffffff;
  --line: #d7e2e4;
  --shadow: 0 18px 44px rgba(10, 43, 48, 0.14);
  --ads-hero-image: url("https://demo.42okok.com/api/s3-garage/files/ads%2Fassets%2Fhero-machinery.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 82px;
  background: var(--surface);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 228, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  align-items: center;
  min-width: 0;
}

.brand-main {
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.brand-tag {
  align-self: start;
  padding: 3px 6px;
  background: var(--teal);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.brand-sub {
  grid-column: 1 / 3;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link {
  display: none;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: flex-start;
  padding: 42px 18px 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.5) 100%),
    var(--ads-hero-image) center bottom / auto 58% no-repeat,
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  width: 100%;
  max-width: 680px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: #061b1e;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.08;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 20px;
  color: #284246;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.62;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin: 0 0 20px;
}

.hero-proof span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(0, 109, 112, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.hero-ctas,
.final-actions {
  display: grid;
  gap: 10px;
  max-width: 430px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
}

.primary-cta {
  background: linear-gradient(135deg, var(--line-green), #008c4e);
  color: #ffffff;
}

.secondary-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #ffffff;
}

.cta-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--line-green);
  font-size: 12px;
  font-weight: 950;
}

.phone-icon {
  font-size: 22px;
  line-height: 1;
}

.section-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 18px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.18;
}

.section-heading p,
.reason-copy p,
.final-inner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 550;
}

.tier-section {
  background: var(--surface);
}

.tier-section.tier-secondary {
  background: var(--steel-2);
  border-top: 1px solid var(--line);
}

.tier-secondary .rank-block {
  font-size: 26px;
  background: linear-gradient(180deg, #5e7377, #40595d);
}

.product-list {
  display: grid;
  gap: 12px;
}

.product-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 43, 48, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(0, 109, 112, 0.42);
  box-shadow: 0 18px 38px rgba(10, 43, 48, 0.13);
  transform: translateY(-2px);
  outline: 0;
}

.rank-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
}

.product-content {
  padding: 16px;
}

.product-visual {
  height: 164px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #dce7e9;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 248, 249, 0.96)),
    #f4f8f9;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.category,
.priority {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.category {
  border: 1px solid rgba(0, 109, 112, 0.45);
  color: var(--teal-dark);
}

.priority {
  background: #fff3df;
  color: #8a5200;
}

.product-card h3 {
  margin-bottom: 8px;
  color: #081f22;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.24;
}

.product-card p {
  margin-bottom: 14px;
  color: #40595d;
  font-size: 15px;
  font-weight: 520;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.metric-row div {
  padding: 10px;
  border: 1px solid #dce7e9;
  border-radius: 8px;
  background: var(--steel-2);
}

.metric-row dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-row dd {
  margin: 2px 0 0;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 950;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.detail-hero {
  display: grid;
  gap: 24px;
  padding: 28px 18px 44px;
  background:
    linear-gradient(180deg, rgba(244, 248, 249, 0.96), rgba(255, 255, 255, 1) 58%),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.detail-hero-copy {
  display: grid;
  gap: 14px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #e8f3f4;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.detail-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #284246;
  font-size: 18px;
  font-weight: 650;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-metric {
  min-height: 74px;
  padding: 12px;
  border: 1px solid #dce7e9;
  border-radius: 8px;
  background: #ffffff;
}

.detail-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.detail-metric strong {
  display: block;
  margin-top: 3px;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.14;
}

.detail-actions {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.detail-cover {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dce7e9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.detail-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--steel-2);
}

.detail-cover figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(10, 43, 48, 0.13);
}

.gallery-section {
  background: #f7fbfb;
  border-bottom: 1px solid var(--line);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 43, 48, 0.08);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 249, 0.98)),
    var(--steel-2);
}

.gallery-card figcaption {
  min-height: 48px;
  padding: 12px 14px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 950;
}

.detail-band {
  background: #ffffff;
}

.detail-grid {
  display: grid;
  gap: 12px;
}

.detail-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel-2);
}

.detail-panel h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.detail-panel p {
  color: #40595d;
  font-size: 16px;
  font-weight: 540;
}

.source-note {
  margin-top: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #40595d;
  font-weight: 560;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line-green);
}

.video-section {
  background: linear-gradient(180deg, #f7fbfb, #ffffff);
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  gap: 12px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 43, 48, 0.08);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #081f22;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-card h3 {
  margin: 0;
  padding: 14px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.32;
}

.detail-not-found {
  min-height: 56vh;
  padding: 42px 18px;
}

.reason-section {
  background: linear-gradient(180deg, #f7fbfb, #edf5f6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason-grid {
  display: grid;
  gap: 24px;
}

.reason-copy h2 {
  max-width: 480px;
}

.reason-points {
  display: grid;
  gap: 10px;
}

.reason-item {
  padding: 18px;
  border: 1px solid #d3e1e3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.reason-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.reason-item span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 540;
}

.compare-section {
  background: #ffffff;
}

.scale-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.scale-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.scale-row:first-child {
  border-top: 0;
}

.scale-row.head {
  min-height: 52px;
  background: var(--teal-dark);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.scale-row span {
  color: #40595d;
}

.scale-row strong {
  color: var(--teal-dark);
  font-weight: 950;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(0, 77, 80, 0.96), rgba(0, 109, 112, 0.88)),
    var(--ads-hero-image) center / cover no-repeat;
  color: #ffffff;
}

.final-inner {
  text-align: center;
}

.final-inner h2 {
  color: #ffffff;
}

.final-inner p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.9);
}

.final-actions {
  margin: 0 auto;
}

.site-footer {
  padding: 28px 18px 108px;
  background: #081f22;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.site-footer p {
  margin: 0 0 6px;
  font-size: 13px;
}

.site-footer p:first-child {
  color: #ffffff;
  font-weight: 900;
}

.sticky-contact {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(3, 31, 34, 0.24);
}

.sticky-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  text-align: center;
}

.sticky-line {
  background: var(--line-green);
}

.sticky-phone {
  background: var(--amber);
}

.reveal {
  opacity: 1;
  transform: none;
}

.can-reveal .reveal,
.can-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 76px;
    padding: 14px 32px;
  }

  .brand-main {
    font-size: 28px;
  }

  .brand-tag {
    font-size: 14px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .phone-link {
    display: inline-flex;
  }

  .hero {
    min-height: 620px;
    align-items: center;
    padding: 72px 32px 80px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.22) 65%, rgba(255, 255, 255, 0.02) 100%),
      var(--ads-hero-image) right center / auto 100% no-repeat,
      #ffffff;
  }

  .hero-copy {
    margin-left: calc((100vw - min(1120px, calc(100vw - 64px))) / 2);
  }

  h1 {
    font-size: 58px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-ctas,
  .final-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 610px;
  }

  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 460px;
  }

  .product-visual {
    height: 220px;
  }

  .detail-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 34px;
    min-height: 650px;
    padding: 56px 32px 66px;
  }

  .detail-hero-copy {
    max-width: 720px;
    margin-left: calc((100vw - min(1120px, calc(100vw - 64px))) / 2);
  }

  .detail-lead {
    font-size: 20px;
  }

  .detail-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-actions {
    grid-template-columns: 1fr 1fr;
  }

  .detail-cover {
    margin-right: calc((100vw - min(1120px, calc(100vw - 64px))) / 2);
  }

  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .product-gallery {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-inner {
    padding: 72px 32px;
  }

  h2 {
    font-size: 38px;
  }

  .reason-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .reason-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-contact {
    display: none;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (min-width: 1080px) {
  .hero {
    min-height: 660px;
  }

  h1 {
    font-size: 66px;
  }

  .product-card h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .can-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Full machinery catalog page (/ads/catalog/) ---- */
.catalog-link {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  border-color: transparent;
}

.catalog-hero {
  background:
    radial-gradient(circle at 12% -10%, rgba(0, 109, 112, 0.14), transparent 55%),
    var(--steel-2);
  border-bottom: 1px solid var(--line);
}

.catalog-hero .section-inner {
  padding-top: 28px;
  padding-bottom: 28px;
}

.catalog-hero h1 {
  margin: 12px 0 6px;
  font-size: clamp(24px, 4.4vw, 38px);
  color: var(--ink);
}

.catalog-lead {
  margin: 0 0 18px;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.catalog-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

#catalog-q {
  flex: 1 1 320px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#catalog-q:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 109, 112, 0.12);
}

.catalog-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal-dark);
  white-space: nowrap;
}

.catalog-section .section-inner {
  padding-top: 28px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(10, 43, 48, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.catalog-visual {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: var(--steel-2);
  overflow: hidden;
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-card.no-img .catalog-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-card.no-img .catalog-visual::after {
  content: "ไม่มีรูป";
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.catalog-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px 14px;
  flex: 1 1 auto;
}

.catalog-code {
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e8f3f4;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.catalog-name {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-eng {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--line-green), #008c4e);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-cta:hover {
  filter: brightness(1.05);
}

.catalog-empty {
  padding: 32px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
