/* ============================================================
   LISTING PAGE — shared styles for all content listing pages
   (Products, Services, Case Studies, and any future types)

   Edit here to change the appearance of ALL listing pages at once.
============================================================ */

/* ── Hero keyframes ── */
@keyframes lphOrb1 {
  0%, 100% { transform: translateY(0)   translateX(0); }
  33%       { transform: translateY(-18px) translateX(12px); }
  66%       { transform: translateY(10px)  translateX(-8px); }
}
@keyframes lphOrb2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes lphFloat1 {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  25%       { transform: translateY(-16px) rotate(4deg); }
  75%       { transform: translateY(12px)  rotate(-4deg); }
}
@keyframes lphFloat2 {
  0%, 100% { transform: translateY(0)    translateX(0)   rotate(0deg); }
  40%       { transform: translateY(-12px) translateX(10px) rotate(6deg); }
  80%       { transform: translateY(8px)   translateX(-6px) rotate(-3deg); }
}
@keyframes lphFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(180deg); }
}

/* ── Hero container ── */
.products-hero {
  background: var(--navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lph-dots {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Cursor spotlight */
.lph-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    580px circle at var(--lph-mx, -999px) var(--lph-my, -999px),
    rgba(0,194,255,.16),
    transparent 70%
  );
  pointer-events: none;
}

/* Blurred floating orbs */
.lph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
  will-change: transform;
}
.lph-orb-1 {
  top: -12%; left: -6%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, #00C2FF 0%, transparent 70%);
  opacity: .22;
  animation: lphOrb1 9s ease-in-out infinite;
}
.lph-orb-2 {
  bottom: -12%; right: -5%;
  width: 580px; height: 580px;
  background: radial-gradient(circle, #6C47FF 0%, transparent 70%);
  opacity: .18;
  animation: lphOrb2 13s ease-in-out 2s infinite;
}

/* Drifting SVG shapes */
.lph-shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}
.lph-shape-1 {
  width: 300px; height: 300px;
  top: -48px; right: 6%;
  animation: lphFloat1 17s ease-in-out infinite;
  opacity: .6;
}
.lph-shape-2 {
  width: 190px; height: 190px;
  bottom: 4%; left: 3%;
  animation: lphFloat2 13s ease-in-out 2.5s infinite;
  opacity: .5;
}
.lph-shape-3 {
  width: 100px; height: 100px;
  top: 38%; right: 26%;
  animation: lphFloat3 20s ease-in-out 5s infinite;
  opacity: .35;
}

