/* ==========================================================================
   FinTech Express — Shared components
   ========================================================================== */

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-base) var(--ease),
    color var(--t-base) var(--ease), border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease), transform var(--t-fast) var(--ease);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn svg,
.btn .icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 14px 34px rgba(11, 163, 96, 0.34);
}

.btn--accent {
  background: var(--accent-400);
  color: var(--brand-950);
  box-shadow: 0 10px 28px rgba(166, 211, 33, 0.32);
}

.btn--accent:hover {
  background: var(--accent-300);
}

.btn--dark {
  background: var(--brand-950);
  color: #fff;
}

.btn--dark:hover {
  background: var(--brand-900);
}

.btn--outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--brand-500);
  color: var(--brand-700);
  background: var(--brand-50);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-2);
}

.btn--ghost:hover {
  background: var(--bg-alt);
  color: var(--ink);
}

.btn--soft {
  background: var(--brand-100);
  color: var(--brand-800);
}

.btn--soft:hover {
  background: var(--brand-200);
}

.btn--white {
  background: #fff;
  color: var(--brand-800);
}

.btn--white:hover {
  background: var(--brand-50);
}

.btn--on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn--on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--fs-md);
  border-radius: var(--r-lg);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
}

.btn--block {
  width: 100%;
}

.btn--icon {
  padding: 0.6rem;
  border-radius: var(--r-md);
}

.btn--icon svg {
  width: 20px;
  height: 20px;
}

.btn--whatsapp {
  background: #25d366;
  color: #04211a;
}

.btn--whatsapp:hover {
  background: #1fbe59;
}

/* --------------------------------------------------------------------------
   Badges & pills
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.3em 0.7em;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
}

.badge--new     { background: var(--brand-500); color: #fff; }
.badge--best    { background: var(--accent-400); color: var(--brand-950); }
.badge--promo   { background: #ff6b35; color: #fff; }
.badge--out     { background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); }
.badge--region  { background: rgba(255, 255, 255, 0.9); color: var(--ink-2); border: 1px solid var(--border); }
.badge--success { background: var(--success-bg); color: var(--brand-700); }
.badge--soft    { background: var(--brand-100); color: var(--brand-800); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-2);
}

.pill svg {
  width: 15px;
  height: 15px;
  color: var(--brand-500);
  flex: none;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.card--hover:hover {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card--flat {
  background: var(--surface-2);
  border-color: transparent;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--brand-100);
  color: var(--brand-700);
  margin-bottom: var(--sp-4);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.feature-card p {
  color: var(--muted);
  font-size: var(--fs-base);
}

/* --------------------------------------------------------------------------
   Product card
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--sp-5);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.product-card:hover {
  border-color: var(--brand-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card--out {
  opacity: 0.72;
}

.product-card__media {
  position: relative;
  aspect-ratio: 400 / 250;
  overflow: hidden;
  background: var(--bg-alt);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__flags {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  z-index: 2;
}

.product-card__region {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  z-index: 2;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
}

.product-card__cat {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-2);
}

.price {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: -0.02em;
}

.price--lg {
  font-size: clamp(1.6rem, 3vw, var(--fs-2xl));
}

.price--was {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted-2);
  text-decoration: line-through;
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.product-card__meta svg {
  width: 13px;
  height: 13px;
  color: var(--brand-500);
}

.product-card__cta {
  position: relative;
  z-index: 2;
  margin-top: var(--sp-3);
}

/* --------------------------------------------------------------------------
   Category tile
   -------------------------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: var(--sp-4);
}

.category-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-6);
  min-height: 148px;
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.category-tile::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--tile-color, var(--brand-500));
  opacity: 0.1;
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-base) var(--ease);
}

.category-tile:hover {
  border-color: var(--tile-color, var(--brand-400));
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-tile:hover::before {
  transform: scale(1.35);
  opacity: 0.16;
}

.category-tile__logo {
  position: relative;
  height: 34px;
}

.category-tile__logo img {
  height: 100%;
  width: auto;
}

.category-tile__name {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.category-tile__count {
  position: relative;
  display: block;
  margin-top: 2px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field__label {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
}

.field__label .req {
  color: var(--danger);
}

.field__hint {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.field__error {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--danger);
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--muted-2);
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-100);
}

.input[aria-invalid="true"],
.select[aria-invalid="true"],
.textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px var(--danger-bg);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b837c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.checkbox,
.radio {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--fs-base);
  color: var(--ink-2);
}

.checkbox input,
.radio input {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--brand-500);
  cursor: pointer;
}

/* Search bar */
.search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search__icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.search .input {
  padding-left: 2.85rem;
}

.search--hero {
  gap: var(--sp-2);
  padding: var(--sp-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.search--hero .input {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding-left: 2.6rem;
}

.search--hero .input:focus {
  box-shadow: none;
}

.search--hero .search__icon {
  left: 1.1rem;
}

.search__suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 340px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
}

.search__suggest:empty,
.search__suggest[hidden] {
  display: none;
}

.search__suggest-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  text-align: left;
  transition: background var(--t-fast) var(--ease);
}

