/*
 * WP Moz — page-plugins.css
 * ─────────────────────────────────────────────────────────────
 * Page-specific styles auto-enqueued by functions.php when the
 * corresponding page template is active.
 *
 * HOW TO USE:
 *   Copy the <style> block from your original HTML file
 *   (the section AFTER the shared styles) and paste it here.
 *
 *   Example — from your contact.html:
 *   The CSS inside the <style> tag specific to the contact page
 *   goes here. The global styles (navbar, footer, buttons, tokens)
 *   are already loaded by main.css — do NOT duplicate them.
 * ─────────────────────────────────────────────────────────────
 */

/*
 * ── PASTE PAGE-SPECIFIC CSS FROM YOUR HTML FILE BELOW ──
 */

/* ── PAGE-SPECIFIC: Plugins ── */

/* PAGE HERO */
#page-hero {
  min-height: 60vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 70% at 70% 20%,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 90%,
      rgba(34, 197, 94, 0.06) 0%,
      transparent 60%
    ),
    var(--bg);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.ho1 {
  width: 480px;
  height: 480px;
  background: rgba(249, 115, 22, 0.11);
  top: -120px;
  right: -80px;
  animation: orbFloat 9s ease-in-out infinite;
}
.ho2 {
  width: 360px;
  height: 360px;
  background: rgba(34, 197, 94, 0.07);
  bottom: -80px;
  left: -60px;
  animation: orbFloat 11s 4s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(16px, -16px) scale(1.04);
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1),
    rgba(34, 197, 94, 0.07)
  );
  border: 1px solid rgba(249, 115, 22, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 22px;
  animation: fadeUp 0.9s 0.08s ease both;
}
.hero-title .hl {
  background: linear-gradient(
    135deg,
    var(--orange),
    #f59e0b,
    var(--orange-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeUp 1s 0.16s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.24s ease both;
}
.h-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
}
.h-stat strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.hero-search-wrap {
  animation: fadeUp 1s 0.32s ease both;
}
.hero-search {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  max-width: 540px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}
.hs-icon {
  padding: 0 0 0 20px;
  font-size: 17px;
  flex-shrink: 0;
}
.hero-search input {
  flex: 1;
  padding: 15px 14px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}
.hero-search input::placeholder {
  color: var(--text3);
}
.hero-search button {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border: none;
  padding: 15px 26px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.hero-search button:hover {
  filter: brightness(1.08);
}
.search-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.search-tag {
  padding: 5px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  color: var(--text2);
  cursor: pointer;
  transition: var(--transition);
  background: var(--surface2);
  backdrop-filter: blur(8px);
}
.search-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* FILTER BAR */
#filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--surface2);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ftab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text2);
  transition: var(--transition);
  font-family: var(--font-body);
}
.ftab:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.ftab.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-select {
  padding: 8px 32px 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C8E80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.sort-select:focus {
  border-color: var(--orange);
}
.view-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg2);
  border-radius: 100px;
  border: 1px solid var(--border);
}
.vt-btn {
  width: 34px;
  height: 34px;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  color: var(--text3);
}
.vt-btn.active {
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--text);
}
.results-count {
  font-size: 13px;
  color: var(--text3);
  white-space: nowrap;
}

