*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #e8e8e8;
  font-family: 'Inter', sans-serif;
  color: #111;
  min-width: 320px;
}

img, svg {
  max-width: 100%;
}

/* ── HEADER ── */
.header {
  background: #000;
  min-height: 56px;
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  min-height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(126px, 168px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.header-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-self: end;
  min-width: 0;
}

.header-nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.15s;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.back-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.header-nav a:hover {
  color: #fff;
}

.header-nav a.active {
  color: #fff;
}

/* ── HERO ── */
.hero {
  background: #fff;
  padding: 52px 24px 42px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-top: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #82bf90;
  color: #111;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 13px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero p {
  color: #999;
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

/* ── FILTER BAR ── */
.filter-bar {
  background: #fff;
  border-bottom: 2px solid #e8e8e8;
  position: sticky;
  top: 56px;
  z-index: 90;
}

.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
}

.filter-sentence {
  display: block;
  color: #111;
  font-size: clamp(1rem, 1.65vw, 1.34rem);
  font-weight: 750;
  line-height: 1.85;
}

.mobile-filter-summary,
.mobile-filter-overlay,
.mobile-filter-sheet {
  display: none;
}

.clear-filters {
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.clear-filters:hover {
  color: #111;
}

.clear-filters:focus-visible {
  outline: 3px solid rgba(232,48,58,0.36);
  outline-offset: 3px;
  border-radius: 4px;
}

.clear-filters[hidden] {
  display: none;
}

.count-bar .clear-filters::before {
  content: '·';
  margin-right: 8px;
  color: #bbb;
  font-weight: 400;
  text-decoration: none;
}

.filter-group {
  position: relative;
  display: inline-block;
}

.filter-trigger {
  border: 0;
  border-bottom: 2px solid #82bf90;
  background: linear-gradient(180deg, transparent 50%, rgba(130,191,144,0.26) 50%);
  color: #4f825b;
  border-radius: 0;
  min-height: 28px;
  padding: 0 3px 1px;
  font-size: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.filter-trigger:hover,
.filter-trigger[aria-expanded="true"] {
  color: #3f714b;
  border-color: #111;
  background: linear-gradient(180deg, transparent 46%, rgba(130,191,144,0.38) 46%);
}

.filter-trigger:focus-visible {
  outline: 3px solid rgba(130,191,144,0.52);
  outline-offset: 3px;
}

.filter-chevron {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.16s ease;
}

.filter-trigger[aria-expanded="true"] .filter-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(310px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid #111;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  padding: 8px;
  display: grid;
  gap: 2px;
  z-index: 120;
}

.filter-panel--style,
.filter-panel--occasion {
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 170px));
  overflow-y: auto;
}

.filter-panel[hidden] {
  display: none;
}

.filter-option {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 9px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: background 0.14s ease;
}

.filter-option:hover:not(:disabled) {
  background: #f5f5f5;
}

.filter-option:focus-visible {
  outline: 3px solid rgba(232,48,58,0.36);
  outline-offset: 2px;
}

.filter-option.is-active {
  background: #111;
  color: #fff;
}

.filter-option:disabled {
  color: #aaa;
  cursor: not-allowed;
  opacity: 0.46;
}

.filter-option:disabled .filter-count {
  background: #f3f3f3;
  color: #b8b8b8;
}

.filter-option-label {
  font-size: 0.82rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.filter-count {
  background: #eee;
  color: #999;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 99px;
  transition: all 0.18s ease;
  min-width: 20px;
  text-align: center;
}

.filter-option.is-active .filter-count {
  background: #fff;
  color: #111;
}

/* ── CONTENT AREA ── */
.content-area {
  background: #e8e8e8;
}

.count-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.count-bar .count-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
}

.count-bar .count-label {
  font-size: 0.78rem;
  color: #bbb;
  font-weight: 400;
}

/* ── GRID ── */
.grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* ── CARD ── */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(0);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.card-link {
  cursor: pointer;
}

.card:hover,
.card:focus-visible {
  box-shadow: 0 20px 40px rgba(0,0,0,0.13), 0 4px 8px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}

.card:focus-visible {
  outline: 3px solid rgba(232,48,58,0.38);
  outline-offset: 4px;
}

.card-img-wrap {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-wrap img,
.card-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.36s ease;
}

.card-img-wrap img {
  position: relative;
  z-index: 0;
}

.card-img-wrap video.card-video-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.36s ease;
}

.card:hover .card-img-wrap img,
.card:hover .card-img-wrap video,
.card:focus-visible .card-img-wrap img,
.card:focus-visible .card-img-wrap video {
  transform: scale(1.04);
}

.card:hover .card-img-wrap video.card-video-hover,
.card:focus-visible .card-img-wrap video.card-video-hover {
  opacity: 1;
}