/* ── Hero content ── */
.products-hero-inner {
  position: relative;
  z-index: 1;
}
.products-hero-inner .section-label {
  animation: fadeInUp .6s .05s both;
}
.products-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.1;
  animation: fadeInUp .7s .2s both;
}
.products-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  max-width: 750px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeInUp .7s .35s both;
}
.products-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeInUp .7s .5s both;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
  font-family: 'Inter', sans-serif;
  transition: background .2s, border-color .2s;
}
.hero-trust-badge:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.22);
}
.hero-trust-badge i { color: #00C2FF; font-size: 13px; }

/* ── Content section ── */
.products-section {
  background: #F8FAFF;
  padding: 80px 0 100px;
}

/* ── Cards grid ── */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.product-page-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(10,22,40,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.product-page-card:hover {
  box-shadow: 0 20px 60px rgba(10,22,40,.1);
  transform: translateY(-4px);
}
.product-page-card.featured {
  border-color: rgba(0,194,255,.3);
  box-shadow: 0 0 0 1px rgba(0,194,255,.2), 0 12px 40px rgba(0,194,255,.08);
}
.card-top-bar { height: 4px; }
.card-body {
  padding: 28px 28px 0;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.plugin-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94A3B8;
  font-family: 'Space Grotesk', sans-serif;
}
.plugin-version {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: #F1F5F9;
  color: #64748B;
  font-family: 'Space Grotesk', sans-serif;
}
.plugin-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.card-body .plugin-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Card footer & buttons ── */
.card-footer {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.card-footer .btn-cart { flex: 1; }
.card-footer .btn-docs { flex: 1; }
.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  width: 100%;
}
.btn-cart-primary {
  background: linear-gradient(135deg, #00C2FF, #0099CC);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,194,255,.3);
}
.btn-cart-primary:hover {
  background: linear-gradient(135deg, #00D4FF, #00AADD);
  box-shadow: 0 8px 24px rgba(0,194,255,.4);
  transform: translateY(-2px);
}
.btn-cart-primary.purple {
  background: linear-gradient(135deg, #6C47FF, #5035CC);
  box-shadow: 0 4px 16px rgba(108,71,255,.3);
}
.btn-cart-primary.purple:hover {
  background: linear-gradient(135deg, #7A55FF, #6040DD);
  box-shadow: 0 8px 24px rgba(108,71,255,.4);
}
.btn-docs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748B;
  background: transparent;
  border: 1px solid rgba(10,22,40,.1);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  width: 100%;
}
.btn-docs:hover {
  background: #F8FAFF;
  border-color: rgba(10,22,40,.18);
  color: var(--navy);
}

/* ── Card tag chips (used on service/case-study cards) ── */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.card-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: #F1F5F9;
  color: #64748B;
  font-family: 'Space Grotesk', sans-serif;
}
.card-tag.colored {
  background: var(--tag-bg, #F1F5F9);
  color: var(--tag-color, #64748B);
}

/* ── Card image (case study thumbnail) ── */
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #f3f4f8, #e8eaf0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Result highlight (case studies) ── */
.card-result {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  padding: 10px 14px;
  background: #F8FAFF;
  border-radius: 8px;
  border-left: 3px solid;
  margin-bottom: 20px;
}
.card-result strong { color: var(--navy); font-weight: 600; }

/* ── Product card: features list ── */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.4;
}
.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,194,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check i { font-size: 10px; color: #00C2FF; }
.features-list li.more { color: #94A3B8; font-size: 12.5px; padding-left: 27px; }

/* ── Product card: hover features overlay ── */
.features-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(6,14,28,.97) 0%, rgba(10,22,40,.99) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s cubic-bezier(.16,1,.3,1), transform .32s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.product-page-card:hover .features-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.features-overlay-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #00C2FF;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.features-overlay-label i { font-size: 12px; }
.features-overlay .features-list { margin-bottom: 0; gap: 11px; }
.features-overlay .features-list li { color: rgba(255,255,255,.82); font-size: 13px; }
.features-overlay .feature-check {
  background: rgba(0,194,255,.15);
  border: 1px solid rgba(0,194,255,.3);
}
.features-overlay .feature-check i { color: #00C2FF; }
.features-overlay .features-list li.more { color: rgba(255,255,255,.3); padding-left: 27px; }
.features-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94A3B8;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  transition: opacity .2s;
}
.features-hint i { font-size: 12px; color: #00C2FF; }
.product-page-card:hover .features-hint { opacity: 0; }

/* ── Product card: pricing block ── */
.card-pricing {
  padding: 20px 28px;
  border-top: 1px solid rgba(10,22,40,.06);
  background: #FAFBFF;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  margin-top: 6px;
}
.price-original {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: line-through;
  align-self: flex-end;
  margin-bottom: 3px;
}
.price-save-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #22C55E;
  align-self: flex-end;
  margin-bottom: 4px;
  white-space: nowrap;
}
.price-note { font-size: 12.5px; color: #94A3B8; margin-bottom: 16px; }
.price-note strong { color: #22C55E; font-weight: 600; }

/* ── Owned badge (product cards) ── */
.card-owned-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 28px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #22c55e;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
}
.card-owned-badge:hover {
  color: #16a34a;
  text-decoration: underline;
}
.card-owned-badge i { font-size: 13px; }

/* ── Learning Hub meta row ── */
.lh-meta-row { display:flex; flex-wrap:wrap; gap:10px; font-size:12px; color:#64748B; margin:10px 0; }
.lh-meta-row span { display:inline-flex; align-items:center; gap:5px; }
.lh-meta-row i { font-size:11px; opacity:.7; }

/* ============================================================
   LEARNING HUB — Udemy-style card grid + hover popup
============================================================ */
.lh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.lh-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── Base card ── */
.lh-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.lh-card:hover {
  box-shadow: 0 4px 20px rgba(10,22,40,.12);
  z-index: 20;
  overflow: visible;
}

/* ── Thumbnail ── */
.lh-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1e35 0%, #1e3a5f 100%);
  display: block;
  flex-shrink: 0;
  position: relative;
}

/* ── Type badge overlaid top-left of thumbnail ── */
.lh-thumb-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  pointer-events: none;
  z-index: 2;
}
.lh-thumb-type-badge i { font-size: 10px; opacity: .85; }
.lh-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.lh-card:hover .lh-card-thumb img { transform: scale(1.04); }
.lh-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: rgba(255,255,255,.25);
}

/* ── Card info ── */
.lh-card-info {
  padding: 12px 12px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lh-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(14px * 1.4 * 2);
}
.lh-card-instructor {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lh-card-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.lh-card-stats span { display:inline-flex; align-items:center; gap:4px; }
.lh-card-stats i { font-size:10px; opacity:.65; }

/* ── Tags row — bottom of card body ── */
.lh-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-bottom: 10px;
}
.lh-card-tag {
  font-size: 10.5px;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid rgba(10,22,40,.07);
  padding: 2px 7px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
a.lh-card-tag:hover {
  background: #e0e7ff;
  color: #4c1d95;
  border-color: rgba(108,71,255,.2);
}

/* ── Card action row — price + button ── */
.lh-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(10,22,40,.06);
  margin-top: auto;
}
.lh-price-main { font-size: 15px; font-weight: 700; color: #0a1628; }
.lh-price-free { font-size: 15px; font-weight: 700; color: #00a050; }
.lh-price-registered {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lh-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border: none;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: filter .15s;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}
.lh-card-btn:hover { filter: brightness(.9); color: #fff; }
.lh-card-btn-free   { background: #00a050; color: #fff; }
.lh-card-btn-cart   { background: #6C47FF; color: #fff; }
.lh-card-btn-demand { background: #FF6B35; color: #fff; }
.lh-card-btn-dash   { background: #0ea5e9; color: #fff; }

/* ── Hover popup ── */
.lh-popup {
  position: absolute;
  top: -1px;
  left: calc(100% + 10px);
  width: 310px;
  background: #fff;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(10,22,40,.18);
  padding: 20px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .18s ease, transform .18s ease;
}
.lh-card:hover .lh-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
/* Arrow pointing left */
.lh-popup::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -6px;
  width: 11px;
  height: 11px;
  background: #fff;
  border-left: 1px solid rgba(10,22,40,.1);
  border-bottom: 1px solid rgba(10,22,40,.1);
  transform: rotate(45deg);
}
/* Flip to left side */
.lh-card.popup-left .lh-popup {
  left: auto;
  right: calc(100% + 10px);
  transform: translateX(10px);
}
.lh-card.popup-left:hover .lh-popup { transform: translateX(0); }
.lh-card.popup-left .lh-popup::before {
  left: auto;
  right: -6px;
  border-left: none;
  border-bottom: none;
  border-right: 1px solid rgba(10,22,40,.1);
  border-top: 1px solid rgba(10,22,40,.1);
}

.lh-popup-eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.lh-popup-type {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #94a3b8;
}
.lh-popup-updated {
  font-size: 11px;
  color: #16a34a;
  font-weight: 500;
}
.lh-popup-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.35;
  margin-bottom: 8px;
}
.lh-popup-meta {
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lh-popup-meta span { display:inline-flex; align-items:center; gap:4px; }
.lh-popup-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 12px;
}
.lh-popup-highlights {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lh-popup-highlights li {
  font-size: 12px;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}
.lh-popup-highlights li i {
  color: #00a050;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
/* popup has no footer/buttons — highlights is the last element */
.lh-popup-highlights { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lh-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .lh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .lh-grid { grid-template-columns: 1fr; }
  .lh-popup { display: none; }
}

/* ── Pagination ── */
.lp-pagination {
  margin-top: 40px;
  margin-bottom: 8px;
}
.lp-pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 9px;
  border: 1px solid rgba(10,22,40,.12);
  background: #fff;
  color: #475569;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}
.lp-page-btn:hover:not(.lp-page-btn-disabled):not(.lp-page-btn-active) {
  background: #F1F5F9;
  border-color: rgba(10,22,40,.2);
  color: var(--navy);
}
.lp-page-btn-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  cursor: default;
}
.lp-page-btn-disabled {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}

/* ── Tag filter bar ── */
.lp-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.lp-filter-btn {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(10,22,40,.12);
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.lp-filter-btn:hover {
  background: #F1F5F9;
  border-color: rgba(10,22,40,.2);
  color: var(--navy);
}
.lp-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.lp-no-results {
  text-align: center;
  padding: 48px 0;
  color: #94A3B8;
  font-size: 15px;
}
.lp-filter-reset {
  background: none;
  border: none;
  color: #00C2FF;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
}

/* ── Empty state ── */
.listing-empty-state {
  text-align: center;
  padding: 80px 20px;
  max-width: 440px;
  margin: 0 auto;
}
.listing-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.listing-empty-icon i {
  font-size: 2rem;
  color: #94A3B8;
}
.listing-empty-state h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.listing-empty-state p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-cards-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .lph-shape-1 { width: 220px; height: 220px; }
  .lph-shape-2 { width: 140px; height: 140px; }
}
@media (max-width: 600px) {
  .products-hero { padding: 100px 0 60px; }
  .product-cards-grid { max-width: 100%; }
  .lph-orb-1 { width: 360px; height: 360px; }
  .lph-orb-2 { width: 400px; height: 400px; }
}
