/* Abrar Enterprices Ltd — storefront
   Single stylesheet. Tokens first, then layout top-to-bottom.
   Light theme only: the page does not follow the visitor's dark mode. */

:root {
  color-scheme: light;

  --bg:        #ffffff;
  --surface:   #f6f8fb;
  --surface-2: #eef2f8;
  --fg:        #0d1526;
  --fg-soft:   #46536b;
  --muted:     #6b7890;
  --line:      #e2e8f1;
  --line-soft: #edf1f7;

  --accent:      #1d4ed8;
  --accent-hi:   #2563eb;
  --accent-weak: #eaf0ff;
  --accent-fg:   #ffffff;

  --ok:      #0f7b4f;
  --ok-weak: #e6f6ee;
  --warn:    #9a5b00;
  --warn-weak:#fdf3e2;

  --media-bg:   #f2f4f8;

  --shadow-1: 0 1px 2px rgba(13, 21, 38, .06), 0 1px 3px rgba(13, 21, 38, .04);
  --shadow-2: 0 4px 12px rgba(13, 21, 38, .07), 0 2px 4px rgba(13, 21, 38, .04);
  --shadow-3: 0 18px 48px rgba(13, 21, 38, .16);

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 22px;

  --wrap: 1200px;
  --header-h: 68px;
}



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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 15px/1.6 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 { letter-spacing: -.021em; line-height: 1.2; margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-fg);
  padding: 12px 18px; border-radius: 0 0 var(--r) 0; font-weight: 600;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent-hi); outline-offset: 2px; border-radius: 4px; }

/* ─── Utility strip — company identity, occurrence 1 of 3 ────────────── */

.topbar {
  background: var(--fg);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .005em;
}

.topbar .wrap {
  min-height: 40px;
  display: flex; align-items: center; gap: 12px 26px; flex-wrap: wrap;
  padding-block: 8px;
}
.topbar-id { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; min-width: 0; }
.topbar-id b {
  font-weight: 650; letter-spacing: .055em; font-size: 12px; white-space: nowrap;
}
.topbar-id span { color: rgba(255, 255, 255, .68); }
.topbar-id .sep { color: rgba(255, 255, 255, .3); }
.topbar-links { margin-left: auto; display: flex; gap: 20px; }
.topbar-links a { color: rgba(255, 255, 255, .74); text-decoration: none; white-space: nowrap; }
.topbar-links a:hover { color: #fff; }
@media (max-width: 860px) { .topbar-links { display: none; } }

/* ─── Header ─────────────────────────────────────────────────────────── */

.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 16px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.14; }
.brand-txt b { font-size: 15.5px; font-weight: 680; letter-spacing: -.012em; }
.brand-txt small { font-size: 10.5px; color: var(--muted); letter-spacing: .085em; font-weight: 600; }

.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a {
  padding: 8px 12px; border-radius: var(--r-sm); text-decoration: none;
  color: var(--fg-soft); font-size: 14px; font-weight: 520;
}
.nav a:hover { background: var(--surface-2); color: var(--fg); }
@media (max-width: 1000px) { .nav { display: none; } }

.search {
  margin-left: auto; position: relative; flex: 1 1 260px; max-width: 340px; min-width: 0;
}
.search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search input {
  width: 100%; height: 40px; padding: 0 14px 0 38px;
  background: var(--surface); color: var(--fg);
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 14px;
}
.search input::placeholder { color: var(--muted); }
.search input:focus { border-color: var(--accent); background: var(--bg); outline: none;
  box-shadow: 0 0 0 3px var(--accent-weak); }
@media (max-width: 620px) { .search { flex-basis: 140px; } }

.cart-btn {
  flex: none; position: relative; display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); color: var(--fg); font: inherit; font-size: 14px; font-weight: 560;
  cursor: pointer;
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-btn .label { }
@media (max-width: 760px) { .cart-btn .label { display: none; } .cart-btn { padding-inline: 12px; } }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px;
  background: var(--accent); color: var(--accent-fg);
  font-size: 11.5px; font-weight: 700; line-height: 20px; text-align: center;
}
.cart-count[hidden] { display: none; }

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