.card.card-video-active .card-img-wrap video.card-video-hover {
  opacity: 1;
}

.card-video-indicator,
.card-video-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,17,0.86);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.24);
  -webkit-tap-highlight-color: transparent;
}

.card-video-indicator {
  display: inline-flex;
  pointer-events: none;
}

.card-video-toggle {
  cursor: pointer;
}

.card-video-indicator svg,
.card-video-toggle svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-video-toggle:focus-visible {
  outline: 3px solid rgba(232,48,58,0.45);
  outline-offset: 3px;
}

.card.card-video-active .card-video-toggle {
  background: #e8303a;
}

@media (hover: none), (pointer: coarse) {
  .card:hover .card-img-wrap video.card-video-hover,
  .card:focus-visible .card-img-wrap video.card-video-hover {
    opacity: 0;
  }

  .card.card-video-active .card-img-wrap video.card-video-hover {
    opacity: 1;
  }

  .card-video-toggle {
    display: inline-flex;
  }

  .card-video-indicator {
    display: none;
  }
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: #e8303a;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(232,48,58,0.5);
}

.card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 7px;
  font-family: 'Inter', sans-serif;
  overflow-wrap: anywhere;
}

.card-desc {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 13px;
  gap: 12px;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: #111;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.card-cta {
  background: #111;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.15s;
  text-align: center;
  flex-shrink: 0;
}

.card:hover .card-cta,
.card:focus-visible .card-cta {
  background: #333;
}

/* ── HIDDEN ── */
.hidden { display: none; }

.grid-message {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 8px;
  color: #777;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 28px;
  text-align: center;
}

.grid-message.error {
  color: #b3261e;
}

.grid-loader {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 0 18px;
  color: #2f2f2f;
}

.grid-loader-label {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: #2f2f2f;
  white-space: nowrap;
}

.grid-loader-track {
  flex: 1 1 auto;
  min-width: 120px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47,47,47,0.12);
}

.grid-loader-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #2f2f2f;
  transform: scaleX(0);
  transform-origin: left center;
  animation: grid-loader-fill 5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes grid-loader-fill {
  to { transform: scaleX(1); }
}

