:root {
  --font-body: "Onest", sans-serif;
  --font-display: "Onest", sans-serif;
  --bg: #07111e;
  --bg-soft: #102138;
  --panel: rgba(10, 19, 34, 0.82);
  --panel-strong: rgba(12, 24, 42, 0.94);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f7fbff;
  --muted: #9ab0c9;
  --yellow: #ffc83d;
  --orange: #ff7a18;
  --cyan: #4ce2ff;
  --blue: #298dff;
  --green: #76f0b2;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --shadow-hard: 0 10px 0 rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-small: 16px;
}

* {
  box-sizing: border-box;
}

picture {
  display: contents;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(76, 226, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 200, 61, 0.18), transparent 26%),
    linear-gradient(135deg, #05101c 0%, #08172b 34%, #0c1426 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
}

body.modal-open {
  overflow: hidden;
}

.site-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero,
.section,
.collection-card,
.catalog-card,
.asset-modal {
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(28, 50, 82, 0.94), rgba(7, 17, 30, 0.94)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 40%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.3), transparent 62%);
}

.hero-copy h1,
.section-head h2,
.modal-title,
.catalog-card h3,
.collection-card h3,
.featured-card h3,
.stat-card strong {
  font-family: var(--font-display);
  letter-spacing: -0.018em;
  font-weight: 500;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  max-width: 12ch;
  font-size: clamp(2.3rem, 3.8vw, 4.35rem);
  line-height: 0.94;
}

.hero-text,
.section-note,
.asset-subtitle,
.meta-value,
.results-bar,
.empty-state {
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-actions,
.toolbar,
.results-bar,
.download-row,
.meta-grid,
.detail-tags,
.collection-meta,
.hero-nav,
.card-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.chip,
.filter-chip {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.collection-card,
.featured-card,
.catalog-card,
.chip {
  color: var(--text);
}

.button {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.chip:hover,
.catalog-card:hover,
.collection-card:hover,
.featured-card:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #1d1401;
  background: linear-gradient(180deg, #ffe27b, var(--yellow));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 30px rgba(255, 200, 61, 0.25);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 42px;
}

.text-link {
  color: #dce7f4;
  text-decoration: none;
}

.hero-panel,
.collection-card,
.featured-card,
.catalog-card,
.modal-side,
.modal-stage,
.filters,
.results-bar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.hero-panel {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(76, 226, 255, 0.22), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 61, 0.2), transparent 26%);
}

.hero-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #11233f;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-mark,
.hero-nav a,
.collection-card-link,
.catalog-card-link,
.featured-card,
.seo-link-card,
.footer-links a {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-nav {
  justify-content: flex-end;
}

.hero-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 400;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8e3f2;
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.55;
  font-weight: 400;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 17, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  margin-top: 24px;
  padding: 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.section-head-stack {
  align-items: center;
}

.collection-rail,
.featured-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(118, 240, 178, 0.55) rgba(255, 255, 255, 0.05);
}

.collection-rail::-webkit-scrollbar,
.featured-row::-webkit-scrollbar {
  height: 10px;
}

.collection-rail::-webkit-scrollbar-track,
.featured-row::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.collection-rail::-webkit-scrollbar-thumb,
.featured-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118, 240, 178, 0.9), rgba(76, 226, 255, 0.88));
}

.collection-card,
.featured-card {
  scroll-snap-align: start;
}

.collection-card,
.featured-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.collection-card::before,
.featured-card::before,
.catalog-card::before,
.modal-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(76, 226, 255, 0.16), transparent 28%);
  pointer-events: none;
}

.collection-card h3,
.featured-card h3 {
  margin: 12px 0 8px;
  font-size: 1.22rem;
  line-height: 1.04;
}

.collection-card p,
.featured-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}

.collection-meta {
  margin-top: 14px;
}

.collection-card.is-active {
  border-color: rgba(255, 200, 61, 0.3);
}

.meta-pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 500;
}

.filters {
  padding: 20px;
}

.filter-block + .filter-block {
  margin-top: 18px;
}

.filter-title {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.96rem;
  font-weight: 400;
}

.chip.active {
  color: #1b1405;
  border-color: rgba(255, 200, 61, 0.3);
  background: linear-gradient(180deg, #ffe27b, var(--yellow));
}

.toolbar {
  justify-content: flex-end;
  align-items: end;
  gap: 14px;
}

.search {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.search span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.search input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 400;
}

.search input::placeholder {
  color: rgba(154, 176, 201, 0.72);
}

.search input:focus {
  outline: 2px solid rgba(76, 226, 255, 0.45);
  outline-offset: 2px;
}

.results-bar {
  margin: 16px 0;
  padding: 16px 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.catalog-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(8, 18, 31, 0.9);
  box-shadow: var(--shadow-hard);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.catalog-card,
.featured-card {
  display: block;
}

.collection-card-link,
.catalog-card-link,
.featured-card {
  color: inherit;
  position: relative;
  z-index: 1;
}

.collection-card-link,
.catalog-card-link {
  display: block;
}

.catalog-card:hover {
  border-color: rgba(255, 200, 61, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.catalog-visual,
.featured-visual,
.collection-visual,
.modal-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
}

.catalog-visual,
.featured-visual,
.collection-visual {
  min-height: 220px;
  padding: 10px 10px 0;
  background: transparent;
}

.collection-visual {
  min-height: 140px;
}

.catalog-visual img,
.featured-visual img,
.collection-visual img,
.modal-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34));
}