.hero { padding: 60px 0 46px; border-bottom: 1px solid var(--line-soft); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 940px) { .hero { padding: 42px 0 34px; } .hero .wrap { grid-template-columns: 1fr; gap: 34px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px 5px 8px; border-radius: 999px;
  background: var(--accent-weak); color: var(--accent);
  font-size: 12px; font-weight: 640; letter-spacing: .01em;
}
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.hero h1 { margin: 18px 0 0; font-size: clamp(32px, 4.6vw, 50px); font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { margin: 16px 0 0; font-size: 16.5px; color: var(--fg-soft); max-width: 52ch; }

.hero-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 11px;
  border: 1px solid transparent; font: inherit; font-size: 14.5px; font-weight: 600;
  text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { background: var(--accent-hi); }
.btn-ghost { background: var(--bg); color: var(--fg); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.hero-stats {
  margin-top: 34px; display: flex; gap: 30px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.hero-stats div b { display: block; font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.hero-stats div span { font-size: 12.5px; color: var(--muted); }

.hero-art {
  aspect-ratio: 4 / 3; border-radius: var(--r-xl);
  background: var(--media-bg); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 10px; padding: 12px; box-shadow: var(--shadow-2);
}
.hero-art > figure {
  margin: 0; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--bg);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Section furniture ──────────────────────────────────────────────── */

.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(23px, 2.6vw, 29px); font-weight: 690; }
.section-head p { margin: 7px 0 0; color: var(--muted); max-width: 58ch; }
.section-head .count { margin-left: auto; font-size: 13.5px; color: var(--muted); }

/* ─── Category filter ────────────────────────────────────────────────── */

.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 26px; }
.chip {
  height: 38px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg); color: var(--fg-soft);
  font: inherit; font-size: 13.5px; font-weight: 560; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip[aria-pressed="true"] {
  background: var(--accent); border-color: var(--accent); color: var(--accent-fg);
}
.chip .n { font-size: 11.5px; opacity: .62; font-variant-numeric: tabular-nums; }

/* ─── Product grid ───────────────────────────────────────────────────── */

.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
}

.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg); overflow: hidden;
  transition: border-color .16s, box-shadow .16s, transform .16s;
}
.card:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: var(--shadow-2); transform: translateY(-2px); }

.card-media {
  position: relative; aspect-ratio: 4 / 3; background: var(--media-bg);
  overflow: hidden; border-bottom: 1px solid var(--line-soft);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}
.card:hover .card-media img { transform: scale(1.045); }

.tag {
  position: absolute; z-index: 2; top: 10px; left: 10px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .045em; text-transform: uppercase;
}
.tag-new  { background: var(--accent); color: var(--accent-fg); }
.tag-deal { background: var(--warn-weak); color: var(--warn); border: 1px solid color-mix(in srgb, var(--warn) 26%, transparent); }
.tag-low  { background: var(--surface-2); color: var(--fg-soft); border: 1px solid var(--line); }

.card-body { padding: 15px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11px; font-weight: 650; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted); }
.card-body h3 { margin: 6px 0 0; font-size: 15px; font-weight: 620; line-height: 1.34; }
.card-spec { margin: 8px 0 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

.card-meta { margin-top: 11px; display: flex; align-items: center; gap: 9px; font-size: 12.5px; }
.stars { color: var(--warn); letter-spacing: .5px; font-size: 12px; }
.card-meta .rc { color: var(--muted); }

.card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: flex-end; gap: 10px; }
.price { display: flex; flex-direction: column; line-height: 1.2; }
.price b { font-size: 19px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.price s { font-size: 12.5px; color: var(--muted); }
.price small { font-size: 11px; color: var(--muted); }

.add {
  margin-left: auto; height: 38px; padding: 0 15px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface); color: var(--fg);
  font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.add:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.add.done { background: var(--ok-weak); border-color: color-mix(in srgb, var(--ok) 40%, transparent); color: var(--ok); }

.empty {
  padding: 60px 20px; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--r-lg);
}
.empty b { display: block; color: var(--fg); font-size: 16px; margin-bottom: 6px; }

