/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.3.4_@babel+core@7.29.7_@opentelemetry+api@1.9.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[5].use[2]!../../node_modules/.pnpm/next@15.3.4_@babel+core@7.29.7_@opentelemetry+api@1.9.1_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[5].use[3]!./src/components/demall.module.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*
 * DeMall — marketplace landing page (19D.2B-R2).
 *
 * Deliberately quieter than `home-marketing.module.css`. The home page makes a
 * brand argument and earns the full navy gradient and the display tier; this
 * page opens a catalogue, and a second full-strength hero would make the two
 * read as duplicates — the "DeMall becomes a second homepage" risk docs/46 §13
 * names first.
 *
 * So: a tinted band instead of a gradient, `--t-section` instead of
 * `--t-display`, and cards that behave like destinations rather than marketing
 * panels.
 *
 * Same rules as the home module — every value is a token, no raw hex, no
 * hand-written clamp, logical properties only so Arabic RTL and English LTR
 * share one stylesheet.
 */

.demall_page__hszxR { -webkit-padding-after: var(--s24); padding-block-end: var(--s24); }

.demall_inner__9Owwm {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s5);
}

.demall_band___qInT { padding-block: var(--section-rhythm); }

/* ── Hero ─────────────────────────────────────────────────────────────── */

.demall_hero__pRwbE {
  padding-block: var(--s20);
  background: var(--kees-band-brand);
  -webkit-border-after: 1px solid var(--kees-border);
          border-block-end: 1px solid var(--kees-border);
}

.demall_heroInner__4KrmO { text-align: center; }

.demall_eyebrow__LAt_x {
  display: inline-block;
  -webkit-margin-after: var(--s4);
          margin-block-end: var(--s4);
  padding: var(--s1) var(--s4);
  border-radius: var(--r-full);
  background: var(--kees-band-surface);
  color: var(--kees-primary);
  font-size: var(--t-sm);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.demall_title__uyGFB {
  max-width: 22ch;
  margin-inline: auto;
  font-size: var(--t-section);
  font-weight: 800;
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-display);
  color: var(--kees-text);
}

.demall_lede__nxfjv {
  max-width: 62ch;
  margin: var(--s5) auto 0;
  font-size: var(--t-lg);
  line-height: 1.8;
  color: var(--kees-text-2);
}

/* ── Search ───────────────────────────────────────────────────────────────
   The control the marketplace leads with. The skill's Marketplace / Directory
   pattern is explicit: the search bar *is* the CTA, so it gets hero placement
   and full-height treatment rather than a slot in the header. */

.demall_search__M5PuA {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  max-width: 42rem;
  margin: var(--s8) auto 0;
}

/* Visible to assistive tech only. The field has a placeholder and a labelled
   submit beside it, so an on-screen label would be redundant — but a
   placeholder is not a label, and an unnamed input is the accessibility defect
   the rule exists for. */
.demall_searchLabel__W6Qup {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
}

.demall_searchInput__6GpJM {
  flex: 1 1 18rem;
  min-height: var(--control-h);
  padding-inline: var(--s5);
  border: 1.5px solid var(--kees-border);
  border-radius: var(--r-md);
  background: var(--kees-band-surface);
  color: var(--kees-text);
  font-size: var(--t-base);
  transition: border-color var(--dur-fast) var(--ease-out);
}

.demall_searchInput__6GpJM::placeholder { color: var(--kees-text-4); }
.demall_searchInput__6GpJM:hover { border-color: var(--kees-accent); }

.demall_searchInput__6GpJM:focus-visible {
  border-color: var(--kees-accent);
  outline: 2px solid var(--kees-accent);
  outline-offset: 1px;
}

.demall_searchButton__hhL56 {
  min-height: var(--control-h);
  padding-inline: var(--s8);
  border: 1.5px solid var(--kees-primary);
  border-radius: var(--r-md);
  background: var(--kees-primary);
  color: var(--kees-on-primary);
  font-size: var(--t-base);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

.demall_searchButton__hhL56:hover { background: var(--kees-primary-hover); }

/* ── Entry cards ──────────────────────────────────────────────────────────
   Whole-card links. Each is a destination, so the whole surface is the target
   rather than a small "browse" link inside it. */

.demall_entryGrid__qZI_b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  grid-gap: var(--s5);
  gap: var(--s5);
  /* The global `.section` wrapper supplies the rhythm above; the list itself
     only needs its own internal gap. */
  margin: 0;
  padding: 0;
}

.demall_entry__ygAne {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  min-height: 100%;
  padding: var(--s6);
  border: 1px solid var(--kees-border);
  border-radius: var(--r-xl);
  background: var(--kees-band-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.demall_entry__ygAne:hover {
  transform: translateY(-3px);
  border-color: var(--kees-accent);
  box-shadow: var(--shadow-card-hover);
}

.demall_entryIcon__8wv4a {
  display: grid;
  place-items: center;
  width: var(--s12);
  height: var(--s12);
  -webkit-margin-after: var(--s2);
          margin-block-end: var(--s2);
  border-radius: var(--r-lg);
  background: var(--kees-primary-light);
  color: var(--kees-primary);
}

.demall_entryTitle__6F8TF {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--kees-text);
}

.demall_entryBody__YDFy_ {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--kees-text-3);
}

/*
 * The "still being built" block was removed in 19D.2B-R4 with the copy behind
 * it: this page now carries search, categories and the product rails, so a note
 * saying they were coming had become false.
 */

/* ── Back to the platform page ────────────────────────────────────────── */

.demall_backRow__L_Hbp {
  display: flex;
  justify-content: center;
  -webkit-margin-before: var(--s10);
          margin-block-start: var(--s10);
}

.demall_backLink__51GWx {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding-inline: var(--s6);
  border: 1.5px solid var(--kees-primary);
  border-radius: var(--r-md);
  color: var(--kees-primary);
  font-size: var(--t-base);
  font-weight: 700;
  transition: background var(--dur-fast) var(--ease-out);
}

.demall_backLink__51GWx:hover { background: var(--kees-primary-light); }

@media (max-width: 40rem) {
  .demall_inner__9Owwm { padding-inline: var(--s4); }
  .demall_hero__pRwbE { padding-block: var(--s16); }
}

@media (prefers-reduced-motion: reduce) {
  .demall_entry__ygAne:hover { transform: none; }
}