.catalog-info {
  margin-top: 14px;
}

.card-topline,
.featured-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.card-topline span,
.featured-topline span,
.asset-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  justify-content: center;
}

.catalog-card h3,
.modal-title {
  margin: 12px 0 8px;
  font-size: 1.34rem;
  line-height: 1.04;
}

.asset-subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 400;
}

.format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.asset-chip.available {
  color: #082015;
  background: rgba(118, 240, 178, 0.9);
}

.asset-chip.missing {
  color: var(--muted);
}

.featured-card {
  cursor: pointer;
}

.featured-visual {
  min-height: 180px;
}

.card-actions {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

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

.empty-state {
  padding: 36px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed var(--border-strong);
}

.pagination-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.page-button,
.page-indicator {
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 500;
}

.page-button {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.page-button:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 226, 255, 0.4);
}

.page-button.active {
  color: #06191d;
  border-color: rgba(118, 240, 178, 0.28);
  background: linear-gradient(180deg, rgba(118, 240, 178, 0.98), rgba(76, 226, 255, 0.9));
}

.page-button.ghost,
.page-indicator {
  color: var(--muted);
}

.page-button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.asset-modal {
  width: min(1180px, calc(100% - 24px));
  max-width: 1180px;
  max-height: calc(100vh - 24px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  overflow: auto;
}

.asset-modal::backdrop {
  background: rgba(2, 8, 18, 0.84);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: 16px;
  padding: 18px;
  align-items: start;
}

.modal-stage,
.modal-side {
  min-width: 0;
}

.modal-stage {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  overflow: hidden;
}

.modal-preview {
  min-height: 290px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 200, 61, 0.18), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(76, 226, 255, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(34, 64, 104, 0.92), rgba(8, 18, 32, 0.96));
}

.media-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.media-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.media-card-head span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-preview img {
  max-width: min(76%, 420px);
  max-height: 250px;
}

.modal-video-shell {
  padding: 14px;
  background:
    radial-gradient(circle at 16% 18%, rgba(76, 226, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.98), rgba(5, 12, 22, 0.98));
}

.modal-video-shell video {
  display: block;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.media-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 18px;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.modal-side {
  padding: 20px;
}

.modal-side p {
  margin: 0;
}

.detail-tags,
.download-row {
  margin-top: 16px;
}

.download-row .button {
  flex: 1 1 180px;
}

.button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.meta-grid {
  margin-top: 22px;
}

.meta-card {
  flex: 1 1 180px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-value {
  color: var(--text);
  font-weight: 500;
}

.seo-section {
  overflow: hidden;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 18px;
}

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

.seo-copy p {
  margin: 0;
  color: #d8e3f2;
  line-height: 1.7;
}

.seo-copy span,
.seo-copy strong {
  color: var(--text);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seo-link-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    rgba(9, 19, 33, 0.78);
}

.seo-link-card strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
}

.seo-link-card span {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px 0;
}

.site-footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links a {
  color: #dce7f4;
  font-weight: 400;
}

.toolbar-form {
  display: grid;
  grid-template-columns: minmax(320px, 420px) auto auto;
  gap: 14px;
  align-items: end;
}

@media (max-width: 980px) {
  .hero,
  .modal-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .section-head-stack {
    align-items: start;
    flex-direction: column;
  }

  .toolbar {
    width: 100%;
    justify-content: stretch;
  }

  .toolbar-form {
    grid-template-columns: 1fr;
  }

  .search {
    min-width: 100%;
  }

  .results-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-nav {
    justify-content: flex-start;
  }

  .seo-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 18px, 1440px);
    padding-top: 12px;
  }

  .hero,
  .section,
  .modal-grid {
    padding: 16px;
  }

  .collection-rail,
  .featured-row {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card .card-actions,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-nav,
  .footer-links {
    gap: 8px;
  }

  .brand-mark {
    width: 100%;
    justify-content: center;
  }

  .hero-nav a {
    min-height: 38px;
    padding: 0 12px;
  }

  .card-actions .button,
  .download-row .button,
  .download-row .button-disabled,
  .toolbar-form .button {
    width: 100%;
    flex: 1 1 100%;
  }

  .asset-modal {
    width: 100vw;
    max-width: none;
    max-height: none;
    height: 100vh;
    border-radius: 0;
  }

  .modal-preview {
    min-height: 260px;
  }

  .modal-preview img {
    max-width: 82%;
    max-height: 220px;
  }

  .media-empty {
    min-height: 180px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .site-shell {
    width: calc(100% - 14px);
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .toolbar,
  .card-actions,
  .download-row,
  .meta-grid,
  .detail-tags,
  .collection-meta,
  .footer-links {
    gap: 10px;
  }

  .hero-points li,
  .seo-link-card,
  .catalog-card,
  .collection-card,
  .featured-card {
    border-radius: 20px;
  }
}