/* ─── Trust row ──────────────────────────────────────────────────────── */

.trust { background: var(--surface); border-block: 1px solid var(--line); padding: 34px 0; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 900px) { .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 480px) { .trust .wrap { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: 13px; }
.trust-item .ic {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-weak); color: var(--accent); display: grid; place-items: center;
}
.trust-item b { display: block; font-size: 14px; font-weight: 620; }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ─── Company panel — occurrence 2 of 3 ──────────────────────────────── */

.company { }
.company-card {
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr;
  box-shadow: var(--shadow-1);
}
@media (max-width: 880px) { .company-card { grid-template-columns: 1fr; } }

.company-main { padding: 38px 38px 34px; }
@media (max-width: 560px) { .company-main { padding: 28px 22px; } }
.company-main h2 { font-size: clamp(23px, 2.6vw, 30px); font-weight: 690; }
.company-main > p { margin: 14px 0 0; color: var(--fg-soft); max-width: 54ch; }

.registered {
  margin-top: 26px; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  border-left: 3px solid var(--accent);
}
.registered .lbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.registered .nm {
  margin: 9px 0 0; font-size: clamp(19px, 2.2vw, 23px); font-weight: 700;
  letter-spacing: -.014em; line-height: 1.25;
}
.registered address {
  margin: 8px 0 0; font-style: normal; font-size: 15px; line-height: 1.65; color: var(--fg-soft);
  max-width: 34ch;
}
.registered .cta { margin-top: 18px; display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; }
.registered .cta a { color: var(--accent); text-decoration: none; font-weight: 570; }
.registered .cta a:hover { text-decoration: underline; }

.company-side {
  background: var(--surface); border-left: 1px solid var(--line);
  padding: 38px 34px; display: flex; flex-direction: column; gap: 4px;
}
@media (max-width: 880px) { .company-side { border-left: 0; border-top: 1px solid var(--line); padding: 30px 24px; } }
.company-side h3 { font-size: 13px; font-weight: 700; letter-spacing: .075em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fact { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.fact:last-child { border-bottom: 0; }
.fact dt { flex: none; width: 118px; color: var(--muted); }
.fact dd { margin: 0; color: var(--fg); font-weight: 540; }

/* ─── Footer — occurrence 3 of 3 ─────────────────────────────────────── */

.footer { background: var(--surface); border-top: 1px solid var(--line); margin-top: 20px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding: 52px 0 40px;
}
@media (max-width: 940px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-name { font-size: 15.5px; font-weight: 700; letter-spacing: .01em; }
.footer-brand address {
  margin: 8px 0 0; font-style: normal; font-size: 14px; line-height: 1.7;
  color: var(--fg-soft); max-width: 30ch;
}
.footer-brand .contact { margin: 16px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.9; }
.footer-brand .contact a { color: var(--accent); text-decoration: none; }
.footer-brand .contact a:hover { text-decoration: underline; }

.footer-col h4 {
  margin: 0 0 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .085em;
  text-transform: uppercase; color: var(--muted);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 14px; color: var(--fg-soft); text-decoration: none; }
.footer-col a:hover { color: var(--accent); }

.footer-legal {
  border-top: 1px solid var(--line); padding: 20px 0 30px;
  display: flex; gap: 12px 26px; flex-wrap: wrap; align-items: center;
  font-size: 12.5px; color: var(--muted);
}
.footer-legal .pay { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.footer-legal .pay span {
  padding: 4px 9px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--bg); font-size: 10.5px; font-weight: 650; letter-spacing: .05em; color: var(--fg-soft);
}

/* ─── Cart drawer ────────────────────────────────────────────────────── */

.scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6, 11, 20, .5); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 100%);
  background: var(--bg); border-left: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .24s cubic-bezier(.22, .61, .36, 1);
}
.drawer.open { transform: none; }

