:root {
  --isoko-blue: #073f98;
  --isoko-blue-2: #0b57c7;
  --isoko-navy: #071d49;
  --isoko-orange: #ff6700;
  --isoko-orange-2: #ff8a1c;
  --isoko-green: #10a64a;
  --isoko-gold: #ffbd22;
  --isoko-red: #da2e4f;
  --ink: #111827;
  --muted: #667085;
  --line: #e3e8f2;
  --surface: #ffffff;
  --soft: #f4f6fa;
  --soft-blue: #eef5ff;
  --shadow-sm: 0 4px 18px rgba(8, 30, 73, .08);
  --shadow-md: 0 14px 36px rgba(8, 30, 73, .12);
  --shadow-lg: 0 30px 70px rgba(6, 29, 73, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1540px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--soft); font-size: 17px; line-height: 1.55; text-rendering: optimizeLegibility; }
body.auth-body, body.admin-body { background: #f3f6fb; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
input, select, textarea { color: var(--ink); }
h1, h2, h3, h4, p { margin-top: 0; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 99999; transform: translateY(-150%); background: #fff; padding: 12px 18px; border-radius: 9px; box-shadow: var(--shadow-md); }
.skip-link:focus { transform: none; }
.mobile-only { display: none !important; }
[hidden] { display: none !important; }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; font-size: 15px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button--large { min-height: 54px; padding-inline: 26px; font-size: 16px; }
.button--wide { width: 100%; }
.button--primary, .button--dark { color: #fff; background: var(--isoko-blue); box-shadow: 0 9px 22px rgba(7, 63, 152, .22); }
.button--primary:hover, .button--dark:hover { background: #052f75; }
.button--orange { color: #fff; background: linear-gradient(135deg, var(--isoko-orange), var(--isoko-orange-2)); box-shadow: 0 10px 24px rgba(255, 103, 0, .25); }
.button--orange:hover { box-shadow: 0 14px 30px rgba(255, 103, 0, .33); }
.button--ghost { color: var(--isoko-blue); background: #fff; border-color: #d8e1ef; }
.button--ghost:hover { border-color: var(--isoko-blue); }
.button--white-outline { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.button--white-outline:hover { background: #fff; color: var(--isoko-blue); }
.button--light { background: #fff; color: var(--isoko-blue); }
.button--glass { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.12); }
.icon-button { width: 44px; height: 44px; border: 0; display: grid; place-items: center; border-radius: 12px; background: transparent; color: inherit; }
.icon-button:hover { background: rgba(7,63,152,.08); }

/* Header */
.top-commercial-bar { background: var(--isoko-navy); color: #fff; font-size: 13px; font-weight: 700; }
.top-commercial-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-commercial-bar__inner > div { display: flex; align-items: center; gap: 8px; }
.top-commercial-bar__inner a:hover { color: #ffb97d; }
.top-commercial-bar__center { gap: 20px !important; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.top-commercial-bar__center strong:nth-child(1) { color: #93b8ff; }
.top-commercial-bar__center strong:nth-child(2) { color: #ff9a55; }
.top-commercial-bar__center strong:nth-child(3) { color: #75da9c; }
.market-header { position: sticky; top: 0; z-index: 900; background: #fff; box-shadow: 0 3px 14px rgba(8, 30, 73, .08); }
.market-header__main { min-height: 92px; display: grid; grid-template-columns: 245px minmax(340px, 1fr) auto; align-items: center; gap: 28px; }
.market-logo { display: flex; align-items: center; width: 220px; height: 68px; overflow: hidden; }
.market-logo img { width: 100%; height: 100%; object-fit: contain; }
.header-search { position: relative; min-width: 0; }
.header-search__form { height: 58px; display: grid; grid-template-columns: 28px minmax(0,1fr) 34px auto; align-items: center; gap: 9px; padding: 0 6px 0 19px; border: 2px solid #dfe5ef; border-radius: 16px; background: #f8f9fc; transition: border .18s ease, box-shadow .18s ease, background .18s ease; }
.header-search__form:focus-within { background: #fff; border-color: var(--isoko-blue-2); box-shadow: 0 0 0 4px rgba(11,87,199,.10); }
.header-search__form > svg { color: #667085; }
.header-search__form input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; font-size: 16px; }
.header-search__form input::placeholder { color: #98a2b3; }
.search-clear { width: 30px; height: 30px; display: none; place-items: center; border: 0; border-radius: 50%; background: #e9edf4; color: #667085; }
.header-search.has-value .search-clear { display: grid; }
.header-search__submit { min-width: 120px; height: 46px; padding: 0 22px; border: 0; border-radius: 12px; background: var(--isoko-orange); color: #fff; font-weight: 800; white-space: nowrap; }
.header-search__submit:hover { background: #e95d00; }
.search-results { position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 1000; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
.search-results__header { padding: 14px 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.search-results__header a { color: var(--isoko-blue); }
.search-result { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: 13px; align-items: center; padding: 11px 16px; border-bottom: 1px solid #edf0f5; }
.search-result:hover { background: #f5f8ff; }
.search-result img { width: 54px; height: 54px; object-fit: contain; border-radius: 9px; background: #f5f7fb; }
.search-result span { min-width: 0; }
.search-result strong, .search-result small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-result strong { font-size: 14px; }
.search-result small { color: var(--muted); font-size: 12px; }
.search-result b { color: var(--isoko-blue); font-size: 14px; }
.search-no-result { display: block; padding: 20px; font-weight: 700; color: var(--isoko-blue); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action { display: flex; align-items: center; gap: 10px; min-width: 112px; padding: 8px 9px; border-radius: 12px; }
.header-action:hover { background: #f2f6fc; color: var(--isoko-blue); }
.header-action__icon { position: relative; display: grid; place-items: center; color: var(--isoko-navy); }
.header-action__icon b { position: absolute; top: -8px; right: -9px; min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; border-radius: 11px; background: var(--isoko-orange); color: #fff; font-size: 11px; }
.header-action span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.header-action small { color: #98a2b3; font-size: 11px; font-weight: 700; }
.header-action strong { margin-top: 3px; font-size: 14px; white-space: nowrap; }
.market-header__nav { border-top: 1px solid #edf0f5; }
.market-nav-row { min-height: 52px; display: flex; align-items: center; gap: 28px; }
.market-nav-row > a { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 750; white-space: nowrap; }
.market-nav-row > a:hover { color: var(--isoko-orange); }
.market-nav-row__flash { color: var(--isoko-red); }
.market-nav-row__spacer { flex: 1; }
.mega-trigger-wrap { align-self: stretch; display: flex; }
.mega-trigger { min-width: 240px; display: flex; align-items: center; gap: 10px; border: 0; padding: 0 22px; background: var(--isoko-blue); color: #fff; font-weight: 800; }
.mega-trigger svg:last-child { margin-left: auto; transition: transform .2s; }
.mega-trigger.is-open svg:last-child { transform: rotate(180deg); }
.mega-menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.mega-menu__grid { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding-block: 28px; }
.mega-menu__categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 30px; }
.mega-column { display: flex; flex-direction: column; gap: 8px; }
.mega-column > a:not(.mega-column__title) { padding-left: 43px; color: var(--muted); font-size: 14px; }
.mega-column > a:hover { color: var(--isoko-orange); }
.mega-column__title { display: flex; align-items: center; gap: 10px; font-weight: 850; color: var(--isoko-navy); }
.mega-column__title span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; }
.mega-feature { min-height: 250px; position: relative; overflow: hidden; display: flex; align-items: flex-end; border-radius: 20px; padding: 24px; background: linear-gradient(135deg, #0c4db1, #07265e); color: #fff; }
.mega-feature div { position: relative; z-index: 2; display: flex; flex-direction: column; }
.mega-feature small { color: #b9d2ff; font-weight: 700; }
.mega-feature strong { font-size: 28px; line-height: 1.1; margin: 6px 0 12px; }
.mega-feature em { font-style: normal; font-weight: 800; color: #ffb277; }
.mega-feature img { position: absolute; right: -24px; top: 6px; width: 185px; height: 185px; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(0,0,0,.22)); }

/* Mobile menu */
.mobile-nav-backdrop { position: fixed; inset: 0; z-index: 1100; background: rgba(5,20,49,.52); opacity: 0; pointer-events: none; transition: opacity .25s; }
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav { position: fixed; left: 0; top: 0; bottom: 0; z-index: 1200; width: min(390px, 92vw); padding: 18px; background: #fff; transform: translateX(-105%); transition: transform .28s ease; overflow-y: auto; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mobile-nav__header a { width: 190px; height: 58px; overflow: hidden; }
.mobile-nav__header img { width: 100%; height: 100%; object-fit: contain; }
.mobile-search { display: flex; align-items: center; gap: 10px; margin: 18px 0; padding: 0 14px; height: 50px; border: 1px solid var(--line); border-radius: 13px; background: #f7f8fb; }
.mobile-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav__all, .mobile-category > a { min-height: 48px; display: flex; align-items: center; gap: 10px; font-weight: 800; border-bottom: 1px solid #edf0f5; }
.mobile-nav__all svg:last-child, .mobile-category > a svg { margin-left: auto; }
.mobile-category div { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; padding: 10px 12px 16px; }
.mobile-category div a { color: var(--muted); font-size: 14px; }
.mobile-nav__footer { margin-top: 20px; padding: 16px; border-radius: 14px; background: var(--soft-blue); display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.mobile-nav__footer a, .mobile-nav__footer span { display: flex; gap: 9px; align-items: center; }

/* Homepage */
.market-home { background: #f2f4f8; }
.market-hero-section { padding: 24px 0 8px; background: linear-gradient(180deg, #eef4ff 0, #f2f4f8 100%); }
.market-hero-layout { display: grid; grid-template-columns: 260px minmax(0,1fr) 280px; gap: 18px; align-items: stretch; }
.market-category-panel, .market-service-panel > * { background: #fff; border: 1px solid #e7ebf2; border-radius: 16px; box-shadow: var(--shadow-sm); }
.market-category-panel { overflow: hidden; }
.market-category-panel__title { min-height: 58px; display: flex; align-items: center; gap: 10px; padding: 0 18px; background: var(--isoko-blue); color: #fff; font-size: 15px; }
.market-category-panel nav { padding: 8px; }
.market-category-panel nav a { min-height: 52px; display: grid; grid-template-columns: 38px minmax(0,1fr) 18px; align-items: center; gap: 9px; padding: 0 10px; border-radius: 11px; font-size: 14px; }
.market-category-panel nav a:hover { background: #f2f6fc; color: var(--isoko-blue); transform: translateX(2px); }
.market-category-panel nav a > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--category-accent); background: color-mix(in srgb, var(--category-accent) 12%, white); }
.market-category-panel nav a strong { font-weight: 750; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.market-category-panel__all { margin-top: 5px; color: var(--isoko-orange); border-top: 1px solid #edf0f5; }
.market-hero-banner { min-height: 480px; position: relative; overflow: hidden; border-radius: 22px; background: radial-gradient(circle at 83% 20%, rgba(255,255,255,.18), transparent 26%), linear-gradient(135deg, #07275f 0%, #0a54bd 58%, #0875d9 100%); box-shadow: var(--shadow-md); color: #fff; }
.market-hero-banner::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; right: -100px; bottom: -150px; background: var(--isoko-orange); opacity: .95; }
.market-hero-banner__content { position: relative; z-index: 4; width: 58%; padding: 50px 0 38px 48px; }
.market-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.10); color: #d7e8ff; font-size: 13px; font-weight: 800; }
.market-hero-banner h1 { margin-bottom: 18px; font-size: clamp(39px, 3.5vw, 62px); line-height: .98; letter-spacing: -.045em; }
.market-hero-banner h1 em { color: #ff9c4f; font-style: normal; }
.market-hero-banner__content > p:not(.market-kicker) { max-width: 650px; color: #d8e6fb; font-size: 17px; line-height: 1.55; }
.market-hero-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.market-hero-banner__proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #d8e6fb; font-size: 12px; font-weight: 700; }
.market-hero-banner__proof span { display: inline-flex; align-items: center; gap: 7px; }
.market-hero-banner__visual { position: absolute; inset: 0 0 0 48%; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.hero-orbit--one { width: 410px; height: 410px; right: 10px; top: 22px; }
.hero-orbit--two { width: 280px; height: 280px; right: 75px; top: 88px; }
.hero-product-card { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 28px 45px rgba(0,0,0,.20); backdrop-filter: blur(12px); }
.hero-product-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-product-card--laptop { right: 42px; bottom: 34px; width: 285px; height: 220px; transform: rotate(-3deg); }
.hero-product-card--phone { right: 265px; top: 66px; width: 145px; height: 180px; transform: rotate(-7deg); }
.hero-product-card--bag { right: 25px; top: 40px; width: 145px; height: 150px; transform: rotate(6deg); }
.hero-discount-badge { position: absolute; right: 180px; top: 195px; z-index: 4; width: 122px; height: 122px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid rgba(255,255,255,.72); border-radius: 50%; background: var(--isoko-orange); color: #fff; box-shadow: 0 16px 28px rgba(116,49,0,.25); transform: rotate(-8deg); }
.hero-discount-badge small { font-size: 11px; font-weight: 800; }
.hero-discount-badge strong { font-size: 28px; line-height: 1; }
.hero-discount-badge span { font-size: 10px; }
.market-service-panel { display: grid; grid-template-rows: auto auto 1fr; gap: 12px; }
.market-service-card { min-height: 92px; display: grid; grid-template-columns: 46px minmax(0,1fr) 18px; align-items: center; gap: 12px; padding: 16px; }
.market-service-card:hover { border-color: #bfd0ec; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.market-service-card > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--soft-blue); color: var(--isoko-blue); }
.market-service-card strong, .market-service-card small { display: block; }
.market-service-card strong { font-size: 15px; }
.market-service-card small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.market-mini-promo { position: relative; min-height: 245px; overflow: hidden; padding: 24px; background: linear-gradient(145deg, #ff8a1c, #ff5a00) !important; color: #fff; }
.market-mini-promo div { position: relative; z-index: 2; width: 70%; }
.market-mini-promo small, .market-mini-promo strong, .market-mini-promo em { display: block; }
.market-mini-promo small { text-transform: uppercase; font-weight: 800; letter-spacing: .08em; opacity: .85; }
.market-mini-promo strong { margin: 9px 0 15px; font-size: 25px; line-height: 1.12; }
.market-mini-promo em { font-style: normal; font-size: 13px; font-weight: 800; }
.market-mini-promo img { position: absolute; width: 155px; height: 155px; object-fit: contain; right: -15px; bottom: -2px; filter: drop-shadow(0 16px 22px rgba(114,37,0,.25)); }
.market-shortcuts { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; padding-block: 18px 8px; }
.market-shortcuts > a { min-height: 94px; display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; column-gap: 13px; align-content: center; padding: 13px 16px; border: 1px solid #e5e9f1; border-radius: 15px; background: #fff; box-shadow: 0 3px 12px rgba(7,31,75,.05); }
.market-shortcuts > a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.market-shortcuts strong { align-self: end; font-size: 14px; }
.market-shortcuts small { color: var(--muted); font-size: 11px; }
.shortcut-icon { grid-row: 1 / 3; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; }
.shortcut-icon--orange { background: #fff1e7; color: var(--isoko-orange); }
.shortcut-icon--blue { background: #eaf2ff; color: var(--isoko-blue-2); }
.shortcut-icon--green { background: #e9f9ef; color: var(--isoko-green); }
.shortcut-icon--navy { background: #e9eef7; color: var(--isoko-navy); }
.shortcut-icon--gold { background: #fff7dc; color: #b87900; }
.market-section { padding: 16px 0; }
.market-section-card { overflow: hidden; border: 1px solid #e4e8ef; border-radius: 18px; background: #fff; box-shadow: 0 6px 22px rgba(8,30,73,.06); }
.market-section-header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 22px; border-bottom: 1px solid #edf0f5; }
.market-section-header > div:first-child { display: flex; flex-direction: column; }
.market-section-header p { margin: 0 0 2px; color: var(--isoko-orange); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.market-section-header h2 { margin: 0; font-size: clamp(22px,2vw,29px); line-height: 1.15; letter-spacing: -.02em; }
.market-section-header > a { display: inline-flex; align-items: center; gap: 6px; color: var(--isoko-blue); font-size: 14px; font-weight: 800; white-space: nowrap; }
.market-section-header--flash { min-height: 68px; background: linear-gradient(100deg, #b8173a, #dc2e50); color: #fff; border: 0; }
.market-section-header--flash > div:first-child { flex-direction: row; align-items: center; gap: 10px; }
.market-section-header--flash h2 { font-size: 24px; }
.market-section-header--flash a { color: #fff; }
.flash-countdown { display: flex !important; flex-direction: row !important; align-items: center; gap: 12px; }
.flash-countdown small { color: #ffd9e1; font-weight: 700; }
.flash-countdown strong { font-size: 20px; letter-spacing: .03em; }
.market-section-header--blue { border-top: 5px solid var(--isoko-blue); }
.market-section-header--green { border-top: 5px solid var(--isoko-green); }
.market-section-header--orange { border-top: 5px solid var(--isoko-orange); }
.market-section-header--rose { border-top: 5px solid #d87078; }
.market-section-header--center { justify-content: center; text-align: center; }
.market-product-rail { display: grid; gap: 0; }
.market-product-rail--six { grid-template-columns: repeat(6, minmax(0,1fr)); }
.market-product-rail .product-card { border-right: 1px solid #edf0f5; }
.market-product-rail .product-card:last-child { border-right: 0; }
.market-category-showcase { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; padding: 25px; }
.market-category-showcase a { text-align: center; }
.market-category-showcase a:hover div { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.market-category-showcase a > div { aspect-ratio: 1.18; position: relative; overflow: hidden; display: grid; place-items: center; border-radius: 22px; background: color-mix(in srgb, var(--category-accent) 12%, #fff); transition: .2s ease; }
.market-category-showcase img { width: 92%; height: 92%; object-fit: contain; }
.market-category-showcase strong { display: block; margin-top: 12px; font-size: 16px; }
.market-category-showcase small { color: var(--muted); font-size: 12px; }
.market-editorial-banner { padding: 18px 0; }
.market-editorial-banner__inner { min-height: 390px; position: relative; overflow: hidden; display: flex; align-items: center; border-radius: 26px; padding: 48px 55px; background: linear-gradient(115deg, #061c47 0%, #073f98 60%, #0d66d7 100%); color: #fff; box-shadow: var(--shadow-md); }
.market-editorial-banner__inner > div:first-child { position: relative; z-index: 3; width: 53%; }
.market-editorial-banner p { color: #ffad70; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.market-editorial-banner h2 { margin-bottom: 28px; font-size: clamp(34px, 4vw, 58px); line-height: 1.02; letter-spacing: -.04em; }
.market-editorial-products { position: absolute; z-index: 2; right: 42px; bottom: 16px; width: 50%; height: 92%; display: flex; align-items: flex-end; justify-content: flex-end; }
.market-editorial-products img { width: 33%; height: 72%; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(0,0,0,.30)); }
.market-editorial-products img:nth-child(1) { transform: rotate(-8deg) translateX(45px); }
.market-editorial-products img:nth-child(2) { transform: translateY(-35px); }
.market-editorial-products img:nth-child(3) { transform: rotate(8deg) translateX(-38px); }
.market-editorial-banner__circle { position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -40px; top: -70px; background: var(--isoko-orange); opacity: .85; }
.market-dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.market-dual-card { min-height: 315px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 36px; border-radius: 22px; color: #fff; box-shadow: var(--shadow-sm); }
.market-dual-card > div { position: relative; z-index: 2; width: 52%; }
.market-dual-card p { margin-bottom: 8px; text-transform: uppercase; letter-spacing: .07em; font-size: 12px; font-weight: 850; }
.market-dual-card h2 { font-size: 36px; line-height: 1.05; }
.market-dual-card a { display: inline-flex; align-items: center; gap: 8px; font-weight: 850; }
.market-dual-card img { position: absolute; right: -25px; bottom: -12px; width: 57%; height: 100%; object-fit: contain; }
.market-dual-card--fashion { background: linear-gradient(135deg, #8a3544, #d27380); }
.market-dual-card--beauty { background: linear-gradient(135deg, #0b6550, #19a97b); }
.market-seller-cta { padding: 25px 0; }
.market-seller-cta__inner { min-height: 190px; display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: 30px; padding: 26px 40px; border-radius: 24px; background: linear-gradient(135deg, #fff, #eef5ff); border: 1px solid #dfe9f8; box-shadow: var(--shadow-sm); }
.market-seller-cta__icon { width: 125px; height: 125px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); }
.market-seller-cta__icon img { width: 150%; max-width: none; height: 130%; object-fit: contain; object-position: left center; }
.market-seller-cta p { margin-bottom: 4px; color: var(--isoko-orange); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.market-seller-cta h2 { margin-bottom: 8px; font-size: 30px; }
.market-seller-cta span { color: var(--muted); }
.market-trust-section { padding: 16px 0 40px; }
.market-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.market-trust-grid article { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; padding: 25px; border: 1px solid #e2e7ef; border-radius: 18px; background: #fff; }
.market-trust-grid article > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: var(--soft-blue); color: var(--isoko-blue); }
.market-trust-grid strong { font-size: 17px; }
.market-trust-grid p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }

/* Product cards */
.product-card { position: relative; min-width: 0; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.product-card--grid { border: 1px solid #e4e8ef; border-radius: 16px; overflow: hidden; }
.product-card--grid:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card--compact { padding: 12px; }
.product-card--compact:hover { z-index: 5; box-shadow: 0 12px 28px rgba(8,30,73,.14); }
.product-card__media { position: relative; overflow: hidden; aspect-ratio: 1 / .88; border-radius: 12px; background: linear-gradient(145deg, #f8f9fb, #edf1f6); }
.product-card__media > a { display: block; width: 100%; height: 100%; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .28s ease; }
.product-card:hover .product-card__media img { transform: scale(1.045); }
.product-card__badges { position: absolute; top: 9px; left: 9px; right: 9px; display: flex; justify-content: space-between; gap: 6px; pointer-events: none; }
.product-badge { padding: 5px 8px; border-radius: 7px; background: var(--isoko-blue); color: #fff; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .03em; }
.product-badge--discount { margin-left: auto; background: #fff2e9; color: var(--isoko-orange); font-size: 12px; }
.product-card__favorite { position: absolute; right: 9px; bottom: 9px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #e0e5ee; border-radius: 50%; background: rgba(255,255,255,.94); color: #667085; opacity: 0; transform: translateY(5px); transition: .2s; }
.product-card:hover .product-card__favorite, .product-card__favorite.is-active { opacity: 1; transform: none; }
.product-card__favorite.is-active { color: #d7284d; background: #fff0f3; border-color: #ffc8d5; }
.product-card__quick-actions { position: absolute; left: 9px; right: 9px; bottom: 9px; display: flex; gap: 7px; opacity: 0; transform: translateY(8px); transition: .2s; }
.product-card:hover .product-card__quick-actions { opacity: 1; transform: none; }
.product-card__quick-actions form { flex: 1; }
.product-card__quick-actions button, .product-card__quick-actions > a { height: 40px; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 9px; background: var(--isoko-blue); color: #fff; font-size: 12px; font-weight: 800; }
.product-card__quick-actions button { width: 100%; }
.product-card__quick-actions > a { width: 40px; background: #fff; color: var(--isoko-blue); border: 1px solid #d8e2f1; }
.product-card__content { padding: 15px 16px 18px; }
.product-card--compact .product-card__content { padding: 12px 2px 4px; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .03em; }
.rating { display: inline-flex; align-items: center; gap: 3px; color: #c78200; }
.rating em { color: var(--muted); font-style: normal; }
.product-card h3 { min-height: 46px; margin: 0 0 7px; font-size: 16px; line-height: 1.4; font-weight: 730; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card--compact h3 { min-height: 44px; font-size: 15px; }
.product-card a:hover h3 { color: var(--isoko-blue); }
.product-card__description { min-height: 44px; margin: 0 0 12px; color: var(--muted); font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.product-price { min-width: 0; }
.product-price strong, .product-price del { display: block; }
.product-price strong { color: var(--isoko-navy); font-size: 18px; line-height: 1.2; white-space: nowrap; }
.product-card--compact .product-price strong { font-size: 17px; }
.product-price del { margin-top: 3px; color: #98a2b3; font-size: 12px; }
.stock-dot { display: inline-flex; align-items: center; gap: 5px; color: var(--isoko-green); font-size: 11px; font-weight: 750; }
.stock-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock-dot--low { color: #e67a00; }
.stock-progress { margin-top: 10px; }
.stock-progress span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.stock-progress i { display: block; height: 6px; overflow: hidden; border-radius: 4px; background: #e4e7ec; }
.stock-progress b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--isoko-orange), #ffae39); }
.product-grid { display: grid; gap: 18px; }
.product-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.product-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* Generic content, catalog and product */
.section { padding: 42px 0; }
.section--soft { background: #f4f6fa; }
.section-header { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; margin-bottom: 25px; }
.section-header h2 { margin-bottom: 4px; font-size: 34px; }
.section-header p { margin: 0; color: var(--muted); }
.section-link { display: inline-flex; align-items: center; gap: 7px; color: var(--isoko-blue); font-weight: 800; }
.eyebrow, .admin-eyebrow { margin-bottom: 7px; color: var(--isoko-orange); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.breadcrumbs a:hover { color: var(--isoko-blue); }
.catalog-hero, .page-hero { padding: 45px 0 35px; background: linear-gradient(135deg, #eef5ff, #fff); border-bottom: 1px solid #dfe8f5; }
.catalog-hero h1, .page-hero h1 { margin-bottom: 10px; font-size: clamp(36px,4vw,54px); line-height: 1.05; letter-spacing: -.04em; }
.catalog-hero .container > p:last-of-type, .page-hero p { max-width: 780px; color: var(--muted); font-size: 17px; }
.subcategory-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.subcategory-card { min-width: 190px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 10px; padding: 14px 16px; border: 1px solid #dfe5ef; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.subcategory-card strong { font-size: 14px; }
.subcategory-card span { color: var(--muted); font-size: 11px; }
.subcategory-card svg { grid-column: 2; grid-row: 1/3; color: var(--isoko-blue); }
.catalog-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 24px; align-items: start; }
.catalog-filters { position: sticky; top: 170px; }
.filter-panel { border: 1px solid #e0e5ee; border-radius: 17px; padding: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.filter-panel__header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.filter-panel__header h2 { margin: 0; font-size: 22px; }
.filter-panel__header a { color: var(--isoko-orange); font-size: 12px; font-weight: 800; }
.filter-group { padding: 18px 0; border-bottom: 1px solid #edf0f5; }
.filter-group h3 { margin-bottom: 12px; font-size: 14px; }
.filter-group--last { border: 0; }
.filter-group__title { display: flex; align-items: center; justify-content: space-between; }
.filter-group__title strong { color: var(--isoko-blue); font-size: 12px; }
.filter-search { height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid #dfe4ec; border-radius: 10px; background: #f8f9fb; }
.filter-search input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; font-size: 13px; }
.check-row { min-height: 35px; display: flex; align-items: center; gap: 9px; font-size: 13px; }
.check-row input { accent-color: var(--isoko-blue); }
.check-row em { margin-left: auto; color: var(--muted); font-style: normal; }
.field-select, .sort-select select, .form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #d9e0ea; border-radius: 10px; background: #fff; outline: 0; transition: border .18s, box-shadow .18s; }
.field-select, .form-field input, .form-field select { min-height: 48px; padding: 0 13px; }
.form-field textarea { padding: 13px; resize: vertical; }
.field-select:focus, .sort-select select:focus, .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--isoko-blue-2); box-shadow: 0 0 0 4px rgba(11,87,199,.09); }
.range-input { width: 100%; accent-color: var(--isoko-orange); }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.toggle-row span { display: flex; flex-direction: column; }
.toggle-row small { color: var(--muted); font-size: 11px; }
.toggle-row input { display: none; }
.toggle-row i { width: 42px; height: 24px; position: relative; border-radius: 15px; background: #cfd5df; }
.toggle-row i::after { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; border-radius: 50%; background: #fff; transition: .2s; }
.toggle-row input:checked + i { background: var(--isoko-green); }
.toggle-row input:checked + i::after { left: 21px; }
.catalog-toolbar { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; padding: 0 18px; border: 1px solid #e0e5ee; border-radius: 14px; background: #fff; }
.catalog-toolbar > div { color: var(--muted); font-size: 14px; }
.catalog-toolbar > div strong { color: var(--ink); font-size: 20px; }
.sort-select { display: flex; align-items: center; gap: 8px; }
.sort-select span { color: var(--muted); font-size: 12px; }
.sort-select select { min-height: 40px; padding: 0 34px 0 12px; appearance: none; font-size: 13px; }
.sort-select svg { margin-left: -32px; pointer-events: none; }
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 30px; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #dfe5ee; border-radius: 10px; background: #fff; font-weight: 700; }
.pagination .is-active { background: var(--isoko-blue); color: #fff; border-color: var(--isoko-blue); }
.empty-state { padding: 60px 25px; text-align: center; border: 1px dashed #ccd5e2; border-radius: 18px; background: #fff; }
.empty-state__icon { width: 70px; height: 70px; margin: 0 auto 15px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-blue); color: var(--isoko-blue); }
.empty-state h2 { margin-bottom: 5px; }
.empty-state p { color: var(--muted); }

/* Product details */
.product-page__top { padding: 28px 0 48px; background: #fff; }
.product-main-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr); gap: 45px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 86px minmax(0,1fr); gap: 14px; }
.product-gallery__thumbs { display: flex; flex-direction: column; gap: 10px; }
.product-gallery__thumbs button { width: 84px; height: 84px; border: 1px solid #dfe5ee; border-radius: 11px; background: #f7f9fc; overflow: hidden; }
.product-gallery__thumbs button.is-active { border: 2px solid var(--isoko-blue); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__stage { min-height: 600px; position: relative; overflow: hidden; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(145deg,#f8f9fb,#edf1f6); }
.product-gallery__stage img { width: 92%; height: 92%; object-fit: contain; transition: opacity .15s, transform .4s; }
.product-gallery__stage.is-spinning img { animation: productSpin 2.2s linear infinite; }
@keyframes productSpin { 0% { transform: rotateY(0); } 50% { transform: rotateY(18deg) scale(1.02); } 100% { transform: rotateY(0); } }
.product-gallery__toolbar { position: absolute; right: 13px; top: 13px; display: flex; gap: 8px; }
.product-gallery__toolbar button { min-height: 40px; border: 1px solid #dfe5ee; border-radius: 10px; background: rgba(255,255,255,.94); color: var(--isoko-blue); font-weight: 800; }
.viewer-360-hint { position: absolute; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: var(--isoko-navy); color: #fff; font-size: 12px; }
.purchase-panel { position: sticky; top: 180px; }
.purchase-panel__topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.purchase-panel h1 { margin: 12px 0; font-size: clamp(34px,3.2vw,49px); line-height: 1.05; letter-spacing: -.04em; }
.product-reference { color: var(--muted); font-size: 12px; }
.product-rating-line { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.rating-stars { display: flex; color: #f2a100; }
.purchase-panel__description { color: var(--muted); font-size: 16px; }
.purchase-price { margin: 22px 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.purchase-price strong { color: var(--isoko-navy); font-size: 34px; }
.purchase-price del { color: #98a2b3; }
.purchase-price em { padding: 5px 8px; border-radius: 7px; background: #fff0e6; color: var(--isoko-orange); font-style: normal; font-weight: 850; font-size: 12px; }
.stock-message { display: flex; align-items: center; gap: 9px; margin: 15px 0; padding: 12px 14px; border-radius: 10px; background: #eaf9ef; color: #087635; font-size: 13px; font-weight: 750; }
.variant-group { margin: 22px 0; }
.variant-group > strong { display: block; margin-bottom: 9px; font-size: 14px; }
.variant-options { display: flex; flex-wrap: wrap; gap: 9px; }
.variant-options label { cursor: pointer; }
.variant-options input { position: absolute; opacity: 0; }
.variant-options span { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border: 1px solid #dce2eb; border-radius: 9px; background: #fff; font-size: 13px; }
.variant-options input:checked + span { color: var(--isoko-blue); border: 2px solid var(--isoko-blue); background: #eef5ff; }
.variant-options--color span { width: 42px; padding: 0; border-radius: 50%; }
.purchase-actions { display: grid; grid-template-columns: 125px 1fr; gap: 12px; margin-top: 24px; }
.quantity-control { height: 54px; display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; border: 1px solid #dce2eb; border-radius: 12px; overflow: hidden; }
.quantity-control button { height: 100%; border: 0; background: #f4f6fa; }
.quantity-control input { min-width: 0; width: 100%; text-align: center; border: 0; outline: 0; }
.purchase-reassurance { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.purchase-reassurance > div { display: flex; gap: 9px; padding: 12px; border-radius: 11px; background: #f6f8fb; }
.purchase-reassurance strong, .purchase-reassurance small { display: block; }
.purchase-reassurance strong { font-size: 12px; }
.purchase-reassurance small { color: var(--muted); font-size: 10px; }
.product-value-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 30px; }
.product-value-strip > div { padding: 15px; border: 1px solid #e0e5ee; border-radius: 12px; background: #fff; }
.product-value-strip strong { display: block; font-size: 13px; }
.product-value-strip small { color: var(--muted); font-size: 11px; }
.product-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-description-panel, .specifications-panel { padding: 28px; border: 1px solid #e0e5ee; border-radius: 18px; background: #fff; }
.product-description-panel h2, .specifications-panel h2 { font-size: 27px; }
.product-description-panel p { color: var(--muted); }
.product-description-panel ul { padding-left: 20px; }
.specifications-panel dl { margin: 0; }
.specifications-panel dl div { display: grid; grid-template-columns: 42% 1fr; gap: 15px; padding: 12px 0; border-bottom: 1px solid #edf0f5; }
.specifications-panel dt { color: var(--muted); }
.specifications-panel dd { margin: 0; font-weight: 700; }

/* Cart and checkout */
.cart-page, .checkout-page, .simple-page { padding-bottom: 50px; }
.page-hero--compact { padding-block: 32px; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: 24px; align-items: start; }
.cart-lines, .checkout-card, .cart-summary, .checkout-summary { border: 1px solid #e0e5ee; border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.cart-page-line { display: grid; grid-template-columns: 120px minmax(0,1fr) auto; gap: 18px; align-items: center; padding: 20px; border-bottom: 1px solid #edf0f5; }
.cart-page-line:last-child { border-bottom: 0; }
.cart-page-line__image { width: 120px; height: 105px; display: grid; place-items: center; border-radius: 12px; background: #f5f7fa; }
.cart-page-line__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-page-line__content h2 { margin-bottom: 5px; font-size: 18px; }
.cart-page-line__content p { color: var(--muted); font-size: 13px; }
.cart-line-actions { display: flex; align-items: center; gap: 10px; }
.text-button { border: 0; background: none; color: var(--isoko-blue); font-weight: 750; }
.text-button--danger { color: #c32a43; }
.cart-page-line__total { text-align: right; }
.cart-page-line__total strong { display: block; font-size: 20px; }
.cart-summary, .checkout-summary { position: sticky; top: 180px; padding: 24px; }
.cart-summary h2, .checkout-summary h2 { font-size: 24px; }
.cart-summary-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; color: var(--muted); }
.cart-summary-row--total { margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: 19px; }
.summary-security, .checkout-note { display: flex; gap: 9px; margin-top: 15px; padding: 12px; border-radius: 10px; background: #eef8f2; color: #16713a; font-size: 12px; }
.checkout-card { padding: 24px; margin-bottom: 18px; }
.checkout-card__title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.checkout-card__title span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--isoko-blue); color: #fff; font-weight: 850; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid--3 { grid-template-columns: repeat(3,1fr); }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field > span { font-size: 13px; font-weight: 750; }
.form-field--full { grid-column: 1 / -1; }
.field-error { color: #c32a43; font-size: 11px; }
.payment-options { display: grid; gap: 10px; }
.payment-options label { display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid #dfe5ee; border-radius: 11px; }
.payment-options input { accent-color: var(--isoko-blue); }
.checkout-summary__items { display: grid; gap: 12px; margin-bottom: 15px; }
.checkout-summary__items > div { display: grid; grid-template-columns: 58px 1fr auto; gap: 10px; align-items: center; }
.checkout-summary__items img { width: 58px; height: 52px; object-fit: contain; border-radius: 8px; background: #f4f6fa; }
.order-success { padding: 70px 0; text-align: center; }
.order-success__icon { width: 85px; height: 85px; margin: auto; display: grid; place-items: center; border-radius: 50%; background: #e8f8ee; color: var(--isoko-green); }
.order-success h1 { font-size: 44px; }
.order-success__details { max-width: 650px; margin: 25px auto; padding: 20px; border-radius: 15px; background: #fff; }

/* Simple pages */
.simple-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.simple-page article { padding: 28px; border: 1px solid #e0e5ee; border-radius: 18px; background: #fff; }
.simple-page h2 { font-size: 28px; }
.simple-page p { color: var(--muted); }

/* Footer */
.market-footer { background: var(--isoko-navy); color: #fff; }
.market-footer__newsletter { background: linear-gradient(90deg, var(--isoko-blue), #0b58c8); }
.market-footer__newsletter-inner { min-height: 130px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.market-footer__newsletter-inner > div { display: flex; align-items: center; gap: 16px; }
.market-footer__newsletter-inner > div > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.15); }
.market-footer__newsletter strong { display: block; font-size: 22px; }
.market-footer__newsletter p { margin: 3px 0 0; color: #d6e5ff; font-size: 13px; }
.market-footer__newsletter form { width: min(570px, 48%); }
.market-footer__newsletter label { height: 58px; display: grid; grid-template-columns: 1fr auto; padding: 5px; border-radius: 14px; background: #fff; }
.market-footer__newsletter input { min-width: 0; border: 0; outline: 0; padding: 0 14px; }
.market-footer__newsletter button { border: 0; border-radius: 10px; padding: 0 20px; background: var(--isoko-orange); color: #fff; font-weight: 850; }
.market-footer__grid { display: grid; grid-template-columns: 2.1fr repeat(3,1fr); gap: 45px; padding: 55px 0; }
.market-footer__brand img { width: 270px; height: 95px; object-fit: contain; object-position: left center; filter: drop-shadow(0 7px 10px rgba(0,0,0,.2)); background: #fff; border-radius: 12px; padding: 4px; }
.market-footer__brand p { max-width: 500px; color: #b9c6db; font-size: 14px; }
.market-footer__brand > div { display: flex; flex-wrap: wrap; gap: 15px; color: #dbe5f5; font-size: 13px; }
.market-footer__brand span { display: flex; align-items: center; gap: 7px; }
.market-footer__grid h3 { margin-bottom: 15px; color: #fff; font-size: 16px; }
.market-footer__grid > div:not(.market-footer__brand) { display: flex; flex-direction: column; gap: 10px; }
.market-footer__grid > div:not(.market-footer__brand) a { color: #b9c6db; font-size: 13px; }
.market-footer__grid a:hover { color: #ffad70 !important; }
.market-footer__bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa0ba; font-size: 12px; }
.market-footer__bottom strong { color: #fff; letter-spacing: .06em; }
.cookie-consent { position: fixed; left: 28px; bottom: 28px; z-index: 1500; width: min(470px, calc(100% - 40px)); display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid #dfe5ee; border-radius: 17px; background: #fff; box-shadow: var(--shadow-lg); }
.cookie-consent p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 800; width: 50px; height: 50px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #fff; color: var(--isoko-blue); box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .2s; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Flashes */
.flash-stack, .admin-flashes { position: fixed; top: 110px; right: 20px; z-index: 2000; width: min(410px, calc(100% - 40px)); display: grid; gap: 10px; }
.flash { display: grid; grid-template-columns: 24px 1fr 28px; align-items: start; gap: 10px; padding: 15px; border-radius: 13px; background: #fff; box-shadow: var(--shadow-lg); border-left: 4px solid var(--isoko-blue); }
.flash p { margin: 0; font-size: 13px; }
.flash button { border: 0; background: none; color: var(--muted); }
.flash--success { border-left-color: var(--isoko-green); }
.flash--error { border-left-color: #d62f4e; }
.flash--warning { border-left-color: #e89a00; }

/* Authentication */
.admin-login-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(550px, 1.1fr) minmax(520px, .9fr); background: #fff; }
.admin-login-brand { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 42px 55px; background: radial-gradient(circle at 90% 10%, rgba(255,122,22,.85), transparent 18%), radial-gradient(circle at 15% 95%, rgba(16,166,74,.65), transparent 22%), linear-gradient(145deg, #061c47, #073f98 64%, #0b5ecf); color: #fff; }
.admin-login-brand::before, .admin-login-brand::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.admin-login-brand::before { width: 520px; height: 520px; right: -180px; bottom: -190px; }
.admin-login-brand::after { width: 330px; height: 330px; right: -80px; bottom: -90px; }
.admin-login-brand__logo { position: relative; z-index: 2; width: 320px; height: 112px; overflow: hidden; border-radius: 14px; background: #fff; padding: 5px; }
.admin-login-brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.admin-login-brand__content { position: relative; z-index: 2; max-width: 760px; margin: auto 0; }
.admin-login-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); color: #d7e7ff; font-size: 13px; font-weight: 850; }
.admin-login-brand h1 { max-width: 680px; margin: 20px 0; font-size: clamp(48px,5vw,76px); line-height: .98; letter-spacing: -.05em; }
.admin-login-brand__content > p:not(.admin-login-kicker) { max-width: 650px; color: #d6e4fa; font-size: 18px; }
.admin-login-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 38px; }
.admin-login-benefits article { display: flex; gap: 12px; min-height: 125px; padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.admin-login-benefits article > span { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.12); color: #ffad70; }
.admin-login-benefits strong, .admin-login-benefits small { display: block; }
.admin-login-benefits strong { font-size: 14px; }
.admin-login-benefits small { margin-top: 5px; color: #c6d8f4; font-size: 11px; }
.admin-login-brand__footer { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #b8ccea; font-size: 12px; }
.admin-login-brand__footer strong { color: #fff; }
.admin-login-panel { display: grid; place-items: center; padding: 45px; background: #f5f7fb; }
.admin-login-card { width: min(520px, 100%); padding: 42px; border: 1px solid #e0e6ef; border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.admin-login-card__top { display: flex; gap: 14px; align-items: center; }
.admin-login-card__top > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: var(--soft-blue); color: var(--isoko-blue); }
.admin-login-card__top p { margin: 0; color: var(--isoko-orange); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.admin-login-card__top h2 { margin: 1px 0 0; font-size: 34px; }
.admin-login-card__intro { margin: 20px 0 25px; color: var(--muted); }
.admin-login-form { display: grid; gap: 17px; }
.admin-login-input { height: 56px; display: grid; grid-template-columns: 28px minmax(0,1fr) 38px; align-items: center; gap: 6px; padding: 0 11px 0 15px; border: 1px solid #d8e0eb; border-radius: 12px; background: #f9fafc; }
.admin-login-input:focus-within { border-color: var(--isoko-blue-2); box-shadow: 0 0 0 4px rgba(11,87,199,.09); background: #fff; }
.admin-login-input > svg { color: #667085; }
.admin-login-input input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; }
.admin-login-input button { width: 36px; height: 36px; border: 0; background: transparent; color: #667085; }
.admin-login-form__meta { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12px; }
.admin-login-form__meta label { display: flex; align-items: center; gap: 7px; }
.admin-login-form__meta input { accent-color: var(--isoko-blue); }
.admin-login-form__meta a { color: var(--isoko-blue); font-weight: 750; }
.admin-login-status { display: flex; gap: 10px; margin-top: 22px; padding: 14px; border-radius: 11px; background: #eef8f2; color: #216a3d; }
.admin-login-status p { margin: 0; }
.admin-login-status strong, .admin-login-status small { display: block; }
.admin-login-status small { margin-top: 3px; font-size: 11px; color: #4d765c; }
.admin-login-return { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 750; }
.admin-login-return svg { transform: rotate(180deg); }

/* Admin */
.admin-body { min-height: 100vh; color: #172033; }
.admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; z-index: 1200; width: 285px; display: flex; flex-direction: column; padding: 20px 16px; background: linear-gradient(180deg, #061b43, #071d49); color: #fff; }
.admin-logo { height: 90px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 6px 10px 12px; border-bottom: 1px solid rgba(255,255,255,.10); }
.admin-logo img { width: 205px; height: 57px; object-fit: contain; border-radius: 8px; background: #fff; padding: 2px; }
.admin-logo span { margin-top: 3px; padding-left: 3px; color: #9cb3d7; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.admin-sidebar__section-label { margin: 21px 12px 8px; color: #6f87ac; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.admin-sidebar nav { display: grid; gap: 5px; }
.admin-sidebar nav a { min-height: 49px; display: grid; grid-template-columns: 27px 1fr auto; align-items: center; gap: 10px; padding: 0 13px; border-radius: 11px; color: #b9c8df; font-size: 14px; font-weight: 700; }
.admin-sidebar nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.admin-sidebar nav a.is-active { color: #fff; background: linear-gradient(90deg, var(--isoko-blue-2), #0d66d7); box-shadow: 0 10px 20px rgba(0,0,0,.18); }
.admin-sidebar nav a.is-active::before { content: ""; position: absolute; left: 0; width: 4px; height: 28px; border-radius: 0 4px 4px 0; background: var(--isoko-orange); }
.admin-sidebar nav a { position: relative; }
.admin-sidebar nav em { padding: 3px 6px; border-radius: 999px; background: rgba(255,255,255,.1); color: #d8e2f2; font-size: 9px; font-style: normal; text-transform: uppercase; }
.admin-sidebar__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.10); }
.admin-user { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 11px; padding: 9px; }
.admin-user > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--isoko-orange); font-weight: 850; }
.admin-user strong, .admin-user small { display: block; }
.admin-user strong { font-size: 12px; }
.admin-user small { max-width: 170px; overflow: hidden; text-overflow: ellipsis; color: #8fa3c2; font-size: 10px; }
.admin-sidebar__footer form button { width: 100%; min-height: 43px; display: flex; align-items: center; gap: 9px; border: 0; border-radius: 10px; padding: 0 13px; background: rgba(255,255,255,.06); color: #b9c8df; font-size: 12px; }
.admin-sidebar__footer form button:hover { background: rgba(218,46,79,.18); color: #fff; }
.admin-main { min-height: 100vh; margin-left: 285px; }
.admin-topbar { position: sticky; top: 0; z-index: 900; min-height: 92px; display: flex; align-items: center; gap: 18px; padding: 0 34px; border-bottom: 1px solid #e1e6ef; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); }
.admin-topbar__title { min-width: 0; }
.admin-topbar__title small { color: var(--isoko-orange); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.admin-topbar__title h1 { margin: 2px 0 0; font-size: 28px; line-height: 1.1; }
.admin-topbar__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.admin-store-link { min-width: 175px; display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-left: 1px solid #e2e7ef; }
.admin-store-link span { display: flex; flex-direction: column; }
.admin-store-link small { color: var(--muted); font-size: 10px; }
.admin-store-link strong { font-size: 12px; }
.admin-menu-button { display: none; }
.admin-content { padding: 30px 34px 50px; }
.admin-dashboard-hero, .admin-page-intro { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 22px; padding: 28px 30px; border: 1px solid #dfe6f0; border-radius: 20px; background: linear-gradient(120deg, #fff, #eef5ff); }
.admin-dashboard-hero h2, .admin-page-intro h2 { margin-bottom: 6px; font-size: 30px; }
.admin-dashboard-hero p, .admin-page-intro p { margin-bottom: 0; color: var(--muted); }
.admin-dashboard-hero__date { display: flex; align-items: center; gap: 10px; min-width: 165px; padding: 13px 15px; border-radius: 13px; background: #fff; box-shadow: var(--shadow-sm); }
.admin-dashboard-hero__date > span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; background: var(--soft-blue); color: var(--isoko-blue); }
.admin-dashboard-hero__date small, .admin-dashboard-hero__date strong { display: block; }
.admin-dashboard-hero__date small { color: var(--muted); font-size: 10px; }
.admin-dashboard-hero__date strong { font-size: 14px; }
.admin-status { min-height: 67px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; margin-bottom: 20px; padding: 13px 17px; border-radius: 14px; }
.admin-status > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; }
.admin-status strong, .admin-status small { display: block; }
.admin-status strong { font-size: 14px; }
.admin-status small { color: inherit; opacity: .75; font-size: 11px; }
.admin-status a { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; }
.admin-status.is-online { background: #e9f8ef; color: #166c38; border: 1px solid #c5ebd3; }
.admin-status.is-online > span { background: #d6f1df; }
.admin-status.is-warning { background: #fff5de; color: #835700; border: 1px solid #f3dda7; }
.admin-status.is-warning > span { background: #ffebbd; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 20px; }
.admin-stat { position: relative; overflow: hidden; min-height: 150px; display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 14px; padding: 22px; border: 1px solid #e0e6ef; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.admin-stat::after { content: ""; position: absolute; right: -38px; bottom: -45px; width: 120px; height: 120px; border-radius: 50%; opacity: .09; background: currentColor; }
.admin-stat > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; }
.admin-stat small, .admin-stat strong, .admin-stat em { display: block; }
.admin-stat small { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.admin-stat strong { margin: 3px 0; font-size: 25px; line-height: 1.15; }
.admin-stat em { color: var(--muted); font-size: 10px; font-style: normal; }
.admin-stat > b { position: absolute; right: 15px; top: 13px; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; opacity: .55; }
.admin-stat--blue { color: var(--isoko-blue); }.admin-stat--blue > span { background: #eaf2ff; }
.admin-stat--orange { color: var(--isoko-orange); }.admin-stat--orange > span { background: #fff1e7; }
.admin-stat--green { color: var(--isoko-green); }.admin-stat--green > span { background: #e8f8ee; }
.admin-stat--navy { color: var(--isoko-navy); }.admin-stat--navy > span { background: #edf1f7; }
.admin-stat div { color: var(--ink); }
.admin-dashboard-main-grid { display: grid; grid-template-columns: minmax(0,1.65fr) minmax(320px,.75fr); gap: 18px; margin-bottom: 18px; }
.admin-dashboard-grid, .admin-system-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(340px,.65fr); gap: 18px; margin-bottom: 18px; }
.admin-panel { border: 1px solid #e0e6ef; border-radius: 18px; background: #fff; box-shadow: 0 5px 18px rgba(8,30,73,.05); padding: 22px; }
.admin-panel > h2 { font-size: 20px; }
.admin-panel__header { min-height: 50px; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 15px; }
.admin-panel__header h2 { margin-bottom: 3px; font-size: 20px; }
.admin-panel__header p { margin: 0; color: var(--muted); font-size: 11px; }
.admin-panel__header > a { display: inline-flex; align-items: center; gap: 6px; color: var(--isoko-blue); font-size: 11px; font-weight: 800; }
.admin-panel__header select { min-height: 38px; border: 1px solid #dfe5ee; border-radius: 9px; padding: 0 11px; background: #fff; font-size: 11px; }
.admin-chart-placeholder { height: 280px; display: grid; grid-template-columns: 38px 1fr; gap: 8px; padding-top: 12px; }
.admin-chart-y { display: flex; flex-direction: column; justify-content: space-between; color: #98a2b3; font-size: 9px; }
.admin-chart-bars { display: grid; grid-template-columns: repeat(7,1fr); gap: 14px; align-items: end; border-left: 1px solid #e8ecf2; border-bottom: 1px solid #e8ecf2; background: repeating-linear-gradient(to top, transparent 0, transparent 24%, #f2f4f7 25%); }
.admin-chart-bars > span { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 8px; }
.admin-chart-bars i { width: min(40px, 65%); height: var(--bar-height); border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, #2f78e4, #0b50b8); box-shadow: 0 8px 14px rgba(7,63,152,.16); }
.admin-chart-bars small { margin-bottom: -24px; color: var(--muted); font-size: 9px; }
.admin-performance-legend { display: flex; justify-content: space-between; gap: 10px; margin-top: 32px; color: var(--muted); font-size: 10px; }
.admin-performance-legend span { display: flex; align-items: center; gap: 7px; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }.legend-dot--blue { background: var(--isoko-blue); }
.admin-quick-actions { display: flex; flex-direction: column; }
.admin-quick-actions > a { min-height: 68px; display: grid; grid-template-columns: 46px 1fr 18px; align-items: center; gap: 11px; padding: 10px 0; border-bottom: 1px solid #edf0f5; }
.admin-quick-actions > a:last-child { border-bottom: 0; }
.admin-quick-actions > a:hover strong { color: var(--isoko-blue); }
.quick-action-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; }
.quick-action-icon--orange { background: #fff1e7; color: var(--isoko-orange); }
.quick-action-icon--blue { background: #eaf2ff; color: var(--isoko-blue); }
.quick-action-icon--green { background: #e8f8ee; color: var(--isoko-green); }
.quick-action-icon--navy { background: #edf1f7; color: var(--isoko-navy); }
.admin-quick-actions strong, .admin-quick-actions small { display: block; }
.admin-quick-actions strong { font-size: 12px; }
.admin-quick-actions small { color: var(--muted); font-size: 10px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 13px 12px; border-bottom: 1px solid #edf0f5; text-align: left; vertical-align: middle; }
.admin-table th { color: #667085; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; background: #f8f9fb; }
.admin-table td { font-size: 11px; }
.admin-table td small, .admin-table td strong { display: block; }
.admin-table td small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.admin-table tbody tr:hover { background: #f8fbff; }
.status { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px; background: #edf1f6; color: #4c5a70; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.status--pending, .status--authorized { background: #fff2d8; color: #8b5b00; }
.status--confirmed, .status--processing { background: #e7f0ff; color: #0b55b8; }
.status--paid, .status--delivered { background: #e8f8ee; color: #16713a; }
.status--shipped { background: #e6f7fa; color: #087282; }
.status--failed, .status--cancelled { background: #ffe8ed; color: #aa1f3b; }
.status--refunded { background: #f1e9ff; color: #6741a6; }
.low-stock-list { display: grid; }
.low-stock-list a { display: grid; grid-template-columns: 52px minmax(0,1fr) 38px; gap: 11px; align-items: center; padding: 10px 0; border-bottom: 1px solid #edf0f5; }
.low-stock-list a:last-child { border-bottom: 0; }
.low-stock-list img { width: 52px; height: 48px; object-fit: contain; border-radius: 9px; background: #f4f6fa; }
.low-stock-list strong, .low-stock-list small { display: block; }
.low-stock-list strong { font-size: 11px; }
.low-stock-list small { color: var(--muted); font-size: 9px; }
.low-stock-list b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #fff2d8; color: #8b5b00; font-size: 11px; }
.low-stock-list b.is-critical { background: #ffe8ed; color: #aa1f3b; }
.admin-empty { min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); text-align: center; }
.admin-empty > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: #f0f4fa; color: var(--isoko-blue); }
.admin-empty strong { margin-top: 10px; color: var(--ink); }
.admin-empty p { font-size: 11px; }
.admin-page-actions { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 18px; }
.admin-page-actions > div p { margin: 0; color: var(--muted); }
.admin-search { flex: 1; display: flex; align-items: center; gap: 9px; padding: 7px; border: 1px solid #e0e6ef; border-radius: 13px; background: #fff; }
.admin-search input { flex: 1; min-width: 0; height: 42px; border: 0; outline: 0; }
.admin-search select { min-height: 42px; border: 1px solid #dfe5ee; border-radius: 9px; padding: 0 10px; }
.admin-alert { margin-bottom: 15px; padding: 12px 14px; border-radius: 10px; background: #fff3d9; color: #805600; font-size: 12px; }
.admin-form { display: grid; gap: 18px; }
.admin-form-grid { display: grid; grid-template-columns: minmax(0,1.65fr) minmax(300px,.65fr); gap: 18px; align-items: start; }
.admin-form-sidebar { display: grid; gap: 18px; }
.admin-form--narrow { max-width: 1000px; }
.admin-form-actions { display: flex; justify-content: flex-end; gap: 10px; }
.checkbox-field { min-height: 45px; display: flex; align-items: center; gap: 8px; }
.checkbox-field input { accent-color: var(--isoko-blue); }
.admin-table--products img { width: 55px; height: 50px; object-fit: contain; border-radius: 8px; background: #f4f6fa; }
.admin-product { display: grid; grid-template-columns: 55px minmax(0,1fr); gap: 10px; align-items: center; }
.table-actions { display: flex; gap: 7px; }
.table-actions a, .table-actions button { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid #dfe5ee; border-radius: 9px; background: #fff; color: var(--isoko-blue); }
.table-actions button { color: #c32a43; }
.table-link { display: inline-flex; align-items: center; gap: 5px; color: var(--isoko-blue); font-weight: 800; }
.category-admin-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.category-admin-card__head { display: grid; grid-template-columns: 50px minmax(0,1fr) auto; gap: 12px; align-items: start; }
.category-admin-card__head > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; }
.category-admin-card h2 { margin-bottom: 3px; font-size: 18px; }
.category-admin-card p { margin: 0; color: var(--muted); font-size: 11px; }
.category-child-list { display: grid; margin-top: 15px; }
.category-child-list > div { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid #edf0f5; }
.category-child-list strong, .category-child-list small { display: block; }
.category-child-list strong { font-size: 12px; }
.category-child-list small { color: var(--muted); font-size: 9px; }
.category-child-list a { color: var(--isoko-blue); }
.order-admin-grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(320px,.6fr); gap: 18px; align-items: start; }
.order-admin-grid > aside { display: grid; gap: 18px; }
.order-item-list { display: grid; }
.order-item-list > div { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #edf0f5; }
.order-item-list img { width: 60px; height: 55px; object-fit: contain; border-radius: 9px; background: #f4f6fa; }
.order-item-list strong, .order-item-list small { display: block; }
.order-item-list strong { font-size: 12px; }
.order-item-list small { color: var(--muted); font-size: 9px; }
.order-totals { margin-top: 15px; padding-top: 12px; border-top: 1px solid #dfe5ee; }
.order-totals div { display: flex; justify-content: space-between; padding: 6px 0; }
.order-totals div:last-child { font-size: 18px; }
.admin-details { margin: 0; }
.admin-details div { padding: 9px 0; border-bottom: 1px solid #edf0f5; }
.admin-details dt { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.admin-details dd { margin: 3px 0 0; font-size: 12px; font-weight: 700; }
.admin-order-form { display: grid; gap: 14px; }
.system-health-hero { min-height: 92px; display: flex; align-items: center; gap: 15px; margin-bottom: 18px; padding: 18px 22px; border-radius: 16px; }
.system-health-hero > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; }
.system-health-hero strong { display: block; }
.system-health-hero p { margin: 4px 0 0; font-size: 11px; }
.system-health-hero.is-healthy { background: #e9f8ef; color: #166c38; border: 1px solid #c5ebd3; }
.system-health-hero.is-healthy > span { background: #d4f0df; }
.system-health-hero.is-alert { background: #fff2dc; color: #835700; border: 1px solid #f0d9a6; }
.system-health-hero.is-alert > span { background: #ffe7b6; }
.system-version { padding: 6px 9px; border-radius: 8px; background: #edf3fc; color: var(--isoko-blue); font-size: 10px; font-weight: 800; }
.system-check-list { display: grid; }
.system-check-list > div { display: grid; grid-template-columns: 31px 1fr auto; align-items: center; gap: 9px; padding: 10px 0; border-bottom: 1px solid #edf0f5; }
.system-check-list > div:last-child { border-bottom: 0; }
.system-check-list strong { font-size: 12px; }
.system-check-list em { color: var(--muted); font-size: 9px; font-style: normal; }
.system-check { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; }
.system-check.is-ok { background: #e8f8ee; color: var(--isoko-green); }
.system-check.is-error { background: #ffe8ed; color: #c32a43; }
.system-meta-list { display: grid; }
.system-meta-list > div { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid #edf0f5; }
.system-meta-list span { color: var(--muted); font-size: 10px; }
.system-meta-list strong { max-width: 65%; overflow-wrap: anywhere; text-align: right; font-size: 10px; }
.system-meta-list--columns { grid-template-columns: repeat(2,1fr); gap: 0 20px; }
.system-path-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }
.system-path-grid article { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; padding: 13px; border: 1px solid #e3e8f0; border-radius: 11px; }
.system-path-grid strong, .system-path-grid small { display: block; }
.system-path-grid strong { font-size: 11px; }
.system-path-grid small { max-width: 360px; overflow: hidden; text-overflow: ellipsis; color: var(--muted); font-size: 8px; }
.system-path-grid em { color: var(--muted); font-size: 9px; font-style: normal; }
.admin-backdrop { display: none; }

/* System/error pages */
.system-page { min-height: 70vh; display: grid; place-items: center; padding: 50px; text-align: center; background: #fff; }
.system-page__code { color: #e8ecff; font-size: clamp(130px,25vw,360px); line-height: .7; font-weight: 900; }
.system-page h1 { margin-top: -50px; font-size: 52px; }
.system-page p { max-width: 600px; color: var(--muted); }

/* Responsive */
@media (max-width: 1380px) {
  :root { --container: 1280px; }
  .market-header__main { grid-template-columns: 210px minmax(300px,1fr) auto; gap: 18px; }
  .market-logo { width: 195px; }
  .desktop-action { display: none; }
  .market-hero-layout { grid-template-columns: 235px minmax(0,1fr) 245px; }
  .market-hero-banner__content { width: 62%; padding-left: 35px; }
  .market-hero-banner h1 { font-size: 44px; }
  .hero-product-card--laptop { width: 245px; height: 190px; }
  .hero-product-card--phone { right: 220px; }
  .market-product-rail--six { grid-template-columns: repeat(5,1fr); }
  .market-product-rail--six > .product-card:nth-child(n+6) { display: none; }
  .market-category-showcase { grid-template-columns: repeat(6,1fr); gap: 12px; }
  .admin-stat-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1120px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: grid !important; }
  .container { width: min(100% - 32px, 980px); }
  .market-header__main { min-height: 80px; grid-template-columns: 48px 175px minmax(0,1fr) auto; gap: 10px; }
  .market-logo { width: 170px; height: 58px; }
  .header-search__submit { display: none; }
  .header-search__form { grid-template-columns: 25px 1fr 30px; height: 52px; }
  .header-actions .header-action span:last-child { display: none; }
  .header-action { min-width: auto; padding: 8px; }
  .market-hero-layout { grid-template-columns: 1fr 260px; }
  .market-category-panel { display: none; }
  .market-hero-banner { min-height: 455px; }
  .market-shortcuts { grid-template-columns: repeat(3,1fr); }
  .market-product-rail--six { grid-template-columns: repeat(4,1fr); }
  .market-product-rail--six > .product-card:nth-child(n+5) { display: none; }
  .market-category-showcase { grid-template-columns: repeat(3,1fr); }
  .market-trust-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-layout { grid-template-columns: 240px 1fr; }
  .product-grid--3 { grid-template-columns: repeat(2,1fr); }
  .product-main-grid { grid-template-columns: 1fr; }
  .purchase-panel { position: static; }
  .admin-sidebar { transform: translateX(-105%); transition: transform .25s; }
  .admin-sidebar.is-open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-menu-button { display: grid; }
  .admin-backdrop { position: fixed; inset: 0; z-index: 1100; display: block; background: rgba(5,20,49,.45); opacity: 0; pointer-events: none; transition: .2s; }
  .admin-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .admin-dashboard-main-grid, .admin-dashboard-grid, .admin-system-grid { grid-template-columns: 1fr; }
  .admin-login-shell { grid-template-columns: 1fr; }
  .admin-login-brand { min-height: 580px; }
  .admin-login-brand h1 { font-size: 58px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(100% - 22px, 700px); }
  .top-commercial-bar__center, .top-commercial-bar__inner > div:last-child { display: none; }
  .top-commercial-bar__inner { justify-content: center; }
  .market-header { position: relative; }
  .market-header__main { min-height: 126px; grid-template-columns: 44px 1fr auto; grid-template-rows: 62px 54px; }
  .market-logo { width: 180px; }
  .header-search { grid-column: 1 / -1; grid-row: 2; }
  .header-actions { grid-column: 3; grid-row: 1; }
  .market-mobile-menu { grid-column: 1; grid-row: 1; }
  .market-logo { grid-column: 2; grid-row: 1; }
  .market-hero-section { padding-top: 14px; }
  .market-hero-layout { grid-template-columns: 1fr; }
  .market-service-panel { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .market-mini-promo { grid-column: 1 / -1; min-height: 180px; }
  .market-hero-banner { min-height: 650px; }
  .market-hero-banner__content { width: 100%; padding: 35px 25px; }
  .market-hero-banner h1 { font-size: 42px; }
  .market-hero-banner__visual { inset: auto 0 0 0; height: 280px; }
  .hero-product-card--laptop { right: 20px; bottom: 15px; width: 230px; height: 175px; }
  .hero-product-card--phone { left: 20px; right: auto; top: 30px; width: 120px; height: 155px; }
  .hero-product-card--bag { right: 15px; top: 5px; width: 110px; height: 115px; }
  .hero-discount-badge { right: 145px; top: 10px; width: 95px; height: 95px; }
  .hero-discount-badge strong { font-size: 22px; }
  .market-shortcuts { grid-template-columns: 1fr 1fr; }
  .market-shortcuts > a:last-child { grid-column: 1 / -1; }
  .market-section-header { min-height: auto; padding: 15px; }
  .market-section-header h2 { font-size: 21px; }
  .market-section-header--flash { align-items: flex-start; flex-wrap: wrap; }
  .flash-countdown { order: 3; width: 100%; }
  .market-product-rail--six { grid-template-columns: repeat(2,1fr); }
  .market-product-rail--six > .product-card:nth-child(n+5) { display: block; }
  .market-product-rail--six > .product-card:nth-child(n+7) { display: none; }
  .product-card--compact { padding: 9px; }
  .product-card__quick-actions { display: none; }
  .product-card__favorite { opacity: 1; transform: none; }
  .market-category-showcase { grid-template-columns: repeat(2,1fr); padding: 17px; }
  .market-editorial-banner__inner { min-height: 570px; padding: 35px 25px; align-items: flex-start; }
  .market-editorial-banner__inner > div:first-child { width: 100%; }
  .market-editorial-banner h2 { font-size: 40px; }
  .market-editorial-products { width: 100%; height: 250px; bottom: 10px; right: 0; }
  .market-dual-grid { grid-template-columns: 1fr; }
  .market-dual-card { min-height: 280px; padding: 25px; }
  .market-dual-card h2 { font-size: 30px; }
  .market-seller-cta__inner { grid-template-columns: 90px 1fr; padding: 20px; }
  .market-seller-cta__icon { width: 85px; height: 85px; }
  .market-seller-cta h2 { font-size: 23px; }
  .market-seller-cta .button { grid-column: 1 / -1; }
  .market-trust-grid { grid-template-columns: 1fr; }
  .market-footer__newsletter-inner { padding: 25px 0; flex-direction: column; align-items: stretch; }
  .market-footer__newsletter form { width: 100%; }
  .market-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0; }
  .market-footer__brand { grid-column: 1 / -1; }
  .market-footer__bottom { flex-direction: column; justify-content: center; padding: 18px 0; }
  .cookie-consent { flex-direction: column; align-items: stretch; left: 12px; bottom: 12px; width: calc(100% - 24px); }
  .back-to-top { right: 14px; bottom: 14px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: static; }
  .product-grid--3, .product-grid--4 { grid-template-columns: repeat(2,1fr); gap: 11px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery__thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .product-gallery__stage { min-height: 420px; }
  .product-info-grid, .cart-layout, .checkout-layout, .simple-page__grid { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
  .cart-page-line { grid-template-columns: 90px 1fr; }
  .cart-page-line__image { width: 90px; height: 85px; }
  .cart-page-line__total { grid-column: 2; text-align: left; }
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .admin-topbar { min-height: 80px; padding: 0 16px; }
  .admin-topbar__title h1 { font-size: 22px; }
  .admin-topbar__actions .button { display: none; }
  .admin-store-link { min-width: auto; border: 0; }
  .admin-store-link span { display: none; }
  .admin-content { padding: 20px 14px 40px; }
  .admin-dashboard-hero, .admin-page-intro { align-items: flex-start; flex-direction: column; padding: 22px; }
  .admin-stat-grid { grid-template-columns: 1fr; }
  .admin-stat { min-height: 125px; }
  .admin-form-grid, .order-admin-grid, .category-admin-grid { grid-template-columns: 1fr; }
  .admin-form-actions { position: sticky; bottom: 0; z-index: 20; padding: 10px; background: rgba(245,247,251,.96); }
  .system-path-grid, .system-meta-list--columns { grid-template-columns: 1fr; }
  .admin-login-brand { min-height: 690px; padding: 28px 22px; }
  .admin-login-brand__logo { width: 260px; height: 90px; }
  .admin-login-brand h1 { font-size: 46px; }
  .admin-login-benefits { grid-template-columns: 1fr; }
  .admin-login-panel { padding: 24px 15px; }
  .admin-login-card { padding: 27px 20px; }
}

@media (max-width: 460px) {
  .market-logo { width: 155px; }
  .header-actions { gap: 0; }
  .header-action { padding: 6px; }
  .market-service-panel { grid-template-columns: 1fr; }
  .market-mini-promo { grid-column: auto; }
  .market-hero-banner h1 { font-size: 35px; }
  .market-hero-banner__actions { flex-direction: column; align-items: stretch; }
  .market-shortcuts { grid-template-columns: 1fr; }
  .market-shortcuts > a:last-child { grid-column: auto; }
  .market-category-showcase { gap: 11px; }
  .market-product-rail--six { grid-template-columns: 1fr 1fr; }
  .product-card h3, .product-card--compact h3 { font-size: 14px; }
  .product-price strong, .product-card--compact .product-price strong { font-size: 15px; }
  .market-footer__grid { grid-template-columns: 1fr; }
  .market-footer__brand { grid-column: auto; }
  .market-footer__newsletter label { height: auto; grid-template-columns: 1fr; gap: 7px; padding: 7px; }
  .market-footer__newsletter input, .market-footer__newsletter button { min-height: 48px; }
  .product-grid--3, .product-grid--4 { grid-template-columns: 1fr; }
  .purchase-actions { grid-template-columns: 1fr; }
  .product-value-strip { grid-template-columns: 1fr 1fr; }
}

/* Final mobile refinements */
@media (max-width: 760px) {
  .top-commercial-bar__inner .top-commercial-bar__center,
  .top-commercial-bar__inner > div:last-child { display: none !important; }
  .top-commercial-bar__inner { min-height: 34px; justify-content: center; }
  .top-commercial-bar__inner > div:first-child { white-space: nowrap; font-size: 12px; }
  .market-hero-banner { min-height: 0; }
  .market-hero-banner__content { width: 100%; padding: 30px 24px 330px; }
  .market-hero-banner__content > p:not(.market-kicker) { font-size: 16px; line-height: 1.5; }
  .market-hero-banner__actions { position: relative; z-index: 6; }
  .market-hero-banner__proof { position: relative; z-index: 6; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 22px; }
  .market-hero-banner__proof span:last-child { grid-column: 1 / -1; }
  .market-hero-banner__visual { inset: auto 0 0 0; height: 285px; z-index: 2; }
  .hero-orbit { display: none; }
  .hero-product-card--laptop { right: 18px; bottom: 12px; width: 205px; height: 155px; }
  .hero-product-card--phone { left: 18px; right: auto; top: 62px; width: 112px; height: 145px; }
  .hero-product-card--bag { right: 14px; top: 15px; width: 104px; height: 108px; }
  .hero-discount-badge { right: 125px; top: 16px; width: 92px; height: 92px; border-width: 5px; }
}

@media (max-width: 460px) {
  .market-hero-banner__content { padding: 28px 24px 320px; }
  .market-hero-banner h1 { font-size: 34px; line-height: 1.02; }
  .market-kicker { font-size: 11px; }
  .market-hero-banner__actions .button { min-height: 50px; font-size: 14px; padding-inline: 16px; }
  .market-hero-banner__proof { font-size: 10px; }
}

/* =========================================================
   ISOKO 2.1 — Responsive hardening, Seller Center & tracking
   ========================================================= */
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
body { min-width: 320px; }
main, section, header, footer, nav, aside, article, form, div { min-width: 0; }
.container { width: min(var(--container), calc(100% - clamp(24px, 4vw, 64px))); }

/* Header rebuilt to prevent search/account collisions */
.market-header__main {
  min-height: 104px;
  grid-template-columns: minmax(235px, 270px) minmax(320px, 760px) max-content;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 30px);
}
.market-logo {
  width: 260px;
  height: 88px;
  overflow: visible;
  flex: 0 0 auto;
  padding: 3px 0;
}
.market-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header-search { width: 100%; max-width: 760px; justify-self: center; }
.header-search__form {
  width: 100%;
  grid-template-columns: 28px minmax(0,1fr) 34px auto;
  height: 60px;
  border-radius: 18px;
}
.header-search__submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 132px; }
.header-search__submit svg { display: none; }
.header-actions { flex-wrap: nowrap; flex-shrink: 0; }
.header-action { min-width: 112px; flex: 0 0 auto; }
.header-action span:last-child { min-width: 0; }
.header-action small, .header-action strong { white-space: nowrap; }
.header-action__icon { flex: 0 0 auto; }
.search-results { max-height: min(540px, 65vh); overflow-y: auto; }

/* Global card and rail resilience */
.market-product-rail, .product-grid, .market-category-showcase, .market-shortcuts,
.market-trust-grid, .market-footer__grid, .simple-page__grid, .form-grid,
.admin-form-grid, .seller-form-grid, .seller-stat-grid, .seller-dashboard-grid {
  min-width: 0;
}
.product-card, .product-card > *, .market-section-card, .market-section-card > * { min-width: 0; }
.product-card h3, .product-card p, .product-card small, .product-card strong { overflow-wrap: anywhere; }
.admin-table-wrap, .seller-products-table-wrap { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.admin-table { min-width: 760px; }

/* Seller public landing */
.seller-landing { background: #f5f8fd; }
.seller-landing-hero { position: relative; overflow: hidden; color: #fff; background:
  radial-gradient(circle at 88% 18%, rgba(255,103,0,.32), transparent 28%),
  radial-gradient(circle at 12% 92%, rgba(16,166,74,.22), transparent 30%),
  linear-gradient(135deg, #061c48 0%, #073f98 58%, #0b57c7 100%); }
.seller-landing-hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:42px 42px; mask-image:linear-gradient(to bottom,#000,transparent); }
.seller-landing-hero__grid { position:relative; z-index:1; min-height: 670px; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(430px,.95fr); align-items:center; gap:70px; padding-block:75px; }
.seller-landing-hero__grid > div > p, .seller-landing-features__grid > div > p, .seller-landing-steps header p, .seller-landing-cta p { margin-bottom:14px; color:#9ec2ff; font-weight:900; font-size:13px; letter-spacing:.14em; }
.seller-landing-hero h1 { max-width:780px; margin-bottom:24px; font-size:clamp(48px,5vw,78px); line-height:.98; letter-spacing:-.055em; }
.seller-landing-hero h1 + span { display:block; max-width:700px; color:#dce8ff; font-size:20px; line-height:1.6; }
.seller-landing-hero__grid > div > div { display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }
.seller-landing-hero ul { display:flex; flex-wrap:wrap; gap:20px; margin:28px 0 0; padding:0; list-style:none; color:#eef5ff; font-size:14px; font-weight:700; }
.seller-landing-hero li { display:flex; align-items:center; gap:7px; }
.seller-landing-hero li svg { color:#5ae38d; }
.seller-landing-hero aside { position:relative; min-height:510px; }
.seller-landing-device { position:absolute; inset:30px 12px 10px 22px; padding:12px; border:1px solid rgba(255,255,255,.2); border-radius:30px; background:rgba(255,255,255,.12); box-shadow:0 38px 90px rgba(0,0,0,.32); backdrop-filter:blur(18px); transform:rotate(1.5deg); }
.seller-landing-device__bar { height:36px; display:flex; align-items:center; gap:7px; padding:0 12px; }
.seller-landing-device__bar span { width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.45); }
.seller-landing-device__content { height:calc(100% - 36px); padding:26px; border-radius:22px; color:var(--ink); background:#fff; }
.seller-landing-device__content header { display:flex; align-items:center; gap:14px; }
.seller-landing-device__content header img { width:58px; height:58px; object-fit:contain; border-radius:16px; background:#eef5ff; }
.seller-landing-device__content header small, .seller-landing-device__content header strong { display:block; }
.seller-landing-device__content header small { color:var(--muted); }
.seller-landing-device__content header strong { font-size:21px; }
.seller-device-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:24px 0; }
.seller-device-stats span { padding:16px; border-radius:15px; background:#f5f7fb; }
.seller-device-stats small, .seller-device-stats strong { display:block; }
.seller-device-stats small { color:var(--muted); font-size:11px; }
.seller-device-stats strong { margin-top:4px; color:var(--isoko-blue); font-size:25px; }
.seller-device-chart { height:185px; display:flex; align-items:end; gap:13px; padding:20px 18px 0; border-radius:18px; background:linear-gradient(180deg,#f4f8ff,#fff); }
.seller-device-chart i { flex:1; min-width:12px; border-radius:8px 8px 2px 2px; background:linear-gradient(180deg,var(--isoko-orange),#ffad62); }
.seller-floating-card { position:absolute; z-index:3; min-width:190px; display:grid; grid-template-columns:42px 1fr; gap:2px 10px; align-items:center; padding:15px 17px; border-radius:16px; color:var(--ink); background:#fff; box-shadow:var(--shadow-lg); }
.seller-floating-card svg { grid-row:1/3; width:42px; height:42px; padding:9px; border-radius:12px; color:#fff; background:var(--isoko-orange); }
.seller-floating-card b, .seller-floating-card small { display:block; }
.seller-floating-card small { color:var(--muted); }
.seller-floating-card--orders { left:-28px; bottom:64px; }
.seller-floating-card--growth { right:-18px; top:20px; }
.seller-floating-card--growth svg { background:var(--isoko-green); }
.seller-landing-steps { padding:90px 0; }
.seller-landing-steps header { max-width:780px; margin:0 auto 42px; text-align:center; }
.seller-landing-steps h2, .seller-landing-features h2, .seller-landing-cta h2 { font-size:clamp(36px,4vw,56px); line-height:1.05; letter-spacing:-.045em; }
.seller-steps-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.seller-steps-grid article { position:relative; min-height:285px; padding:30px; border:1px solid #e1e8f3; border-radius:24px; background:#fff; box-shadow:var(--shadow-sm); }
.seller-steps-grid article > span { position:absolute; right:22px; top:17px; color:#dfe8f7; font-size:52px; font-weight:900; }
.seller-steps-grid i { width:58px; height:58px; display:grid; place-items:center; margin-bottom:28px; border-radius:17px; color:#fff; background:linear-gradient(135deg,var(--isoko-blue),var(--isoko-blue-2)); }
.seller-steps-grid h3 { margin-bottom:12px; font-size:21px; }
.seller-steps-grid p { color:var(--muted); }
.seller-landing-features { padding:85px 0; background:#fff; }
.seller-landing-features__grid { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(350px,.9fr); align-items:center; gap:75px; }
.seller-landing-features__grid > div > span { display:block; max-width:720px; color:var(--muted); font-size:18px; }
.seller-feature-list { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:36px; }
.seller-feature-list article { display:grid; grid-template-columns:48px 1fr; gap:14px; padding:20px; border:1px solid #e2e8f2; border-radius:17px; }
.seller-feature-list i { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:var(--isoko-blue); background:#eef5ff; }
.seller-feature-list strong { font-size:17px; }
.seller-feature-list p { margin:5px 0 0; color:var(--muted); font-size:14px; }
.seller-landing-features aside { padding:45px; border-radius:32px; color:#fff; background:linear-gradient(145deg,#061c48,#0b57c7); box-shadow:var(--shadow-lg); }
.seller-landing-features aside img { width:100%; max-height:230px; object-fit:contain; filter:drop-shadow(0 12px 25px rgba(0,0,0,.2)); }
.seller-landing-features aside strong { display:block; margin:24px 0 9px; font-size:28px; }
.seller-landing-features aside p { color:#d9e7ff; }
.seller-landing-cta { padding:70px 0; color:#fff; background:linear-gradient(120deg,#ff6700,#ff8b1f); }
.seller-landing-cta .container { display:flex; align-items:center; justify-content:space-between; gap:35px; }
.seller-landing-cta p { color:#fff4e9; }
.seller-landing-cta h2 { margin-bottom:10px; }
.seller-landing-cta span { color:#fff5eb; font-size:17px; }
.seller-landing-cta .button { color:var(--isoko-blue); background:#fff; box-shadow:0 16px 40px rgba(98,31,0,.22); }

/* Seller authentication and registration */
.seller-auth-body, .seller-body { background:#f3f6fb; }
.seller-auth-shell { min-height:100vh; display:grid; grid-template-columns:minmax(420px,1.05fr) minmax(430px,.95fr); }
.seller-auth-brand { position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between; padding:48px clamp(40px,6vw,95px); color:#fff; background:radial-gradient(circle at 82% 20%,rgba(255,103,0,.35),transparent 25%),linear-gradient(140deg,#061c48,#073f98 68%,#0b57c7); }
.seller-auth-brand::after { content:""; position:absolute; right:-170px; bottom:-180px; width:520px; height:520px; border:100px solid rgba(255,255,255,.06); border-radius:50%; }
.seller-auth-brand__logo { position:relative; z-index:1; width:min(410px,90%); }
.seller-auth-brand__logo img { width:100%; max-height:135px; object-fit:contain; object-position:left center; }
.seller-auth-brand__copy { position:relative; z-index:1; max-width:720px; }
.seller-auth-brand__copy > p:first-child, .seller-auth-eyebrow { color:#9fc1ff; font-size:13px; font-weight:900; letter-spacing:.14em; }
.seller-auth-brand h1 { margin:17px 0 24px; font-size:clamp(50px,6vw,82px); line-height:.96; letter-spacing:-.055em; }
.seller-auth-brand h1 span { color:#ff9a55; }
.seller-auth-brand h1 + p { max-width:680px; color:#dce7fb; font-size:19px; }
.seller-auth-benefits { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:12px; }
.seller-auth-benefits span { display:flex; align-items:center; gap:8px; padding:10px 14px; border:1px solid rgba(255,255,255,.2); border-radius:12px; background:rgba(255,255,255,.08); }
.seller-auth-panel { display:grid; place-items:center; padding:45px; }
.seller-auth-card { width:min(540px,100%); padding:44px; border:1px solid #e1e7f0; border-radius:28px; background:#fff; box-shadow:var(--shadow-md); }
.seller-auth-back { display:inline-flex; align-items:center; gap:7px; margin-bottom:30px; color:var(--isoko-blue); font-weight:800; font-size:13px; }
.seller-auth-back svg { transform:rotate(180deg); }
.seller-auth-card h2 { margin:8px 0 10px; font-size:38px; letter-spacing:-.04em; }
.seller-auth-intro { color:var(--muted); }
.seller-auth-form { display:grid; gap:20px; margin-top:28px; }
.seller-auth-form label > span { display:block; margin-bottom:8px; font-weight:800; font-size:14px; }
.seller-auth-input { min-height:58px; display:grid; grid-template-columns:28px minmax(0,1fr) 40px; align-items:center; gap:9px; padding:0 10px 0 17px; border:1.5px solid #dce3ee; border-radius:14px; background:#f8f9fc; }
.seller-auth-input:focus-within { border-color:var(--isoko-blue-2); box-shadow:0 0 0 4px rgba(11,87,199,.1); background:#fff; }
.seller-auth-input input { min-width:0; border:0; outline:0; background:transparent; }
.seller-auth-input button { width:38px; height:38px; display:grid; place-items:center; border:0; border-radius:10px; color:var(--muted); background:transparent; }
.seller-auth-divider { display:flex; align-items:center; gap:12px; margin:24px 0 18px; color:var(--muted); font-size:13px; }
.seller-auth-divider::before, .seller-auth-divider::after { content:""; height:1px; flex:1; background:#e3e8f1; }
.seller-auth-help { display:flex; align-items:center; gap:12px; margin-top:24px; padding:16px; border-radius:14px; background:#eef5ff; }
.seller-auth-help > span { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; color:#fff; background:var(--isoko-blue); }
.seller-auth-help strong, .seller-auth-help small { display:block; }
.seller-auth-help small { color:var(--muted); }
.seller-register-shell { min-height:100vh; padding-bottom:70px; background:linear-gradient(180deg,#eef5ff 0,#f5f7fb 400px); }
.seller-register-top { min-height:100px; display:flex; align-items:center; justify-content:space-between; gap:25px; padding:10px clamp(20px,5vw,80px); border-bottom:1px solid #dce5f2; background:#fff; }
.seller-register-top > a { width:260px; height:78px; }
.seller-register-top img { width:100%; height:100%; object-fit:contain; object-position:left center; }
.seller-register-top > div { display:flex; align-items:center; gap:18px; color:var(--muted); }
.seller-register-hero { width:min(1180px,calc(100% - 40px)); margin:55px auto 25px; display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:35px; align-items:end; }
.seller-register-hero > div > p { color:var(--isoko-blue); font-size:13px; font-weight:900; letter-spacing:.14em; }
.seller-register-hero h1 { margin-bottom:16px; font-size:clamp(42px,5vw,66px); line-height:1; letter-spacing:-.05em; }
.seller-register-hero > div > span { display:block; max-width:760px; color:var(--muted); font-size:18px; }
.seller-register-hero aside { padding:24px; border-radius:20px; color:#fff; background:var(--isoko-navy); }
.seller-register-hero aside > strong { display:block; margin-bottom:12px; font-size:18px; }
.seller-register-hero ol { display:grid; gap:10px; margin:0; padding:0; list-style:none; }
.seller-register-hero li { display:flex; align-items:center; gap:10px; color:#dce7fb; }
.seller-register-hero li b { width:28px; height:28px; display:grid; place-items:center; border-radius:8px; color:#fff; background:var(--isoko-orange); }
.seller-register-card { width:min(1180px,calc(100% - 40px)); margin:auto; padding:40px; border:1px solid #dfe6f0; border-radius:28px; background:#fff; box-shadow:var(--shadow-md); }
.seller-form-alert { display:flex; gap:10px; align-items:center; margin-bottom:25px; padding:15px 18px; border-radius:13px; color:#8d2034; background:#fff0f3; }
.seller-register-form { display:grid; gap:34px; }
.seller-register-section { display:grid; grid-template-columns:250px minmax(0,1fr); gap:40px; padding-bottom:34px; border-bottom:1px solid #e7ebf2; }
.seller-register-section__heading { display:flex; align-items:flex-start; gap:14px; }
.seller-register-section__heading > span { width:42px; height:42px; display:grid; place-items:center; flex:0 0 auto; border-radius:12px; color:#fff; background:var(--isoko-blue); font-weight:900; }
.seller-register-section__heading h2 { margin:0 0 6px; font-size:21px; }
.seller-register-section__heading p { color:var(--muted); font-size:13px; }
.seller-terms { display:flex; gap:12px; align-items:flex-start; padding:17px; border:1px solid #dfe6ef; border-radius:14px; background:#f8fafc; }
.seller-terms input { width:20px; height:20px; flex:0 0 auto; }
.seller-terms-error { margin-top:-25px; }
.seller-register-actions { display:flex; justify-content:flex-end; gap:12px; }

/* Seller center shell */
.seller-sidebar { position:fixed; inset:0 auto 0 0; z-index:1200; width:286px; display:flex; flex-direction:column; padding:20px 16px; color:#dce7fb; background:linear-gradient(180deg,#061b45,#072d6f 65%,#061b45); box-shadow:10px 0 30px rgba(5,26,66,.12); overflow-y:auto; }
.seller-logo { display:flex; flex-direction:column; gap:6px; padding:4px 8px 22px; border-bottom:1px solid rgba(255,255,255,.12); }
.seller-logo img { width:230px; height:72px; object-fit:contain; object-position:left center; filter:drop-shadow(0 5px 12px rgba(0,0,0,.14)); }
.seller-logo span { padding-left:7px; color:#8fb7ff; font-size:11px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.seller-sidebar__label { margin:24px 10px 9px; color:#7195d2; font-size:10px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; }
.seller-sidebar nav { display:grid; gap:5px; }
.seller-sidebar nav a { min-height:50px; display:grid; grid-template-columns:26px minmax(0,1fr) auto; align-items:center; gap:10px; padding:0 13px; border-radius:12px; color:#c6d7f3; font-weight:750; }
.seller-sidebar nav a:hover, .seller-sidebar nav a.is-active { color:#fff; background:rgba(255,255,255,.11); }
.seller-sidebar nav a.is-active { box-shadow:inset 3px 0 0 var(--isoko-orange); }
.seller-sidebar__footer { margin-top:auto; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); }
.seller-user { display:grid; grid-template-columns:42px minmax(0,1fr); align-items:center; gap:10px; padding:10px; }
.seller-user > span { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(135deg,var(--isoko-orange),#ff9b50); font-weight:900; }
.seller-user strong, .seller-user small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.seller-user small { color:#8fb0e6; font-size:11px; }
.seller-sidebar__footer form button { width:100%; min-height:44px; display:flex; align-items:center; gap:9px; padding:0 12px; border:0; border-radius:10px; color:#d7e3f7; background:transparent; }
.seller-sidebar__footer form button:hover { background:rgba(255,255,255,.08); }
.seller-main { min-height:100vh; margin-left:286px; }
.seller-topbar { position:sticky; top:0; z-index:800; min-height:88px; display:flex; align-items:center; gap:18px; padding:0 32px; border-bottom:1px solid #dde4ef; background:rgba(255,255,255,.96); backdrop-filter:blur(14px); }
.seller-topbar > div:nth-child(2) { min-width:0; }
.seller-topbar small { display:block; color:var(--isoko-blue); font-size:10px; font-weight:900; letter-spacing:.13em; }
.seller-topbar h1 { margin:2px 0 0; font-size:25px; letter-spacing:-.03em; }
.seller-topbar__actions { margin-left:auto; display:flex; align-items:center; gap:12px; }
.seller-store-link { min-width:190px; display:flex; align-items:center; gap:10px; padding:8px 12px; border:1px solid #dce4ef; border-radius:12px; }
.seller-store-link small, .seller-store-link strong { display:block; white-space:nowrap; }
.seller-store-link small { color:var(--muted); font-size:10px; }
.seller-menu-button { display:none; }
.seller-content { padding:30px 32px 60px; }
.seller-welcome, .seller-page-intro { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-bottom:24px; padding:30px; border-radius:24px; color:#fff; background:radial-gradient(circle at 90% 30%,rgba(255,103,0,.35),transparent 25%),linear-gradient(130deg,#061c48,#073f98); box-shadow:var(--shadow-md); }
.seller-welcome > div:first-child p, .seller-page-intro > div > p { margin-bottom:7px; color:#a9c7fa; font-size:12px; font-weight:900; letter-spacing:.12em; }
.seller-welcome h2, .seller-page-intro h2 { margin-bottom:8px; font-size:33px; letter-spacing:-.035em; }
.seller-welcome > div:first-child span, .seller-page-intro > div > span { color:#d9e6fa; }
.seller-shop-status { display:flex; align-items:center; gap:12px; min-width:230px; padding:16px 18px; border:1px solid rgba(255,255,255,.2); border-radius:16px; background:rgba(255,255,255,.1); }
.seller-shop-status small, .seller-shop-status strong { display:block; }
.seller-shop-status small { color:#c9daf5; font-size:11px; }
.seller-shop-status--approved svg { color:#72e39a; }
.seller-shop-status--pending_review svg { color:#ffd26b; }
.seller-stat-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-bottom:22px; }
.seller-stat-grid article { min-height:135px; display:grid; grid-template-columns:58px minmax(0,1fr); align-items:center; gap:16px; padding:22px; border:1px solid #e1e7f0; border-radius:19px; background:#fff; box-shadow:var(--shadow-sm); }
.seller-stat-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:16px; }
.seller-stat-icon--blue { color:#0b57c7; background:#eaf2ff; }
.seller-stat-icon--orange { color:#e95d00; background:#fff0e6; }
.seller-stat-icon--green { color:#0a8b3d; background:#e8f8ee; }
.seller-stat-icon--red { color:#c82a47; background:#fff0f3; }
.seller-stat-grid small, .seller-stat-grid strong, .seller-stat-grid em { display:block; }
.seller-stat-grid small { color:var(--muted); font-size:12px; }
.seller-stat-grid strong { margin:2px 0; font-size:27px; line-height:1.1; }
.seller-stat-grid em { color:var(--muted); font-size:11px; font-style:normal; }
.seller-dashboard-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(330px,.6fr); gap:20px; margin-bottom:20px; }
.seller-dashboard-grid--bottom { grid-template-columns:1fr 1fr; }
.seller-panel { min-width:0; padding:23px; border:1px solid #e0e6ef; border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); }
.seller-panel > header { display:flex; align-items:flex-start; justify-content:space-between; gap:15px; margin-bottom:20px; }
.seller-panel > header p { margin-bottom:2px; color:var(--isoko-blue); font-size:10px; font-weight:900; letter-spacing:.13em; }
.seller-panel > header h2 { margin:0; font-size:21px; }
.seller-panel > header a { color:var(--isoko-blue); font-weight:800; font-size:13px; }
.seller-performance-card > header > span { padding:7px 10px; border-radius:9px; color:var(--muted); background:#f3f5f9; font-size:11px; }
.seller-chart { height:230px; padding:20px 10px 0; border-radius:16px; background:linear-gradient(180deg,#f3f7ff,#fff); }
.seller-chart-bars { height:100%; display:flex; align-items:end; gap:12px; }
.seller-chart-bars span { height:100%; flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; gap:7px; }
.seller-chart-bars i { width:min(32px,70%); min-height:12px; border-radius:9px 9px 3px 3px; background:linear-gradient(180deg,#0b57c7,#83aef3); }
.seller-chart-bars small { color:var(--muted); font-size:10px; }
.seller-performance-card footer { display:flex; align-items:center; justify-content:space-between; gap:15px; margin-top:16px; color:var(--muted); font-size:12px; }
.seller-performance-card footer span { display:flex; align-items:center; gap:7px; }
.seller-performance-card footer i { width:9px; height:9px; border-radius:50%; background:var(--isoko-blue-2); }
.seller-performance-card footer strong { color:var(--isoko-green); }
.seller-shop-preview { display:grid; grid-template-columns:96px minmax(0,1fr); gap:16px; align-items:center; margin-bottom:18px; }
.seller-shop-preview img { width:96px; height:96px; object-fit:contain; padding:8px; border-radius:20px; background:#eef5ff; }
.seller-shop-preview strong, .seller-shop-preview span { display:block; }
.seller-shop-preview span { color:var(--isoko-orange); font-size:12px; font-weight:800; }
.seller-shop-preview p { margin:7px 0 0; color:var(--muted); font-size:13px; }
.seller-product-list, .seller-order-list { display:grid; }
.seller-product-list a { display:grid; grid-template-columns:56px minmax(0,1fr) auto; gap:12px; align-items:center; padding:10px 0; border-bottom:1px solid #edf0f5; }
.seller-product-list img { width:56px; height:56px; object-fit:contain; border-radius:10px; background:#f6f8fb; }
.seller-product-list strong, .seller-product-list small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.seller-product-list small { color:var(--muted); }
.seller-order-list article { display:grid; grid-template-columns:42px minmax(0,1fr) auto; gap:12px; align-items:center; padding:14px 0; border-bottom:1px solid #edf0f5; }
.seller-order-list article > span { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; color:var(--isoko-blue); background:#eef5ff; }
.seller-order-list strong, .seller-order-list small { display:block; }
.seller-order-list small { color:var(--muted); }
.seller-page-intro { color:var(--ink); background:#fff; }
.seller-page-intro > div > p { color:var(--isoko-blue); }
.seller-page-intro > div > span { color:var(--muted); }
.seller-page-intro .seller-shop-status { min-width:auto; color:#fff; background:var(--isoko-blue); }
.seller-form-grid { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:20px; align-items:start; }
.seller-form-grid > aside { display:grid; gap:20px; }
.seller-form .form-field input, .seller-form .form-field select, .seller-form .form-field textarea,
.seller-register-form .form-field input, .seller-register-form .form-field select, .seller-register-form .form-field textarea { font-size:15px; }
.seller-form-actions { position:sticky; bottom:0; z-index:20; display:flex; justify-content:flex-end; gap:12px; margin-top:20px; padding:14px; border:1px solid #e1e6ee; border-radius:16px; background:rgba(255,255,255,.95); backdrop-filter:blur(10px); }
.seller-logo-preview { display:grid; place-items:center; min-height:150px; margin-top:15px; border:1px dashed #cad5e5; border-radius:16px; background:#f7f9fc; }
.seller-logo-preview img { max-width:220px; max-height:120px; object-fit:contain; }
.seller-commission-card { display:grid; grid-template-columns:52px 1fr; gap:14px; }
.seller-commission-card > span { width:52px; height:52px; display:grid; place-items:center; border-radius:15px; color:#fff; background:var(--isoko-green); }
.seller-commission-card small, .seller-commission-card strong { display:block; }
.seller-commission-card strong { font-size:27px; }
.seller-commission-card p { margin:5px 0 0; color:var(--muted); font-size:12px; }
.table-edit-link { width:36px; height:36px; display:grid; place-items:center; border-radius:9px; color:var(--isoko-blue); background:#eef5ff; }
.seller-backdrop { display:none; }

/* Admin marketplace additions */
.inline-status-form { display:flex; align-items:center; gap:6px; }
.inline-status-form select { min-width:125px; height:38px; border:1px solid #dbe3ef; border-radius:9px; background:#fff; }
.inline-status-form button { width:38px; height:38px; display:grid; place-items:center; border:0; border-radius:9px; color:#fff; background:var(--isoko-blue); }
.admin-bug-counter { display:inline-flex; align-items:center; gap:8px; padding:11px 14px; border-radius:12px; color:#fff; background:var(--isoko-red); font-weight:800; }
.bug-url { display:block; max-width:360px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.status--approved, .status--resolved { color:#087b36; background:#e6f8ed; }
.status--pending_review, .status--investigating { color:#9c6100; background:#fff4d8; }
.status--suspended, .status--rejected, .status--open { color:#a41f3b; background:#fff0f3; }
.status--ignored { color:#5e6878; background:#eef1f5; }

@media (max-width: 1380px) {
  .market-header__main { grid-template-columns: minmax(205px,230px) minmax(270px,1fr) max-content; gap:16px; }
  .market-logo { width:225px; height:78px; }
  .desktop-action { display:none; }
  .header-search__submit { min-width:112px; padding-inline:17px; }
  .seller-stat-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 1180px) {
  .market-header__main { grid-template-columns: 205px minmax(250px,1fr) 104px; }
  .market-logo { width:200px; height:72px; }
  .header-actions .header-action span:last-child { display:none; }
  .header-action { width:48px; min-width:48px; justify-content:center; padding:6px; }
  .header-actions { gap:4px; }
  .header-search__submit { min-width:104px; }
  .market-nav-row { gap:18px; font-size:13px; }
  .seller-landing-hero__grid { grid-template-columns:1fr 440px; gap:35px; }
  .seller-steps-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .seller-landing-features__grid { gap:40px; }
}

@media (max-width: 980px) {
  .market-header { position:sticky; }
  .market-header__main {
    min-height:142px;
    grid-template-columns:48px minmax(170px,1fr) auto;
    grid-template-rows:76px 58px;
    gap:4px 10px;
    padding-block:4px;
  }
  .market-mobile-menu { display:grid !important; grid-column:1; grid-row:1; }
  .market-logo { grid-column:2; grid-row:1; width:225px; height:74px; justify-self:start; }
  .header-actions { grid-column:3; grid-row:1; }
  .header-search { grid-column:1/-1; grid-row:2; max-width:none; }
  .header-search__form { height:54px; grid-template-columns:25px minmax(0,1fr) 30px auto; }
  .header-search__submit { min-width:112px; height:44px; }
  .market-header__nav, .mega-menu { display:none !important; }
  .seller-landing-hero__grid { grid-template-columns:1fr; min-height:auto; padding-block:65px; }
  .seller-landing-hero aside { min-height:500px; max-width:620px; width:100%; margin:auto; }
  .seller-landing-features__grid { grid-template-columns:1fr; }
  .seller-auth-shell { grid-template-columns:1fr; }
  .seller-auth-brand { min-height:620px; }
  .seller-auth-panel { padding:35px 20px; }
  .seller-register-section { grid-template-columns:1fr; gap:20px; }
  .seller-register-hero { grid-template-columns:1fr; }
  .seller-register-hero aside { display:none; }
  .seller-sidebar { transform:translateX(-105%); transition:transform .25s ease; }
  .seller-sidebar.is-open { transform:translateX(0); }
  .seller-main { margin-left:0; }
  .seller-menu-button { display:grid; }
  .seller-backdrop { position:fixed; inset:0; z-index:1100; display:block; opacity:0; pointer-events:none; background:rgba(3,16,42,.52); transition:.2s; }
  .seller-backdrop.is-open { opacity:1; pointer-events:auto; }
  .seller-dashboard-grid, .seller-dashboard-grid--bottom { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
  .container { width:calc(100% - 24px); }
  .top-commercial-bar { display:none; }
  .market-header__main { min-height:132px; grid-template-columns:42px minmax(140px,1fr) 96px; grid-template-rows:70px 56px; gap:2px 6px; }
  .market-logo { width:min(215px,100%); height:68px; }
  .header-actions { width:96px; justify-content:flex-end; }
  .header-action { width:44px; min-width:44px; height:44px; }
  .header-search__form { height:52px; padding-left:14px; border-radius:14px; grid-template-columns:23px minmax(0,1fr) 29px 48px; }
  .header-search__form input { font-size:15px; }
  .header-search__submit { min-width:44px; width:44px; height:42px; padding:0; }
  .header-search__submit span { display:none; }
  .header-search__submit svg { display:block; }
  .search-results { left:-2px; right:-2px; border-radius:13px; }
  .search-result { grid-template-columns:48px minmax(0,1fr); }
  .search-result b { grid-column:2; }
  .mobile-nav { width:min(90vw,380px); }
  .mobile-nav__header img { width:210px; height:70px; object-fit:contain; object-position:left center; }
  .market-product-rail--six { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .market-section-card { overflow:hidden; }
  .product-card { min-width:0; }
  .seller-landing-hero h1 { font-size:43px; }
  .seller-landing-hero h1 + span { font-size:17px; }
  .seller-landing-hero__grid > div > div { flex-direction:column; align-items:stretch; }
  .seller-landing-hero aside { min-height:400px; }
  .seller-landing-device { inset:15px 0 0; }
  .seller-floating-card { display:none; }
  .seller-device-stats { grid-template-columns:1fr 1fr; }
  .seller-device-stats span:last-child { grid-column:1/-1; }
  .seller-steps-grid, .seller-feature-list { grid-template-columns:1fr; }
  .seller-landing-cta .container { flex-direction:column; align-items:flex-start; }
  .seller-landing-cta .button { width:100%; }
  .seller-auth-brand { min-height:560px; padding:32px 24px; }
  .seller-auth-brand__logo { width:285px; }
  .seller-auth-brand h1 { font-size:49px; }
  .seller-auth-benefits { display:grid; }
  .seller-auth-card { padding:30px 22px; border-radius:22px; }
  .seller-auth-card h2 { font-size:32px; }
  .seller-register-top { min-height:82px; padding:7px 14px; }
  .seller-register-top > a { width:190px; height:64px; }
  .seller-register-top > div > span { display:none; }
  .seller-register-hero, .seller-register-card { width:calc(100% - 24px); }
  .seller-register-hero { margin-top:30px; }
  .seller-register-card { padding:24px 18px; border-radius:20px; }
  .seller-register-actions { flex-direction:column-reverse; }
  .seller-register-actions .button { width:100%; }
  .seller-topbar { min-height:76px; padding:0 14px; }
  .seller-topbar h1 { font-size:20px; }
  .seller-topbar__actions .button { display:none; }
  .seller-store-link { min-width:auto; width:44px; height:44px; padding:0; justify-content:center; }
  .seller-store-link span { display:none; }
  .seller-content { padding:18px 12px 45px; }
  .seller-welcome, .seller-page-intro { align-items:flex-start; flex-direction:column; padding:22px; }
  .seller-welcome h2, .seller-page-intro h2 { font-size:27px; }
  .seller-shop-status { width:100%; min-width:0; }
  .seller-stat-grid { grid-template-columns:1fr; gap:11px; }
  .seller-stat-grid article { min-height:110px; }
  .seller-form-grid { grid-template-columns:1fr; }
  .seller-form-actions { flex-direction:column-reverse; }
  .seller-form-actions .button { width:100%; }
  .seller-products-table-wrap .admin-table { min-width:720px; }
}

@media (max-width: 460px) {
  .market-header__main { grid-template-columns:40px minmax(130px,1fr) 88px; }
  .market-logo { width:min(178px,100%); height:62px; }
  .header-actions { width:88px; }
  .header-action { width:40px; min-width:40px; }
  .header-search__form { grid-template-columns:22px minmax(0,1fr) 28px 44px; gap:6px; padding-left:11px; }
  .header-search__form input { font-size:14px; }
  .seller-landing-hero__grid { padding-block:45px; }
  .seller-landing-hero h1 { font-size:37px; }
  .seller-landing-device__content { padding:15px; }
  .seller-device-chart { height:130px; }
  .seller-landing-steps, .seller-landing-features { padding:60px 0; }
  .seller-steps-grid article { min-height:245px; padding:24px; }
  .seller-landing-features aside { padding:28px 22px; }
  .seller-auth-brand h1 { font-size:41px; }
  .seller-auth-brand__copy > p:last-child { font-size:16px; }
  .seller-register-top > a { width:160px; }
  .seller-register-top .button { min-height:42px; padding-inline:12px; font-size:13px; }
  .seller-register-hero h1 { font-size:38px; }
  .seller-register-section__heading { flex-direction:column; }
}
.admin-marketplace-strip { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:20px; }
.admin-marketplace-strip a { min-height:82px; display:grid; grid-template-columns:48px minmax(0,1fr) 24px; align-items:center; gap:12px; padding:15px 18px; border:1px solid #e0e6ef; border-radius:17px; background:#fff; box-shadow:var(--shadow-sm); }
.admin-marketplace-strip a > span { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:#fff; background:var(--isoko-blue); }
.admin-marketplace-strip a:nth-child(2) > span { background:var(--isoko-red); }
.admin-marketplace-strip small, .admin-marketplace-strip strong { display:block; }
.admin-marketplace-strip small { color:var(--muted); }
.admin-marketplace-strip strong { font-size:23px; }
@media(max-width:760px){.admin-marketplace-strip{grid-template-columns:1fr;}}

/* ISOKO 2.1.0 — definitive header grid correction */
.header-search__form {
  grid-template-columns: 28px minmax(0, 1fr) 34px 132px;
  overflow: hidden;
}
.header-search__submit {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
}

@media (max-width: 1380px) {
  .header-search__form { grid-template-columns: 28px minmax(0, 1fr) 34px 112px; }
}

@media (max-width: 1180px) {
  .header-search__form { grid-template-columns: 28px minmax(0, 1fr) 34px 104px; }
}

/* The legacy tablet breakpoint activates the mobile menu at 1120px.
   The complete header is therefore deliberately switched to two rows. */
@media (max-width: 1120px) {
  .market-header { position: sticky; }
  .market-header__main {
    min-height: 142px;
    grid-template-columns: 48px minmax(170px, 1fr) auto;
    grid-template-rows: 76px 58px;
    gap: 4px 10px;
    padding-block: 4px;
  }
  .market-mobile-menu { display: grid !important; grid-column: 1; grid-row: 1; }
  .market-logo { grid-column: 2; grid-row: 1; width: 225px; height: 74px; justify-self: start; }
  .header-actions { grid-column: 3; grid-row: 1; }
  .header-search { grid-column: 1 / -1; grid-row: 2; width: 100%; max-width: none; }
  .header-search__form { height: 54px; grid-template-columns: 25px minmax(0, 1fr) 30px 112px; }
  .header-search__submit { height: 44px; }
  .market-header__nav, .mega-menu { display: none !important; }
}

@media (max-width: 760px) {
  .header-search__form { grid-template-columns: 23px minmax(0, 1fr) 29px 44px; }
  .header-search__submit { width: 44px; padding: 0; }
}

@media (max-width: 460px) {
  .market-logo { width: min(184px, 100%); }
  .header-search__form { grid-template-columns: 22px minmax(0, 1fr) 28px 42px; }
  .header-search__submit { width: 42px; }
}
.header-search__form > svg { grid-column: 1; }
.header-search__form > input { grid-column: 2; }
.search-clear { grid-column: 3; }
.header-search__submit { grid-column: 4; }

/* In-dashboard notifications stay in document flow: no content overlap. */
.seller-main > .admin-flashes,
.admin-main > .admin-flashes {
  position: relative;
  inset: auto;
  z-index: 20;
  width: auto;
  margin: 18px 32px 0;
}
.seller-main > .admin-flashes .flash,
.admin-main > .admin-flashes .flash {
  box-shadow: var(--shadow-sm);
}

@media (max-width: 760px) {
  .seller-main > .admin-flashes,
  .admin-main > .admin-flashes { margin: 12px 12px 0; }
  .admin-status {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px;
  }
  .admin-status > span { grid-row: 1; }
  .admin-status > div { grid-column: 2; }
  .admin-status a { grid-column: 1 / -1; justify-content: center; min-height: 42px; margin-top: 4px; border-top: 1px solid currentColor; padding-top: 12px; }
}

/* ========================================================================== 
   ISOKO 3.0 — Mobile application, PWA and Growth Engine
   ========================================================================== */
.pwa-install-banner {
  position: fixed; left: max(18px, env(safe-area-inset-left)); right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 1800;
  width: min(760px, calc(100% - 36px)); margin-inline: auto; display: grid; grid-template-columns: 78px minmax(0,1fr) auto; align-items: center; gap: 18px;
  padding: 18px 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; color: #fff;
  background: linear-gradient(125deg, #041d4b 0%, #073f98 56%, #0b57c7 100%); box-shadow: 0 24px 80px rgba(3,23,61,.38); overflow: hidden;
}
.pwa-install-banner::before { content:""; position:absolute; width:260px; height:260px; right:95px; top:-180px; border-radius:50%; background:rgba(255,255,255,.09); }
.pwa-install-banner > * { position:relative; z-index:1; }
.pwa-install-banner > img { width:72px; height:72px; object-fit:cover; border-radius:19px; background:#fff; box-shadow:0 10px 26px rgba(0,0,0,.16); }
.pwa-install-banner small,.pwa-install-banner strong,.pwa-install-banner p,.pwa-install-banner em { display:block; }
.pwa-install-banner small { color:#95dbb1; font-size:11px; font-weight:900; letter-spacing:.12em; }
.pwa-install-banner strong { margin:2px 0 3px; font-size:20px; line-height:1.2; }
.pwa-install-banner p { margin:0; color:#dce9ff; font-size:14px; }
.pwa-install-banner em { margin-top:5px; color:#ffbf84; font-style:normal; font-size:13px; font-weight:800; }
.pwa-install-banner__close { position:absolute; top:8px; right:8px; z-index:3; width:30px; height:30px; display:grid; place-items:center; border:0; border-radius:50%; color:#fff; background:rgba(255,255,255,.12); }

.market-app-promo { padding: 28px 0 50px; }
.market-app-promo__inner { min-height:500px; display:grid; grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr); align-items:center; gap:50px; padding:54px 70px; border-radius:34px; overflow:hidden; position:relative; color:#fff; background:linear-gradient(128deg,#041d4b 0%,#073f98 52%,#1566d6 100%); box-shadow:var(--shadow-lg); }
.market-app-promo__inner::before,.market-app-promo__inner::after { content:""; position:absolute; border-radius:50%; pointer-events:none; }
.market-app-promo__inner::before { width:420px; height:420px; left:-230px; bottom:-260px; background:rgba(255,103,0,.28); }
.market-app-promo__inner::after { width:500px; height:500px; right:-220px; top:-280px; border:1px solid rgba(255,255,255,.16); box-shadow:0 0 0 70px rgba(255,255,255,.035),0 0 0 140px rgba(255,255,255,.025); }
.market-app-promo__copy,.market-app-device { position:relative; z-index:2; }
.market-app-promo__copy h2 { max-width:760px; margin:14px 0 18px; font-size:clamp(38px,4.3vw,68px); line-height:.99; letter-spacing:-.045em; }
.market-app-promo__copy > p:not(.market-kicker) { max-width:690px; color:#d8e7ff; font-size:19px; }
.market-app-promo__features { display:flex; flex-wrap:wrap; gap:10px; margin:26px 0; }
.market-app-promo__features span { display:inline-flex; align-items:center; gap:8px; min-height:40px; padding:8px 13px; border:1px solid rgba(255,255,255,.19); border-radius:999px; color:#eff6ff; background:rgba(255,255,255,.08); font-size:14px; font-weight:800; }
.market-app-promo__actions { display:flex; align-items:center; flex-wrap:wrap; gap:12px; }
.app-store-badge { min-height:54px; display:inline-flex; align-items:center; justify-content:center; padding:0 20px; border:1px solid rgba(255,255,255,.28); border-radius:13px; color:#fff; background:#061735; font-weight:850; }
.market-app-device { width:min(340px,100%); justify-self:center; padding:12px; border:1px solid rgba(255,255,255,.34); border-radius:42px; background:#071328; box-shadow:0 30px 60px rgba(0,0,0,.35); transform:rotate(3deg); }
.market-app-device__speaker { width:90px; height:7px; margin:2px auto 11px; border-radius:20px; background:#293954; }
.market-app-device__screen { min-height:430px; padding:21px 16px 12px; overflow:hidden; border-radius:31px; color:var(--ink); background:linear-gradient(#fff,#f2f6fc); }
.market-app-device__screen > img { width:150px; height:47px; margin:0 auto 18px; object-fit:contain; }
.market-app-device__search { min-height:43px; display:flex; align-items:center; gap:8px; padding:0 13px; border-radius:13px; color:#7a879c; background:#e8eef8; font-size:12px; }
.market-app-device__cards { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:18px; }
.market-app-device__cards article { min-width:0; padding:8px; border-radius:14px; background:#fff; box-shadow:0 6px 18px rgba(4,29,75,.10); }
.market-app-device__cards img { width:100%; aspect-ratio:1; object-fit:contain; border-radius:10px; background:#f7f9fc; }
.market-app-device__cards span,.market-app-device__cards strong { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.market-app-device__cards span { margin-top:8px; font-size:10px; }
.market-app-device__cards strong { margin-top:3px; color:var(--isoko-blue); font-size:11px; }
.market-app-device__screen nav { display:grid; grid-template-columns:repeat(4,1fr); place-items:center; margin:31px -6px 0; padding:12px 5px 2px; border-top:1px solid #dde4f0; color:#728099; }
.market-app-device__screen nav span:first-child { color:var(--isoko-orange); }
.purchase-actions { flex-wrap:wrap; }
.purchase-share { min-width:50px; padding-inline:14px; }

/* Growth admin */
.marketing-hero,.seo-hero,.campaign-hero,.social-hero,.integration-hero,.mobile-app-hero { position:relative; overflow:hidden; min-height:210px; display:flex; align-items:flex-end; justify-content:space-between; gap:26px; padding:34px 38px; border-radius:25px; color:#fff; background:linear-gradient(125deg,#051d49,#073f98 58%,#1371df); box-shadow:0 18px 48px rgba(6,43,105,.18); }
.marketing-hero::after,.seo-hero::after,.campaign-hero::after,.social-hero::after,.integration-hero::after,.mobile-app-hero::after { content:""; position:absolute; right:-90px; top:-170px; width:380px; height:380px; border-radius:50%; border:1px solid rgba(255,255,255,.18); box-shadow:0 0 0 65px rgba(255,255,255,.045),0 0 0 130px rgba(255,255,255,.025); }
.marketing-hero > *,.seo-hero > *,.campaign-hero > *,.social-hero > *,.integration-hero > *,.mobile-app-hero > * { position:relative; z-index:2; }
.marketing-hero h2,.seo-hero h2,.campaign-hero h2,.social-hero h2,.integration-hero h2,.mobile-app-hero h2 { margin:4px 0 8px; font-size:clamp(31px,3vw,48px); line-height:1.02; letter-spacing:-.035em; }
.marketing-hero p,.seo-hero p,.campaign-hero p,.social-hero p,.integration-hero p,.mobile-app-hero p { max-width:770px; margin:0; color:#dbe9ff; }
.admin-eyebrow { margin:0 0 4px; color:#ffb06e !important; font-size:12px; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.marketing-period { display:flex; gap:7px; padding:6px; border:1px solid rgba(255,255,255,.19); border-radius:13px; background:rgba(255,255,255,.09); }
.marketing-period a { min-height:37px; display:grid; place-items:center; padding:0 13px; border-radius:9px; color:#dbe9ff; font-size:13px; font-weight:800; }
.marketing-period a.is-active { color:var(--isoko-blue); background:#fff; }
.marketing-command-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:15px; margin:20px 0; }
.marketing-command-grid a { min-height:104px; display:grid; grid-template-columns:48px minmax(0,1fr) 22px; align-items:center; gap:13px; padding:18px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow-sm); transition:.18s; }
.marketing-command-grid a:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:#b9cbea; }
.marketing-command-grid a > span:first-child { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:#fff; background:linear-gradient(135deg,var(--isoko-blue),#1d75dc); }
.marketing-command-grid a:nth-child(2) > span:first-child { background:linear-gradient(135deg,#ff6700,#ff9a32); }
.marketing-command-grid a:nth-child(3) > span:first-child { background:linear-gradient(135deg,#10a64a,#28c76f); }
.marketing-command-grid a:nth-child(4) > span:first-child { background:linear-gradient(135deg,#7619b9,#b84ee8); }
.marketing-command-grid strong,.marketing-command-grid small { display:block; }
.marketing-command-grid strong { font-size:17px; }
.marketing-command-grid small { color:var(--muted); }
.marketing-stat-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:15px; margin:20px 0; }
.marketing-stat-grid .admin-stat { min-height:128px; }
.marketing-main-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr); gap:20px; }
.marketing-funnel { display:grid; gap:12px; padding:4px 0; }
.marketing-funnel__row { display:grid; grid-template-columns:130px minmax(0,1fr) 70px; align-items:center; gap:12px; }
.marketing-funnel__row > div { height:12px; overflow:hidden; border-radius:20px; background:#edf1f7; }
.marketing-funnel__row i { display:block; height:100%; min-width:4px; border-radius:inherit; background:linear-gradient(90deg,var(--isoko-blue),#37a1ff); }
.marketing-source-list,.marketing-product-list,.campaign-mini-list { display:grid; gap:10px; }
.marketing-source-list article,.marketing-product-list article,.campaign-mini-list article { min-height:64px; display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid #edf0f5; }
.marketing-source-list article:last-child,.marketing-product-list article:last-child,.campaign-mini-list article:last-child { border-bottom:0; }
.marketing-source-list strong,.marketing-source-list small,.marketing-product-list strong,.marketing-product-list small { display:block; }
.marketing-source-list small,.marketing-product-list small { color:var(--muted); }
.marketing-product-list article { grid-template-columns:52px minmax(0,1fr) auto; }
.marketing-product-list img { width:52px; height:52px; object-fit:contain; border-radius:12px; background:#f5f7fb; }
.channel-badge { display:inline-flex; align-items:center; justify-content:center; min-width:48px; min-height:28px; padding:4px 9px; border-radius:999px; color:#073f98; background:#e7f0ff; font-size:11px; font-weight:900; letter-spacing:.05em; }
.channel-badge--sea { color:#aa4700; background:#fff0df; }.channel-badge--smo { color:#7324a7; background:#f4e8ff; }.channel-badge--email { color:#087542; background:#ddf8e9; }.channel-badge--sms,.channel-badge--push { color:#a2203b; background:#ffe8ed; }

.seo-score-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; margin:20px 0; }
.seo-score-grid article { min-height:115px; padding:20px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow-sm); }
.seo-score-grid small,.seo-score-grid strong { display:block; }.seo-score-grid small { color:var(--muted); }.seo-score-grid strong { margin-top:7px; color:var(--isoko-blue); font-size:32px; }
.seo-hero-actions { display:flex; gap:10px; flex-wrap:wrap; }
.admin-panel__header--wrap { flex-wrap:wrap; gap:12px; }
.seo-table .seo-score { width:52px; height:52px; display:grid; place-items:center; border-radius:50%; font-weight:900; border:5px solid #dbe8fb; }
.seo-score--good { color:#087542; border-color:#aee9ca !important; }.seo-score--warning { color:#a55a00; border-color:#ffe0a9 !important; }.seo-score--danger { color:#b42345; border-color:#ffc2ce !important; }
.seo-tags,.keyword-cloud { display:flex; flex-wrap:wrap; gap:7px; }
.seo-tags span,.keyword-cloud span { display:inline-flex; align-items:center; min-height:29px; padding:4px 10px; border-radius:999px; background:#eef3fb; color:#405171; font-size:12px; font-weight:750; }
.keyword-panel { margin-top:20px; }
.seo-ok { display:inline-flex; align-items:center; gap:6px; color:#087542; font-weight:800; }

.campaign-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:20px; }
.campaign-card { min-height:310px; display:flex; flex-direction:column; padding:22px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); }
.campaign-card:hover { box-shadow:var(--shadow-md); }
.campaign-card > header { display:flex; justify-content:space-between; gap:10px; align-items:flex-start; }
.campaign-card h3 { margin:16px 0 7px; font-size:22px; line-height:1.15; }
.campaign-card > p { color:var(--muted); }
.campaign-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:auto; padding-top:17px; border-top:1px solid #edf0f5; }
.campaign-metrics span { min-width:0; }.campaign-metrics small,.campaign-metrics strong { display:block; }.campaign-metrics small { color:var(--muted); font-size:11px; }.campaign-metrics strong { font-size:16px; }
.campaign-edit-link { width:100%; margin-top:16px; }
.copy-field { display:grid; grid-template-columns:minmax(0,1fr) 42px; gap:7px; padding:7px; border-radius:12px; background:#f4f7fb; }
.copy-field code { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; padding:8px; color:#3c4c68; }
.copy-field button { border:0; border-radius:9px; background:#fff; color:var(--isoko-blue); }.copy-field button.is-copied { color:#fff; background:var(--isoko-green); }
.admin-dialog { width:min(760px,calc(100% - 28px)); max-height:90vh; padding:0; border:0; border-radius:24px; box-shadow:0 32px 100px rgba(3,23,61,.35); }
.admin-dialog::backdrop { background:rgba(3,16,42,.62); backdrop-filter:blur(3px); }
.admin-dialog > form { padding:28px; }
.admin-dialog header { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; margin-bottom:20px; }
.admin-dialog header h2 { margin:0; font-size:28px; }.admin-dialog header button { width:42px; height:42px; border:0; border-radius:12px; }

.social-channel-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:13px; margin:20px 0; }
.social-channel-grid article { min-height:112px; display:flex; align-items:center; gap:12px; padding:17px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.social-logo { width:46px; height:46px; display:grid; place-items:center; border-radius:14px; color:#fff; background:var(--isoko-blue); font-weight:900; }
.social-logo--instagram { background:linear-gradient(135deg,#7042d8,#e42e72,#f5a326); }.social-logo--linkedin { background:#0874b8; }.social-logo--tiktok { background:#111; }.social-logo--youtube { background:#e62117; }
.social-channel-grid small,.social-channel-grid strong { display:block; }.social-channel-grid small { color:var(--muted); }
.social-calendar { display:grid; gap:12px; }
.social-calendar article { display:grid; grid-template-columns:85px 46px minmax(0,1fr) auto; align-items:center; gap:15px; padding:15px 0; border-bottom:1px solid #edf0f5; }
.social-date { text-align:center; color:var(--isoko-blue); font-weight:900; }.social-date small { display:block; color:var(--muted); font-weight:700; }
.social-content strong,.social-content p { display:block; }.social-content p { margin:4px 0 0; color:var(--muted); }

.settings-grid,.mobile-app-admin-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr); gap:20px; margin-top:20px; align-items:start; }
.marketing-settings-form { display:grid; gap:18px; }
.connector-status-panel { display:grid; gap:10px; }
.connector-status-panel article { display:grid; grid-template-columns:42px minmax(0,1fr) auto; align-items:center; gap:12px; padding:13px; border:1px solid #e4e8ef; border-radius:14px; }
.connector-status-panel article > span:first-child { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; background:#edf1f7; color:#70809a; }
.connector-status-panel article.is-connected > span:first-child { color:#fff; background:var(--isoko-green); }
.connector-status-panel small,.connector-status-panel strong { display:block; }.connector-status-panel small { color:var(--muted); }
.integration-security { display:flex; gap:12px; padding:17px; border-radius:16px; color:#34455f; background:#edf5ff; }
.toggle-field { display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:62px; padding:13px 15px; border:1px solid var(--line); border-radius:15px; background:#fff; }
.toggle-field input { width:46px; height:25px; accent-color:var(--isoko-blue); }

.mobile-app-hero__icon { width:90px; height:90px; display:grid; place-items:center; flex:0 0 auto; border-radius:25px; color:#073f98; background:#fff; box-shadow:0 16px 35px rgba(0,0,0,.16); }
.mobile-phone-preview { width:min(300px,100%); margin:auto; padding:11px; border-radius:38px; background:#071328; box-shadow:0 25px 60px rgba(4,25,65,.24); }
.mobile-phone-preview__bar { width:80px; height:6px; margin:2px auto 10px; border-radius:10px; background:#34415a; }
.mobile-phone-preview > div:last-child { min-height:520px; overflow:hidden; border-radius:28px; background:#f5f8fc; }
.mobile-phone-preview__hero { padding:20px 17px 25px; color:#fff; background:linear-gradient(135deg,#073f98,#176bda); }
.mobile-phone-preview__hero img { width:160px; height:48px; object-fit:contain; filter:brightness(0) invert(1); }
.mobile-phone-preview__hero h3 { margin:20px 0 5px; font-size:27px; }.mobile-phone-preview__hero p { margin:0; color:#dce9ff; font-size:13px; }
.mobile-phone-preview__search { min-height:44px; display:flex; align-items:center; gap:8px; margin:-15px 14px 12px; padding:0 12px; border-radius:13px; background:#fff; box-shadow:0 8px 20px rgba(4,29,75,.14); color:#8390a5; font-size:12px; }
.mobile-phone-preview__cards { display:grid; grid-template-columns:1fr 1fr; gap:10px; padding:12px; }
.mobile-phone-preview__cards article { min-width:0; padding:8px; border-radius:14px; background:#fff; box-shadow:0 4px 14px rgba(4,29,75,.08); }.mobile-phone-preview__cards img { aspect-ratio:1; object-fit:contain; }
.mobile-distribution-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.mobile-distribution-grid article { padding:18px; border:1px solid var(--line); border-radius:18px; background:#fff; }.mobile-distribution-grid .platform-mark { width:48px; height:48px; display:grid; place-items:center; margin-bottom:12px; border-radius:14px; color:#fff; background:#111; }
.mobile-distribution-grid article:nth-child(2) .platform-mark { background:#31a853; }
.mobile-distribution-grid small,.mobile-distribution-grid strong { display:block; }.mobile-distribution-grid small { color:var(--muted); }.mobile-distribution-grid strong { margin:4px 0 10px; font-size:19px; }
.mobile-distribution-grid article.is-ready { border-color:#9bdfbb; background:#f3fff8; }.mobile-distribution-grid article.is-pending { border-color:#ffe0a8; background:#fffaf1; }
.native-feature-list { display:grid; gap:10px; }.native-feature-list article { display:flex; gap:11px; padding:12px 0; border-bottom:1px solid #edf0f5; }.native-feature-list article:last-child { border-bottom:0; }.native-feature-list > article > span { width:39px; height:39px; display:grid; place-items:center; flex:0 0 auto; border-radius:11px; color:var(--isoko-blue); background:#e8f1ff; }
.app-endpoints-panel code { display:block; overflow-wrap:anywhere; padding:11px 13px; border-radius:11px; background:#0d1a30; color:#bfe0ff; font-size:12px; }

@media (max-width: 1180px) {
  .market-app-promo__inner { padding:45px 42px; gap:30px; }
  .marketing-command-grid,.marketing-stat-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .campaign-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .social-channel-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .market-app-promo__inner { grid-template-columns:1fr; text-align:center; }
  .market-app-promo__copy > p:not(.market-kicker) { margin-inline:auto; }
  .market-app-promo__features,.market-app-promo__actions { justify-content:center; }
  .market-app-device { margin-top:10px; transform:none; }
  .marketing-main-grid,.settings-grid,.mobile-app-admin-grid { grid-template-columns:1fr; }
  .seo-score-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .social-calendar article { grid-template-columns:70px 42px minmax(0,1fr); }.social-calendar article > .status { grid-column:3; justify-self:start; }
}
@media (max-width: 760px) {
  .pwa-install-banner { grid-template-columns:58px minmax(0,1fr); gap:12px; padding:15px; border-radius:20px; }
  .pwa-install-banner > img { width:56px; height:56px; border-radius:15px; }
  .pwa-install-banner strong { font-size:16px; }.pwa-install-banner p { display:none; }.pwa-install-banner > .button { grid-column:1/-1; width:100%; }
  .market-app-promo { padding:20px 0 35px; }
  .market-app-promo__inner { min-height:auto; padding:38px 21px; border-radius:24px; }
  .market-app-promo__copy h2 { font-size:39px; }
  .market-app-promo__copy > p:not(.market-kicker) { font-size:16px; }
  .market-app-promo__features { display:grid; grid-template-columns:1fr 1fr; width:100%; }
  .market-app-promo__features span { justify-content:center; border-radius:13px; }
  .market-app-promo__actions { flex-direction:column; align-items:stretch; }.market-app-promo__actions > * { width:100%; }
  .market-app-device { width:min(310px,100%); }
  .purchase-share span { display:none; }
  .marketing-hero,.seo-hero,.campaign-hero,.social-hero,.integration-hero,.mobile-app-hero { min-height:auto; flex-direction:column; align-items:flex-start; padding:27px 22px; }
  .marketing-period { width:100%; overflow:auto; }.marketing-period a { flex:1; }
  .marketing-command-grid,.marketing-stat-grid,.seo-score-grid,.campaign-grid,.social-channel-grid,.mobile-distribution-grid { grid-template-columns:1fr; }
  .marketing-funnel__row { grid-template-columns:95px minmax(0,1fr) 55px; font-size:13px; }
  .social-calendar article { grid-template-columns:58px minmax(0,1fr); align-items:start; }.social-calendar article .social-logo { grid-column:1; grid-row:2; }.social-calendar article .social-content { grid-column:2; grid-row:1/3; }.social-calendar article > .status { grid-column:2; }
  .admin-dialog > form { padding:21px 16px; }.admin-dialog header h2 { font-size:23px; }
}
@media (max-width: 480px) {
  .market-app-promo__copy h2 { font-size:34px; }
  .market-app-promo__features { grid-template-columns:1fr; }
  .market-app-device__screen { min-height:400px; }
}