.grid-skeleton {
  height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent),
    linear-gradient(#fff 0 0);
  background-size: 180px 100%, 100% 100%;
  background-position: -180px 0, 0 0;
  background-repeat: no-repeat;
  animation: skeleton-shimmer 1.15s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@keyframes skeleton-shimmer {
  to { background-position: calc(100% + 180px) 0, 0 0; }
}

/* ── SEO CONTENT ── */
.seo-content {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  padding: 46px 24px 50px;
}

.seo-content-inner {
  max-width: 960px;
  margin: 0 auto;
}

.seo-content h2 {
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.seo-content p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.seo-content-block h3 {
  color: #111;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.seo-content-block p {
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── FOOTER ── */
.partner-footer {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  padding: 26px 24px 30px;
  text-align: center;
}

.partner-footer-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.partner-footer p {
  color: #aaa;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.linkaway-logo-bar {
  position: relative;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px auto 0;
}

.linkaway-logo-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  border-radius: 0 999px 999px 0;
}

@keyframes linkaway-flow-green {
  0%, 100% { width: 22%; }
  50% { width: 42%; }
}

@keyframes linkaway-flow-yellow {
  0%, 100% { width: 48%; }
  50% { width: 66%; }
}

@keyframes linkaway-flow-orange {
  0%, 100% { width: 74%; }
  50% { width: 90%; }
}

.linkaway-logo-layer-4 {
  width: 100%;
  background-color: #ff5e4d;
  z-index: 1;
}

.linkaway-logo-layer-3 {
  animation: linkaway-flow-orange 4s ease-in-out infinite alternate;
  background-color: #fa9e4f;
  z-index: 2;
  animation-delay: 0.2s;
}

.linkaway-logo-layer-2 {
  animation: linkaway-flow-yellow 4s ease-in-out infinite alternate;
  background-color: #f9d448;
  z-index: 3;
  animation-delay: 0.1s;
}

.linkaway-logo-layer-1 {
  animation: linkaway-flow-green 4s ease-in-out infinite alternate;
  background-color: #17c3a5;
  z-index: 4;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.55rem;
  }

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

  .seo-content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 0 16px;
  }

  .header-inner {
    grid-template-columns: minmax(104px, 136px) minmax(0, 1fr);
    gap: 12px;
  }

  .header-nav {
    justify-content: flex-end;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-nav a {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding: 38px 18px 32px;
  }

  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .filter-bar-inner {
    padding: 7px 16px;
    align-items: center;
    gap: 10px;
    min-height: 64px;
  }

  .filter-sentence {
    display: none;
  }

  .filter-group {
    position: static;
  }

  .filter-panel {
    left: 16px;
    right: 16px;
    top: calc(100% - 6px);
    width: auto;
    max-height: min(420px, calc(100vh - 170px));
    overflow-y: auto;
  }

  .clear-filters {
    font-size: 0.76rem;
  }

  .filter-bar.is-mobile-open {
    z-index: 300;
  }

  .mobile-filter-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .mobile-filter-open {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-filter-phrase {
    display: block;
    color: #111;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.25;
  }

  .mobile-filter-summary-copy {
    min-width: 0;
  }

  .mobile-filter-label {
    display: block;
    color: #888;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-filter-actions {
    display: block;
  }

  #mobile-count-display {
    display: none;
  }

  .mobile-clear-filters {
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }

  .mobile-clear-filters[hidden] {
    display: none;
  }

  .mobile-filter-open:focus-visible,
  .mobile-clear-filters:focus-visible,
  .mobile-filter-row:focus-visible,
  .mobile-filter-back:focus-visible,
  .mobile-filter-close:focus-visible,
  .mobile-filter-apply:focus-visible {
    outline: 3px solid rgba(232,48,58,0.36);
    outline-offset: 3px;
  }

  .mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.42);
    border: 0;
    padding: 0;
    z-index: 1;
  }

  .filter-bar.is-mobile-open .mobile-filter-overlay {
    display: block;
  }

  .mobile-filter-overlay[hidden],
  .mobile-filter-sheet[hidden] {
    display: none;
  }

  .mobile-filter-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    max-height: min(82vh, 680px);
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -18px 45px rgba(0,0,0,0.24);
    overflow: hidden;
    transform: translateY(105%);
    transition: transform 0.22s ease;
    z-index: 2;
  }

  .filter-bar.is-mobile-open .mobile-filter-sheet {
    transform: translateY(0);
  }

  .mobile-filter-header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #eee;
  }

  .mobile-filter-title {
    color: #111;
    font-size: 1.05rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-filter-back,
  .mobile-filter-close {
    border: 0;
    background: #f2f2f2;
    color: #111;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1;
  }

  .mobile-filter-back {
    font-size: 1rem;
  }

  .mobile-filter-back[hidden] {
    visibility: hidden;
  }

  .mobile-filter-body {
    display: grid;
    gap: 0;
    padding: 4px 18px 14px;
    overflow-y: auto;
  }

  .mobile-filter-section {
    display: grid;
    border-bottom: 1px solid #eee;
  }

  .mobile-filter-sheet.is-choosing .mobile-filter-section:not(.is-active-section) {
    display: none;
  }

  .mobile-filter-row {
    border: 0;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
  }

  .mobile-filter-section-title {
    color: #111;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
  }

  .mobile-filter-section-value {
    display: block;
    color: #888;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 3px;
  }

  .mobile-filter-row .filter-chevron {
    color: #111;
    width: 7px;
    height: 7px;
    transform: rotate(-45deg);
  }

  .mobile-filter-row[aria-expanded="true"] .filter-chevron {
    transform: rotate(-45deg);
  }

  .mobile-filter-options {
    display: grid;
    gap: 6px;
    padding: 10px 0 12px;
  }

  .mobile-filter-options[hidden] {
    display: none;
  }

  .mobile-filter-options .filter-option {
    min-height: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border: 0;
    border-radius: 6px;
    padding: 8px 10px;
  }

  .mobile-filter-options .filter-option.is-active {
    background: #111;
  }

  .mobile-filter-footer {
    display: grid;
    gap: 10px;
    padding: 12px 18px max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid #eee;
    background: #fff;
  }

  .mobile-filter-apply {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    min-height: 48px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .count-bar {
    display: none;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 56px;
  }

  .grid-loader {
    gap: 10px;
  }

  .grid-loader-label {
    font-size: 0.72rem;
  }

  .card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transform: none;
  }

  .card:hover .card-img-wrap img,
  .card:hover .card-img-wrap video,
  .card:focus-visible .card-img-wrap img,
  .card:focus-visible .card-img-wrap video {
    transform: none;
  }

  .card:hover .card-img-wrap video.card-video-hover,
  .card:focus-visible .card-img-wrap video.card-video-hover {
    opacity: 0;
  }

  .card.card-video-active .card-img-wrap video.card-video-hover {
    opacity: 1;
  }

  .card-video-toggle {
    display: inline-flex;
  }

  .card-video-indicator {
    display: none;
  }

  .card-body {
    padding: 15px 16px 18px;
  }

  .card-footer {
    align-items: stretch;
  }

  .card-cta {
    padding: 9px 13px;
    white-space: nowrap;
  }

  .partner-footer {
    padding: 24px 16px 28px;
  }

  .seo-content {
    padding: 36px 18px 40px;
  }
}

@media (max-width: 380px) {
  .card-footer {
    flex-direction: column;
  }

  .card-cta {
    width: 100%;
  }
}