.drawer-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 17px; font-weight: 660; }
.drawer-head .n { font-size: 13px; color: var(--muted); }
.icon-btn {
  margin-left: auto; width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--line); background: var(--bg); color: var(--fg-soft);
  display: grid; place-items: center; cursor: pointer;
}
.icon-btn:hover { background: var(--surface-2); color: var(--fg); }

.drawer-body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.drawer-empty { padding: 70px 10px; text-align: center; color: var(--muted); }
.drawer-empty svg { color: var(--line); margin-bottom: 14px; }
.drawer-empty b { display: block; color: var(--fg); font-size: 15px; margin-bottom: 5px; }

.line {
  display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line-soft);
}
.line-media {
  flex: none; width: 62px; height: 62px; border-radius: 10px;
  background: var(--media-bg); border: 1px solid var(--line-soft);
  overflow: hidden;
}
.line-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.line-info { flex: 1; min-width: 0; }
.line-info b { display: block; font-size: 13.8px; font-weight: 590; line-height: 1.35; }
.line-info .u { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

.qty { margin-top: 9px; display: flex; align-items: center; gap: 2px; }
.qty button {
  width: 26px; height: 26px; border: 1px solid var(--line); background: var(--bg);
  color: var(--fg); font: inherit; font-size: 15px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.qty button:first-child { border-radius: 7px 0 0 7px; }
.qty button:last-of-type { border-radius: 0 7px 7px 0; }
.qty button:hover { background: var(--surface-2); }
.qty span {
  min-width: 32px; height: 26px; border-block: 1px solid var(--line);
  display: grid; place-items: center; font-size: 13px; font-variant-numeric: tabular-nums;
}
.qty .rm { margin-left: auto; border: 0; background: none; color: var(--muted);
  font-size: 12.5px; cursor: pointer; padding: 0 2px; width: auto; }
.qty .rm:hover { color: #d64545; background: none; text-decoration: underline; }

.line-total { font-size: 14px; font-weight: 640; font-variant-numeric: tabular-nums; white-space: nowrap; }

.drawer-foot { border-top: 1px solid var(--line); padding: 16px 20px 20px; background: var(--surface); }
.sum { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--fg-soft); margin-bottom: 7px; }
.sum.total {
  margin: 12px 0 14px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 17px; font-weight: 700; color: var(--fg);
}
.sum b, .sum span { font-variant-numeric: tabular-nums; }
.drawer-foot .btn { width: 100%; }
.drawer-note { margin: 12px 0 0; font-size: 11.5px; color: var(--muted); line-height: 1.55; text-align: center; }

/* ─── Enquiry summary (post-checkout view inside drawer) ─────────────── */

.enquiry { padding: 4px 0 10px; }
.enquiry h3 { font-size: 16px; font-weight: 660; margin-bottom: 8px; }
.enquiry p { font-size: 13.5px; color: var(--fg-soft); margin: 0 0 14px; }
.enquiry .ref {
  display: inline-block; padding: 5px 11px; border-radius: 7px;
  background: var(--accent-weak); color: var(--accent);
  font-size: 13px; font-weight: 650; font-variant-numeric: tabular-nums; margin-bottom: 14px;
}
.enquiry pre {
  margin: 0 0 14px; padding: 14px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); font-size: 12.5px; line-height: 1.65; color: var(--fg-soft);
  white-space: pre-wrap; word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  max-height: 240px; overflow: auto;
}

/* ─── Toast ──────────────────────────────────────────────────────────── */

.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 120;
  transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
  padding: 11px 18px; border-radius: 11px;
  background: var(--fg); color: var(--bg);
  font-size: 13.5px; font-weight: 560; box-shadow: var(--shadow-3);
  transition: opacity .18s, transform .18s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ─── Narrow screens ─────────────────────────────────────────────────
   Below 560px the header has to fit a mark, a search field and the
   basket. The wordmark is the part that can go: the company name sits
   in the strip directly above it either way. */

@media (max-width: 560px) {
  .topbar-id .sep { display: none; }
  .topbar-id { gap: 4px 9px; }
  .brand-txt { display: none; }
  .search { flex-basis: auto; }
  .footer-brand .brand-txt { display: flex; }
}