.search__suggest-item:hover,
.search__suggest-item.is-active {
  background: var(--brand-50);
}

.search__suggest-item img {
  width: 44px;
  height: 28px;
  object-fit: cover;
  border-radius: 5px;
  flex: none;
}

.search__suggest-name {
  flex: 1;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}

.search__suggest-price {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--brand-600);
}

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}

.accordion__item + .accordion__item {
  border-top: 1px solid var(--border);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--ink);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.accordion__trigger:hover {
  background: var(--surface-2);
  color: var(--brand-700);
}

.accordion__trigger svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--brand-500);
  transition: transform var(--t-base) var(--ease);
}

.accordion__trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--ease);
}

.accordion__panel[data-open="true"] {
  grid-template-rows: 1fr;
}

.accordion__panel-inner {
  overflow: hidden;
}

.accordion__body {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--muted);
  font-size: var(--fs-base);
}

.accordion__body p + p {
  margin-top: var(--sp-3);
}

.accordion__body ul {
  margin-top: var(--sp-3);
  display: grid;
  gap: var(--sp-2);
}

.accordion__body li {
  position: relative;
  padding-left: var(--sp-5);
}

.accordion__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-400);
}

/* --------------------------------------------------------------------------
   Breadcrumbs, pagination
   -------------------------------------------------------------------------- */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brand-600);
}

.breadcrumb__sep {
  color: var(--muted-2);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-10);
}

.pagination button {
  min-width: 40px;
  height: 40px;
  padding-inline: var(--sp-3);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-2);
  transition: all var(--t-fast) var(--ease);
}

.pagination button:hover:not(:disabled):not([aria-current="page"]) {
  border-color: var(--brand-400);
  color: var(--brand-700);
}

.pagination button[aria-current="page"] {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination__gap {
  padding-inline: var(--sp-1);
  color: var(--muted-2);
}

/* --------------------------------------------------------------------------
   Empty state, notes, toast
   -------------------------------------------------------------------------- */

.empty-state {
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
}

.empty-state img {
  width: 180px;
}

.empty-state p {
  max-width: 420px;
  color: var(--muted);
}

.note {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  line-height: 1.55;
}

.note svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.note--info    { background: var(--info-bg);    color: #1a4d70; }
.note--warning { background: var(--warning-bg); color: #7a5310; }
.note--success { background: var(--success-bg); color: var(--brand-800); }
.note--danger  { background: var(--danger-bg);  color: #8e2222; }

.toast-region {
  position: fixed;
  right: var(--sp-5);
  bottom: var(--sp-5);
  z-index: var(--z-toast);
  display: grid;
  gap: var(--sp-2);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  background: var(--brand-950);
  color: #fff;
  font-size: var(--fs-base);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: toast-in var(--t-base) var(--ease-out);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--accent-400);
}

.toast.is-leaving {
  animation: toast-out var(--t-base) var(--ease) forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateY(12px); }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(760px 320px at 12% 0%, var(--brand-100) 0%, transparent 62%),
    var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero h1 {
  margin-top: var(--sp-4);
  font-size: clamp(2rem, 4.4vw, var(--fs-4xl));
}

.page-hero p {
  margin-top: var(--sp-4);
  font-size: var(--fs-lg);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Prose (legal / long-form)
   -------------------------------------------------------------------------- */

.prose {
  max-width: 74ch;
  color: var(--ink-2);
  font-size: var(--fs-md);
  line-height: 1.75;
}

.prose h2 {
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-xl);
  color: var(--ink);
  scroll-margin-top: calc(var(--header-h) + var(--sp-6));
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-lg);
  color: var(--ink);
}

.prose p + p {
  margin-top: var(--sp-4);
}

.prose ul {
  margin-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}

.prose li {
  position: relative;
  padding-left: var(--sp-5);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-400);
}

.prose a {
  color: var(--brand-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: var(--sp-12);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  display: grid;
  gap: var(--sp-1);
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.legal-toc__title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-2);
}

.legal-toc a {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--ink-2);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.legal-toc a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-8);
  }

  .legal-toc {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   Table
   -------------------------------------------------------------------------- */

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-base);
}

.info-table th,
.info-table td {
  padding: var(--sp-4) var(--sp-2);
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.info-table th {
  width: 42%;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
}

.info-table td {
  color: var(--ink);
  font-weight: 600;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

/* --------------------------------------------------------------------------
   Skeleton loading
   -------------------------------------------------------------------------- */

.skeleton {
  border-radius: var(--r-md);
  background: linear-gradient(
    90deg,
    var(--bg-alt) 25%,
    var(--surface-2) 50%,
    var(--bg-alt) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.skeleton-card {
  height: 300px;
  border-radius: var(--r-xl);
}