/* PRODUCTS GRID */
#products-section {
  padding: 60px 0 100px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.products-grid.list-view {
  grid-template-columns: 1fr;
}
.product-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}
.product-card.hidden {
  display: none;
}
.wish-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.wish-btn:hover {
  transform: scale(1.15);
  border-color: var(--orange);
}
.wish-btn.liked {
  background: rgba(249, 115, 22, 0.1);
  border-color: var(--orange);
}
.pc-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pt-orange {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}
.pt-green {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}
.pt-blue {
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}
.pt-purple {
  background: linear-gradient(135deg, #f5f3ff, #ddd6fe);
}
.pt-warm {
  background: linear-gradient(135deg, #fffbeb, #fde68a);
}
.pt-rose {
  background: linear-gradient(135deg, #fff1f2, #fecdd3);
}
[data-dark] .pt-orange {
  background: linear-gradient(135deg, #2c1810, #3d2210);
}
[data-dark] .pt-green {
  background: linear-gradient(135deg, #0c2010, #0f2d15);
}
[data-dark] .pt-blue {
  background: linear-gradient(135deg, #0a1628, #0f2040);
}
[data-dark] .pt-purple {
  background: linear-gradient(135deg, #180f2e, #241540);
}
[data-dark] .pt-warm {
  background: linear-gradient(135deg, #1a1605, #2a220a);
}
[data-dark] .pt-rose {
  background: linear-gradient(135deg, #1f0a0c, #2e1015);
}
.pc-thumb-icon {
  font-size: 64px;
  transition: var(--transition);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 1;
}
.product-card:hover .pc-thumb-icon {
  transform: scale(1.12) rotate(-6deg) translateY(-4px);
}
.pc-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--surface);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
  box-shadow: var(--shadow);
  border: 1px solid var(--border2);
}
.pc-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.download-badge {
  background: rgba(34, 197, 94, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.demo-badge {
  background: rgba(59, 130, 246, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.featured-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) 0;
  letter-spacing: 0.08em;
}
.pc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.pc-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
}
.pc-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.pc-stars .stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}
.pc-stars .cnt {
  font-size: 11px;
  color: var(--text3);
}
.pc-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.pc-features {
  margin-bottom: 16px;
}
.pc-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 5px;
}
.pc-feat::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.pc-footer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pc-footer .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 12px;
  font-size: 13px;
}
.pc-footer .btn-ghost {
  flex: 0 0 auto;
  width: 42px;
  padding: 10px;
  justify-content: center;
  font-size: 16px;
}

/* List view */
.list-view .product-card {
  flex-direction: row;
  height: 180px;
}
.list-view .pc-thumb {
  width: 200px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 0;
}
.list-view .pc-thumb-icon {
  font-size: 52px;
}
.list-view .pc-body {
  padding: 20px 24px;
}
.list-view .pc-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-view .pc-features {
  display: none;
}
.list-view .wish-btn {
  top: 12px;
  left: auto;
  right: 12px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  display: none;
}
.empty-state.visible {
  display: block;
}
.empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.empty-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.empty-sub {
  color: var(--text2);
  font-size: 15px;
}

/* FEATURED SHOWCASE */
#featured {
  background: var(--bg2);
}
.featured-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 60px;
}
.showcase-visual {
  position: relative;
}
.showcase-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  position: relative;
  z-index: 2;
}
.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.showcase-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-orange);
}
.showcase-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.showcase-sub {
  font-size: 13px;
  color: var(--text2);
  margin-top: 2px;
}
.showcase-mockup {
  background: #0f0c07;
  border-radius: var(--radius-sm);
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  color: #9ca3af;
  margin-bottom: 20px;
  overflow: hidden;
}
.code-kw {
  color: var(--orange);
}
.code-fn {
  color: #60a5fa;
}
.code-str {
  color: var(--green-light);
}
.code-cm {
  color: #4b5563;
}
.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sm-item {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border);
}
.sm-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.sm-lbl {
  font-size: 10px;
  color: var(--text3);
  margin-top: 2px;
}
.showcase-float {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
.sf1 {
  top: -20px;
  right: -30px;
}
.sf2 {
  bottom: -16px;
  left: -30px;
  animation-delay: 2s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.showcase-features {
  margin: 28px 0;
}
.sf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.sf-item:last-child {
  border-bottom: none;
}
.sf-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.sf-text-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.sf-text-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* PRICING TABLE */
#pricing {
  background: var(--bg);
}
.pricing-table-wrap {
  margin-top: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}
.pt-th {
  padding: 14px 20px;
  background: var(--bg2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.pt-th:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  width: 220px;
}
.pt-th.col-highlighted {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.08),
    rgba(249, 115, 22, 0.04)
  );
  border-bottom-color: var(--orange);
}
.pt-th .col-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.pt-th .col-price {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
  font-family: var(--font-mono);
}
.pt-td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
  background: var(--surface);
}
.pt-td.feature-name {
  font-weight: 500;
  color: var(--text2);
  background: var(--bg2);
}
.pt-td.col-highlighted {
  background: rgba(249, 115, 22, 0.03);
}
.pt-check {
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
}
.pt-cross {
  color: var(--text3);
  font-size: 17px;
}
.pt-partial {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
}
.pt-tr:hover .pt-td {
  background: var(--bg2);
}
.pt-tr:hover .pt-td.col-highlighted {
  background: rgba(249, 115, 22, 0.06);
}
.pt-footer td {
  padding: 16px 20px;
  background: var(--bg2);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* WHY PLUGINS */
#why-plugins {
  background: var(--bg2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(
    ellipse at top left,
    rgba(249, 115, 22, 0.06),
    transparent 70%
  );
}
.why-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover::before {
  opacity: 1;
}
.wc-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}
.wc-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.wc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.wc-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--bg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border2);
}
.tc-fiverr {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #1dbf73;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.05em;
}
.tc-quote {
  font-size: 60px;
  line-height: 0.8;
  color: var(--orange-cream);
  font-family: Georgia, serif;
  margin-bottom: 10px;
}
.tc-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.tc-name {
  font-weight: 600;
  font-size: 14px;
}
.tc-country {
  font-size: 12px;
  color: var(--text3);
}
.tc-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}

/* RESPONSIVE (page-specific) */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-showcase {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid,
  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .filter-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-right {
    justify-content: space-between;
  }
  .list-view .product-card {
    flex-direction: column;
    height: auto;
  }
  .list-view .pc-thumb {
    width: 100%;
    height: 180px;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .pricing-table-wrap {
    margin: 0 -28px;
  }
}
