/*
 * AdeptDEV Full Commerce v1.0.2
 * Custom 2026 storefront layer. Isolated from OpenCart core/theme logic.
 */
:root {
  --adf-blue: #1765ff;
  --adf-blue-600: #0f56e8;
  --adf-blue-50: #eef5ff;
  --adf-navy: #14213d;
  --adf-navy-2: #1c2b4a;
  --adf-text: #111827;
  --adf-muted: #6b7280;
  --adf-line: #e5e9f1;
  --adf-soft: #f5f7fb;
  --adf-soft-blue: #eaf2ff;
  --adf-white: #ffffff;
  --adf-green: #169b62;
  --adf-amber: #d97706;
  --adf-red: #e5484d;
  --adf-radius-sm: 12px;
  --adf-radius: 18px;
  --adf-radius-lg: 26px;
  --adf-shadow-sm: 0 8px 24px rgba(31, 45, 77, .07);
  --adf-shadow: 0 24px 70px rgba(31, 45, 77, .12);
  --adf-shell: 1320px;
}

html { scroll-behavior: smooth; }
body.adf-body {
  margin: 0;
  background: #fff;
  color: var(--adf-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.adf-body.adf-lock { overflow: hidden; }
body.adf-body a { color: inherit; }
body.adf-body a:hover,
body.adf-body a:focus { text-decoration: none; }
body.adf-body button,
body.adf-body input { font: inherit; }
body.adf-body button { outline: 0; }

.adf-shell {
  width: min(calc(100% - 40px), var(--adf-shell));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.adf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}
.adf-header.is-scrolled {
  border-bottom-color: var(--adf-line);
  box-shadow: 0 12px 34px rgba(30, 48, 84, .08);
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.92);
}
.adf-topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  background: #fbfcfe;
  border-bottom: 1px solid #eef1f6;
  color: #5d677b;
  font-size: 12px;
}
.adf-topbar__inner,
.adf-topbar__left,
.adf-topbar__right {
  display: flex;
  align-items: center;
}
.adf-topbar__inner { justify-content: space-between; gap: 24px; min-height: 34px; }
.adf-topbar__left { gap: 20px; min-width: 0; }
.adf-topbar__right { gap: 16px; white-space: nowrap; }
.adf-topbar__right > a { color: #4d586b; transition: color .18s ease; }
.adf-topbar__right > a:hover { color: var(--adf-blue); }
.adf-topbar__delivery { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #374151; }
.adf-topbar__delivery svg { width: 15px; height: 15px; fill: none; stroke: var(--adf-blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.adf-topbar__hours { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.adf-language #form-language { display: flex; align-items: center; gap: 3px; margin: 0; }
.adf-language .language-select {
  appearance: none;
  border: 0;
  background: transparent;
  color: #667085;
  padding: 2px 4px;
  line-height: 1.2;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.adf-language .language-select.selected { color: var(--adf-blue); }

.adf-mainbar { background: #fff; }
.adf-mainbar__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.adf-logo {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
  max-width: 180px;
  height: 46px;
}
.adf-logo img { max-width: 100%; max-height: 42px; object-fit: contain; display: block; }
.adf-logo strong { font-size: 21px; letter-spacing: -.5px; }
.adf-catalog-btn {
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--adf-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(23,101,255,.2);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.adf-catalog-btn:hover { background: var(--adf-blue-600); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(23,101,255,.28); }
.adf-catalog-btn__icon { width: 17px; display: grid; gap: 3px; }
.adf-catalog-btn__icon i { display: block; height: 2px; border-radius: 2px; background: currentColor; }
.adf-search-wrap { min-width: 0; }
.adf-search {
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dfe5ef;
  border-radius: 15px;
  background: #f8fafc;
  color: #788397;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  margin: 0;
}
.adf-search:focus-within { border-color: rgba(23,101,255,.55); box-shadow: 0 0 0 4px rgba(23,101,255,.08); background: #fff; }
.adf-search__icon { flex: 0 0 44px; display: grid; place-items: center; color: #667085; }
.adf-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--adf-text);
  padding: 0 6px !important;
  font-size: 13px;
}
.adf-search input::placeholder { color: #98a2b3; }
.adf-search__shortcut {
  height: 25px;
  min-width: 34px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e5ed;
  border-radius: 7px;
  background: #fff;
  color: #8a95a8;
  font-size: 10px;
  font-weight: 700;
}
.adf-search__submit {
  width: 42px;
  height: 42px;
  margin-right: 2px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--adf-blue);
  cursor: pointer;
}
.adf-search-suggest {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid var(--adf-line);
  border-radius: 18px;
  box-shadow: var(--adf-shadow);
  padding: 8px;
  z-index: 1020;
  max-height: 430px;
  overflow: auto;
}
.adf-search-suggest.is-open { display: block; }
.adf-suggest-item {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  transition: background .16s ease;
}
.adf-suggest-item:hover { background: #f6f9ff; }
.adf-suggest-item__media { width: 58px; height: 58px; border-radius: 11px; display: grid; place-items: center; background: var(--adf-soft); overflow: hidden; }
.adf-suggest-item__media img { width: 100%; height: 100%; object-fit: contain; }
.adf-suggest-item__media span { color: var(--adf-blue); font-weight: 800; }
.adf-suggest-item__copy { min-width: 0; }
.adf-suggest-item__copy small { display: block; color: #8a95a8; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.adf-suggest-item__copy strong { display: block; font-size: 12px; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adf-suggest-item__price { color: var(--adf-text); font-weight: 800; font-size: 12px; white-space: nowrap; }

.adf-actions { display: flex; align-items: stretch; gap: 4px; }
.adf-action,
.adf-action--button {
  min-width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 12px;
  color: #495468;
  cursor: pointer;
  padding: 0 6px;
  transition: background .16s ease, color .16s ease;
}
.adf-action:hover,
.adf-action--button:hover { background: #f5f8fd; color: var(--adf-blue); }
.adf-action__icon { width: 24px; height: 24px; position: relative; display: grid; place-items: center; }
.adf-action__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.adf-action__icon > b { position: absolute; right: -7px; top: -6px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--adf-blue); color: #fff; font-size: 9px; line-height: 17px; text-align: center; box-shadow: 0 0 0 2px #fff; }
.adf-action small { color: inherit; font-size: 9px; font-weight: 600; white-space: nowrap; }
.adf-mobile-actions { display: none; }

.adf-category-nav { border-top: 1px solid #f0f2f6; border-bottom: 1px solid #eceff5; background: #fff; }
.adf-category-nav__inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.adf-category-nav__rail { display: flex; align-items: center; gap: 22px; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.adf-category-nav__rail::-webkit-scrollbar { display: none; }
.adf-category-nav__rail a { font-size: 11px; font-weight: 600; color: #4e596b; white-space: nowrap; position: relative; }
.adf-category-nav__rail a:after { content:""; position:absolute; left:0; right:100%; bottom:-13px; height:2px; background:var(--adf-blue); transition:right .18s ease; }
.adf-category-nav__rail a:hover { color: var(--adf-blue); }
.adf-category-nav__rail a:hover:after { right:0; }
.adf-weekly-link { display: inline-flex; align-items: center; gap: 6px; color: var(--adf-blue) !important; font-size: 11px; font-weight: 700; white-space: nowrap; }
.adf-weekly-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* ---------- Cart ---------- */
.adf-cart { position: relative; min-width: 112px; }
.adf-cart__trigger {
  height: 54px;
  border: 0;
  border-radius: 13px;
  background: var(--adf-blue-50);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  color: var(--adf-blue);
  cursor: pointer;
  transition: background .17s ease;
}
.adf-cart__trigger:hover { background: #e2edff; }
.adf-cart__copy { display: flex; flex-direction: column; min-width: 0; text-align: left; }
.adf-cart__copy small { font-size: 9px; color: #62708a; font-weight: 600; }
.adf-cart__copy strong { max-width: 80px; overflow: hidden; text-overflow: ellipsis; font-size: 11px; color: var(--adf-text); white-space: nowrap; }
.adf-cart.open .adf-cart-popover { display: block; }
.adf-cart-popover {
  display: none;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: calc(100% + 12px) !important;
  width: min(390px, calc(100vw - 28px));
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  border: 1px solid var(--adf-line) !important;
  border-radius: 20px !important;
  box-shadow: var(--adf-shadow) !important;
  overflow: hidden;
  z-index: 1030;
  list-style: none;
}
.adf-cart-popover__head { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px; border-bottom:1px solid var(--adf-line); }
.adf-cart-popover__head > div { display:flex; flex-direction:column; gap:2px; }
.adf-cart-popover__head span { font-size:11px; color:var(--adf-blue); font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.adf-cart-popover__head strong { font-size:15px; }
.adf-cart-popover__head button { width:34px; height:34px; border:1px solid var(--adf-line); border-radius:10px; background:#fff; color:#596579; display:grid; place-items:center; cursor:pointer; }
.adf-cart-popover__head svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; }
.adf-mini-products { max-height: 310px; overflow:auto; padding: 8px 12px; }
.adf-mini-product { display:grid; grid-template-columns:62px minmax(0,1fr) 30px; gap:10px; align-items:center; padding:10px 0; border-bottom:1px solid #f0f2f6; }
.adf-mini-product:last-child { border-bottom:0; }
.adf-mini-product__media { width:62px; height:62px; border-radius:11px; background:var(--adf-soft); display:grid; place-items:center; overflow:hidden; }
.adf-mini-product__media img { width:100%; height:100%; object-fit:contain; }
.adf-mini-product__media span { color:var(--adf-blue); font-weight:800; }
.adf-mini-product__copy { min-width:0; display:flex; flex-direction:column; gap:3px; }
.adf-mini-product__copy > a { font-size:11px; line-height:1.35; font-weight:650; color:var(--adf-text); }
.adf-mini-product__copy span { font-size:10px; color:var(--adf-muted); }
.adf-mini-product__copy strong { font-size:11px; }
.adf-mini-product__remove { width:30px; height:30px; border:0; background:#f7f8fb; color:#7b879b; border-radius:9px; display:grid; place-items:center; }
.adf-mini-product__remove:hover { color:var(--adf-red); background:#fff1f2; }
.adf-mini-product__remove svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.adf-cart-summary { padding:12px 16px; background:#f8fafc; border-top:1px solid var(--adf-line); }
.adf-cart-summary div { display:flex; justify-content:space-between; gap:12px; padding:3px 0; font-size:11px; }
.adf-cart-summary div:last-child { font-size:13px; color:var(--adf-text); }
.adf-cart-popover__actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; padding:14px 16px 16px; }
.adf-cart-empty { padding:34px 18px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:12px; }
.adf-cart-empty__icon { width:52px; height:52px; border-radius:16px; display:grid; place-items:center; background:var(--adf-blue-50); color:var(--adf-blue); }
.adf-cart-empty__icon svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }

/* ---------- Mega menu ---------- */
.adf-mega { position:fixed; inset:0; z-index:1100; pointer-events:none; opacity:0; transition:opacity .2s ease; }
.adf-mega.is-open { pointer-events:auto; opacity:1; }
.adf-mega__backdrop { position:absolute; inset:0; background:rgba(20,33,61,.28); backdrop-filter:blur(5px); }
.adf-mega__panel {
  position:absolute;
  top:18px;
  left:50%;
  transform:translate(-50%,-14px) scale(.99);
  width:min(calc(100% - 36px), 1240px);
  max-height:calc(100vh - 36px);
  overflow:auto;
  background:#fff;
  border:1px solid rgba(222,228,238,.9);
  border-radius:26px;
  box-shadow:0 40px 100px rgba(20,33,61,.22);
  transition:transform .24s cubic-bezier(.2,.7,.2,1);
}
.adf-mega.is-open .adf-mega__panel { transform:translate(-50%,0) scale(1); }
.adf-mega__head { min-height:74px; padding:0 24px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--adf-line); position:sticky; top:0; background:rgba(255,255,255,.96); backdrop-filter:blur(14px); z-index:2; }
.adf-mega__head > div { display:flex; flex-direction:column; gap:3px; }
.adf-mega__head strong { font-size:22px; letter-spacing:-.6px; }
.adf-mega__close { width:42px; height:42px; border:1px solid var(--adf-line); border-radius:13px; background:#fff; color:#43506a; display:grid; place-items:center; cursor:pointer; }
.adf-mega__close:hover { background:var(--adf-blue-50); color:var(--adf-blue); }
.adf-mega__close svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
.adf-mega__body { display:grid; grid-template-columns:minmax(0,1fr) 230px; gap:24px; padding:24px; }
.adf-mega__categories { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.adf-mega-category { min-height:170px; padding:16px; border:1px solid var(--adf-line); border-radius:18px; background:#fff; transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.adf-mega-category:hover { border-color:#cfdaf0; box-shadow:var(--adf-shadow-sm); transform:translateY(-2px); }
.adf-mega-category__title { display:grid; grid-template-columns:auto minmax(0,1fr) auto; gap:9px; align-items:center; margin-bottom:12px; }
.adf-mega-category__title > span { width:26px; height:26px; border-radius:8px; display:grid; place-items:center; background:var(--adf-blue-50); color:var(--adf-blue); font-size:9px; font-weight:800; }
.adf-mega-category__title strong { font-size:13px; line-height:1.3; }
.adf-mega-category__title i { font-style:normal; color:#9ba5b5; }
.adf-mega-category__links { display:flex; flex-direction:column; align-items:flex-start; gap:7px; }
.adf-mega-category__links a { font-size:10px; line-height:1.3; color:#687386; }
.adf-mega-category__links a:hover { color:var(--adf-blue); }
.adf-mega__aside { border-radius:20px; background:var(--adf-navy); color:#fff; padding:20px; display:flex; flex-direction:column; align-items:stretch; gap:8px; }
.adf-mega__aside > a { display:flex; align-items:center; justify-content:space-between; min-height:44px; padding:0 12px; border-radius:12px; background:rgba(255,255,255,.07); color:#fff; font-size:11px; font-weight:650; }
.adf-mega__aside > a:hover { background:rgba(23,101,255,.35); }
.adf-mega__online { margin-top:auto; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); }
.adf-mega__online small { color:#aebbd1; font-size:10px; }
.adf-mega__online > div { display:flex; gap:6px; margin-top:9px; }
.adf-mega__online a { min-width:32px; height:32px; padding:0 7px; border-radius:10px; background:rgba(255,255,255,.1); display:grid; place-items:center; color:#fff; font-size:10px; font-weight:800; }

/* ---------- Buttons ---------- */
.adf-btn { min-height:42px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; padding:0 16px; font-size:11px; line-height:1.2; font-weight:750; transition:transform .18s ease, box-shadow .18s ease, background .18s ease; }
.adf-btn--primary { background:var(--adf-blue); color:#fff !important; box-shadow:0 8px 22px rgba(23,101,255,.22); }
.adf-btn--primary:hover { background:var(--adf-blue-600); transform:translateY(-1px); box-shadow:0 11px 28px rgba(23,101,255,.28); }
.adf-btn--ghost { border:1px solid rgba(255,255,255,.26); background:rgba(255,255,255,.07); color:#fff !important; }
.adf-btn--ghost:hover { background:rgba(255,255,255,.13); }
.adf-btn--soft { background:var(--adf-blue-50); color:var(--adf-blue) !important; }

/* ---------- Homepage ---------- */
.adf-home { padding: 18px 0 70px; background:#fff; }
.adf-hero { display:grid; grid-template-columns:minmax(0,1.72fr) minmax(280px,.86fr); gap:14px; }
.adf-hero__main {
  min-height: 420px;
  position:relative;
  overflow:hidden;
  border-radius:var(--adf-radius-lg);
  background:linear-gradient(135deg, var(--adf-navy) 0%, #19294b 58%, #20355f 100%);
  color:#fff;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(250px,.92fr);
  align-items:center;
  isolation:isolate;
}
.adf-hero__copy { position:relative; z-index:3; padding:46px 0 46px 46px; }
.adf-eyebrow,
.adf-section-kicker { display:inline-flex; align-items:center; min-height:23px; border-radius:999px; font-size:9px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.adf-eyebrow { padding:0 9px; background:rgba(255,255,255,.09); color:#cbd6e9; border:1px solid rgba(255,255,255,.11); }
.adf-section-kicker { color:var(--adf-blue); }
.adf-hero h1 { max-width:580px; margin:15px 0 13px; font-size:clamp(34px,4.2vw,58px); line-height:.98; letter-spacing:-2.7px; font-weight:700; }
.adf-hero h1 span { display:block; margin-top:7px; color:#6fa0ff; }
.adf-hero__copy > p { max-width:500px; margin:0; color:#c5d0e2; font-size:13px; line-height:1.65; }
.adf-hero__actions { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.adf-hero-product { position:relative; z-index:3; margin:26px 30px 26px 10px; align-self:stretch; display:flex; flex-direction:column; justify-content:center; min-width:0; }
.adf-hero-product__media { position:relative; aspect-ratio:1/1; max-height:260px; display:grid; place-items:center; border-radius:22px; background:rgba(255,255,255,.93); box-shadow:0 18px 50px rgba(0,0,0,.18); overflow:hidden; transform:rotate(1deg); }
.adf-hero-product__media > img { width:92%; height:92%; object-fit:contain; filter:drop-shadow(0 16px 18px rgba(14,22,39,.15)); transition:transform .35s ease; }
.adf-hero-product:hover .adf-hero-product__media > img { transform:scale(1.04) rotate(-1deg); }
.adf-hero-product__meta { margin-top:12px; display:flex; flex-direction:column; align-items:flex-start; gap:4px; color:#fff; }
.adf-hero-product__meta span { font-size:9px; font-weight:800; color:#8eb4ff; text-transform:uppercase; }
.adf-hero-product__meta strong { max-width:260px; font-size:12px; line-height:1.4; font-weight:650; }
.adf-hero-product__meta b { font-size:18px; letter-spacing:-.5px; }
.adf-hero__orb { position:absolute; border-radius:50%; z-index:1; pointer-events:none; filter:blur(1px); }
.adf-hero__orb--one { width:320px; height:320px; right:-100px; top:-110px; background:radial-gradient(circle,rgba(23,101,255,.42),rgba(23,101,255,0) 68%); }
.adf-hero__orb--two { width:280px; height:280px; left:40%; bottom:-190px; background:radial-gradient(circle,rgba(87,138,255,.18),rgba(23,101,255,0) 70%); }
.adf-placeholder--hero { width:100%; height:100%; }
.adf-hero__side { display:grid; grid-template-rows:1fr 1fr; gap:14px; }
.adf-promo-card { min-height:0; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:25px; border-radius:var(--adf-radius); border:1px solid var(--adf-line); transition:transform .18s ease, box-shadow .18s ease; }
.adf-promo-card:hover { transform:translateY(-2px); box-shadow:var(--adf-shadow-sm); }
.adf-promo-card > div { position:relative; z-index:2; max-width:60%; display:flex; flex-direction:column; align-items:flex-start; gap:5px; }
.adf-promo-card span { color:var(--adf-blue); font-size:9px; font-weight:800; letter-spacing:.05em; }
.adf-promo-card strong { font-size:17px; line-height:1.14; letter-spacing:-.5px; }
.adf-promo-card small { font-size:10px; color:var(--adf-muted); }
.adf-promo-card img { width:38%; height:90%; object-fit:contain; filter:drop-shadow(0 12px 18px rgba(28,44,77,.12)); }
.adf-promo-card--light { background:linear-gradient(145deg,#fff,#f5f8fe); }
.adf-promo-card--blue { background:linear-gradient(135deg,#eef5ff,#dfeaff); border-color:#c9dbff; color:var(--adf-navy); }
.adf-promo-card--blue svg { width:42%; height:90%; color:var(--adf-blue); }
.adf-promo-placeholder { width:84px; height:84px; border-radius:20px; display:grid; place-items:center; background:var(--adf-blue-50); color:var(--adf-blue); font-size:28px; font-weight:800; }

.adf-benefits { margin-top:13px; min-height:58px; border:1px solid var(--adf-line); border-radius:17px; display:grid; grid-template-columns:repeat(5,1fr); background:#fff; overflow:hidden; }
.adf-benefits > div { min-width:0; display:flex; align-items:center; justify-content:center; gap:9px; padding:10px 12px; border-right:1px solid #eff2f6; color:#465267; }
.adf-benefits > div:last-child { border-right:0; }
.adf-benefits svg { width:18px; height:18px; flex:0 0 18px; fill:none; stroke:var(--adf-blue); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.adf-benefits span { font-size:10px; font-weight:600; line-height:1.3; }

.adf-section { margin-top:46px; }
.adf-section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:18px; }
.adf-section-head h2,
.adf-campaign h2,
.adf-brand-strip h2,
.adf-account-teaser h2 { margin:2px 0 0; font-size:clamp(24px,2.5vw,34px); line-height:1.08; letter-spacing:-1.2px; font-weight:700; }
.adf-section-head p { margin:7px 0 0; max-width:540px; color:var(--adf-muted); font-size:11px; line-height:1.55; }
.adf-section-head > a { flex:0 0 auto; display:inline-flex; align-items:center; gap:7px; color:var(--adf-blue); font-size:11px; font-weight:750; }
.adf-section-head > a span { transition:transform .16s ease; }
.adf-section-head > a:hover span { transform:translateX(3px); }

.adf-category-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); grid-auto-rows:150px; gap:10px; }
.adf-category-card { position:relative; overflow:hidden; border-radius:18px; border:1px solid var(--adf-line); background:linear-gradient(145deg,#f8fafc,#f1f4f8); display:grid; grid-template-columns:minmax(0,1fr) 48%; transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.adf-category-card--wide { grid-column:span 2; background:linear-gradient(145deg,#edf4ff,#e1ecff); border-color:#d2e1ff; }
.adf-category-card:hover { transform:translateY(-3px); border-color:#cbd7e9; box-shadow:var(--adf-shadow-sm); }
.adf-category-card__copy { position:relative; z-index:2; min-width:0; padding:18px 0 16px 18px; display:flex; flex-direction:column; align-items:flex-start; }
.adf-category-card__copy strong { font-size:14px; line-height:1.2; letter-spacing:-.3px; }
.adf-category-card__copy > span { margin-top:6px; color:var(--adf-muted); font-size:9px; }
.adf-category-card__copy i { margin-top:auto; width:27px; height:27px; display:grid; place-items:center; border-radius:9px; background:#fff; color:var(--adf-blue); box-shadow:0 5px 16px rgba(33,55,91,.07); font-size:12px; font-style:normal; }
.adf-category-card__media { position:relative; display:grid; place-items:center; min-width:0; }
.adf-category-card__media img { width:95%; height:90%; object-fit:contain; transition:transform .28s ease; filter:drop-shadow(0 10px 12px rgba(28,44,77,.08)); }
.adf-category-card:hover .adf-category-card__media img { transform:scale(1.06) translateY(-2px); }
.adf-category-shape { width:90px; height:90px; position:relative; display:block; }
.adf-category-shape i { position:absolute; border-radius:18px; background:rgba(23,101,255,.12); }
.adf-category-shape i:nth-child(1){width:54px;height:54px;right:0;top:5px;}
.adf-category-shape i:nth-child(2){width:38px;height:38px;left:4px;bottom:8px;background:rgba(23,101,255,.19);}
.adf-category-shape i:nth-child(3){width:23px;height:23px;left:17px;top:6px;background:rgba(20,33,61,.12);}

.adf-products-rail { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.adf-product-card {
  min-width:0;
  position:relative;
  border:1px solid var(--adf-line);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.adf-product-card:hover { transform:translateY(-5px); border-color:#cfd8e8; box-shadow:0 20px 44px rgba(35,52,84,.11); }
.adf-product-card__media { aspect-ratio:1.1/1; position:relative; display:flex; align-items:center; justify-content:center; background:linear-gradient(145deg,#fbfcfe,#f4f6f9); overflow:hidden; }
.adf-product-card__image { position:absolute; inset:16px; display:grid; place-items:center; }
.adf-product-card__image > img { width:100%; height:100%; object-fit:contain; transition:transform .32s cubic-bezier(.2,.7,.2,1); filter:drop-shadow(0 13px 14px rgba(31,45,77,.09)); }
.adf-product-card:hover .adf-product-card__image > img { transform:scale(1.055); }
.adf-badge { position:absolute; z-index:4; left:12px; top:12px; min-height:24px; padding:0 9px; border-radius:999px; display:inline-flex; align-items:center; font-size:9px; font-weight:800; }
.adf-badge--sale { background:#fff0f1; color:var(--adf-red); border:1px solid #ffd8dc; }
.adf-product-card__actions { position:absolute; z-index:5; right:10px; top:10px; display:flex; flex-direction:column; gap:6px; }
.adf-icon-btn { width:34px; height:34px; border:1px solid rgba(219,225,235,.95); border-radius:11px; background:rgba(255,255,255,.92); backdrop-filter:blur(8px); color:#5d687b; display:grid; place-items:center; cursor:pointer; box-shadow:0 4px 14px rgba(31,45,77,.05); transition:background .17s ease,color .17s ease,transform .17s ease; }
.adf-icon-btn:hover { color:var(--adf-blue); background:#fff; transform:translateY(-1px); }
.adf-icon-btn svg { width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.adf-product-card.wished .adf-wishlist-btn { color:var(--adf-blue); background:var(--adf-blue-50); border-color:#cfe0ff; }
.adf-product-card.wished .adf-wishlist-btn svg { fill:rgba(23,101,255,.12); }
.adf-product-card.compared .adf-compare-btn { color:var(--adf-blue); background:var(--adf-blue-50); border-color:#cfe0ff; }
.adf-quick-view { position:absolute; z-index:5; left:50%; bottom:9px; transform:translate(-50%,10px); opacity:0; min-height:31px; padding:0 11px; border-radius:10px; display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.95); color:var(--adf-navy) !important; font-size:9px; font-weight:750; box-shadow:0 6px 18px rgba(26,42,72,.1); transition:opacity .2s ease,transform .2s ease; white-space:nowrap; }
.adf-product-card:hover .adf-quick-view { opacity:1; transform:translate(-50%,0); }
.adf-product-card__body { padding:15px 15px 16px; display:flex; flex-direction:column; flex:1 1 auto; }
.adf-product-card__brand { min-height:15px; color:#8390a4; font-size:9px; font-weight:750; letter-spacing:.02em; text-transform:uppercase; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.adf-product-card__name { min-height:40px; margin-top:3px; font-size:12px; line-height:1.37; font-weight:650; color:var(--adf-text) !important; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.adf-product-card__name:hover { color:var(--adf-blue) !important; }
.adf-rating-row { min-height:22px; margin-top:7px; display:flex; align-items:center; gap:7px; color:#8a95a7; font-size:9px; }
.adf-stars { color:#58657a; font-weight:700; }
.adf-stars b { color:#f4a825; }
.adf-stock-row { min-height:26px; display:flex; align-items:center; gap:6px; font-size:9px; color:#687386; border-top:1px solid #f0f2f6; margin-top:5px; padding-top:8px; }
.adf-stock-row i { width:7px; height:7px; border-radius:50%; background:var(--adf-green); box-shadow:0 0 0 3px rgba(22,155,98,.08); }
.adf-stock-row span { font-weight:650; }
.adf-stock-row em { margin-left:auto; color:#9aa4b4; font-style:normal; white-space:nowrap; }
.adf-stock-row--low i { background:var(--adf-amber); box-shadow:0 0 0 3px rgba(217,119,6,.09); }
.adf-stock-row--out i { background:var(--adf-red); box-shadow:0 0 0 3px rgba(229,72,77,.09); }
.adf-product-card.is-out .adf-product-card__image { opacity:.55; filter:grayscale(.25); }
.adf-price-row { min-height:47px; margin-top:8px; display:flex; align-items:flex-end; justify-content:space-between; gap:8px; }
.adf-price-row > div { display:flex; flex-direction:column; min-width:0; }
.adf-price-row strong { font-size:19px; line-height:1; letter-spacing:-.7px; color:var(--adf-text); white-space:nowrap; }
.adf-old-price { margin-bottom:3px; font-size:9px; color:#9aa4b4; text-decoration:line-through; white-space:nowrap; }
.adf-saving { max-width:45%; padding:4px 6px; border-radius:7px; background:#fff8dc; color:#9a6b00; font-size:8px; font-weight:650; line-height:1.2; text-align:right; }
.adf-credit-line { min-height:29px; margin-top:7px; padding:6px 8px; border-radius:9px; background:#f6f8fc; display:flex; align-items:center; gap:6px; color:#667287; font-size:9px; }
.adf-credit-line svg { width:14px; height:14px; fill:none; stroke:var(--adf-blue); stroke-width:1.6; }
.adf-card-buy { margin-top:auto; padding-top:10px; }
.adf-add-btn { width:100%; min-height:42px; border:0; border-radius:12px; background:var(--adf-blue); color:#fff; display:flex; align-items:center; justify-content:center; gap:7px; font-size:10px; font-weight:750; cursor:pointer; box-shadow:0 7px 18px rgba(23,101,255,.18); transition:background .17s ease,transform .17s ease,box-shadow .17s ease; }
.adf-add-btn:hover:not(:disabled) { background:var(--adf-blue-600); transform:translateY(-1px); box-shadow:0 10px 22px rgba(23,101,255,.24); }
.adf-add-btn:disabled { background:#e9edf3; color:#8b95a5; cursor:not-allowed; box-shadow:none; }
.adf-add-btn svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.adf-add-btn.is-hidden,
.adf-qty.is-hidden { display:none !important; }
.adf-qty { min-height:42px; display:grid; grid-template-columns:38px 32px 38px minmax(0,1fr); align-items:center; overflow:hidden; border:1px solid #c9dbff; border-radius:12px; background:var(--adf-blue-50); }
.adf-qty button { height:40px; border:0; background:#fff; color:var(--adf-blue); font-size:17px; font-weight:650; cursor:pointer; }
.adf-qty > span { text-align:center; font-size:11px; font-weight:800; color:var(--adf-navy); }
.adf-qty b { min-width:0; text-align:center; color:var(--adf-blue); font-size:9px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; padding:0 8px; }
.adf-placeholder { width:100%; height:100%; border:1px dashed #d7dfec; border-radius:16px; background:linear-gradient(145deg,#f9fbfe,#edf2f9); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:#8b97aa; }
.adf-placeholder > img { width:min(56%,150px); height:34px; object-fit:contain; opacity:.46; filter:grayscale(.3); }
.adf-placeholder > b,
.adf-placeholder > span { font-size:9px; font-weight:650; }

.adf-campaign { min-height:300px; margin-top:50px; border-radius:26px; background:linear-gradient(135deg,#eef4ff 0%,#f8faff 50%,#e7efff 100%); border:1px solid #dce7f8; overflow:hidden; display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); align-items:center; position:relative; }
.adf-campaign__copy { position:relative; z-index:3; padding:42px; }
.adf-campaign__copy p { max-width:440px; margin:10px 0 20px; color:var(--adf-muted); font-size:12px; line-height:1.6; }
.adf-campaign__visual { height:100%; min-height:300px; position:relative; }
.adf-campaign__visual:before { content:""; position:absolute; width:320px; height:320px; right:5%; top:50%; transform:translateY(-50%); border-radius:50%; background:radial-gradient(circle,rgba(23,101,255,.16),rgba(23,101,255,0) 68%); }
.adf-campaign-product { position:absolute; display:grid; place-items:center; border-radius:22px; background:#fff; box-shadow:0 18px 44px rgba(37,55,88,.13); border:1px solid rgba(222,228,239,.9); overflow:hidden; }
.adf-campaign-product img { width:88%; height:88%; object-fit:contain; filter:drop-shadow(0 10px 12px rgba(31,45,77,.09)); }
.adf-campaign-product--1 { width:220px; height:220px; right:28%; top:38px; z-index:3; transform:rotate(-2deg); }
.adf-campaign-product--2 { width:156px; height:156px; right:7%; top:88px; z-index:2; transform:rotate(4deg); }
.adf-campaign-product--3 { width:135px; height:135px; right:47%; bottom:25px; z-index:4; transform:rotate(3deg); }
.adf-campaign-product i { width:65px; height:65px; border-radius:20px; background:var(--adf-blue-50); }

.adf-brand-strip { margin-top:20px; min-height:125px; border:1px solid var(--adf-line); border-radius:20px; padding:24px; display:grid; grid-template-columns:minmax(230px,.55fr) minmax(0,1.45fr); align-items:center; gap:30px; }
.adf-brand-strip h2 { font-size:20px; }
.adf-brand-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
.adf-brand-list span { min-height:42px; border-radius:11px; background:#f7f9fc; display:flex; align-items:center; justify-content:center; color:#344056; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.02em; padding:0 10px; text-align:center; }

.adf-account-teaser { margin-top:20px; min-height:320px; overflow:hidden; border-radius:26px; background:var(--adf-navy); color:#fff; display:grid; grid-template-columns:minmax(0,1fr) minmax(350px,.78fr); align-items:center; position:relative; }
.adf-account-teaser:after { content:""; position:absolute; width:390px; height:390px; right:-130px; bottom:-170px; border-radius:50%; background:radial-gradient(circle,rgba(23,101,255,.4),rgba(23,101,255,0) 67%); }
.adf-account-teaser__copy { padding:44px; position:relative; z-index:2; }
.adf-account-teaser__copy .adf-section-kicker { color:#7ea8ff; }
.adf-account-teaser__copy h2 { max-width:600px; font-size:32px; }
.adf-account-teaser__copy p { max-width:560px; margin:12px 0 22px; color:#bdc9dc; font-size:12px; line-height:1.65; }
.adf-account-ui { position:relative; z-index:3; width:82%; max-width:390px; min-height:235px; margin:30px auto; border-radius:22px; background:#fff; color:var(--adf-text); box-shadow:0 26px 70px rgba(0,0,0,.25); overflow:hidden; transform:rotate(1deg); }
.adf-account-ui__bar { height:34px; background:#f5f7fb; display:flex; align-items:center; gap:5px; padding:0 12px; }
.adf-account-ui__bar i { width:7px; height:7px; border-radius:50%; background:#d1d8e4; }
.adf-account-ui__profile { margin:16px; padding:13px; border-radius:14px; background:var(--adf-blue-50); display:flex; align-items:center; gap:10px; }
.adf-account-ui__profile > span { width:39px; height:39px; border-radius:12px; background:var(--adf-blue); color:#fff; display:grid; place-items:center; font-size:11px; font-weight:800; }
.adf-account-ui__profile > div { display:flex; flex-direction:column; }
.adf-account-ui__profile b { font-size:11px; }
.adf-account-ui__profile small { color:#7b8799; font-size:9px; }
.adf-account-ui__grid { margin:0 16px; display:grid; grid-template-columns:repeat(3,1fr); gap:7px; }
.adf-account-ui__grid span { height:56px; border-radius:12px; background:#f6f8fb; border:1px solid #edf0f5; }
.adf-account-ui__line { margin:12px 16px; display:grid; grid-template-columns:1.4fr .8fr; gap:7px; }
.adf-account-ui__line i { height:10px; border-radius:5px; background:#edf1f6; }

.adf-system-modules { display:none; }

/* Light touch on legacy footer so the new header/home does not end in an old visual wall. */
body.adf-body footer { margin-top:0; }
body.adf-body footer .container { width:min(calc(100% - 40px), var(--adf-shell)); }

/* ---------- Micro states ---------- */
.adf-toast-stack { position:fixed; right:20px; bottom:22px; z-index:1300; display:grid; gap:8px; pointer-events:none; }
.adf-toast { width:min(360px,calc(100vw - 28px)); min-height:58px; padding:11px 13px; border-radius:15px; background:#fff; border:1px solid var(--adf-line); box-shadow:0 18px 50px rgba(31,45,77,.16); display:grid; grid-template-columns:32px minmax(0,1fr); align-items:center; gap:10px; transform:translateY(12px); opacity:0; transition:.22s ease; }
.adf-toast.is-show { transform:translateY(0); opacity:1; }
.adf-toast__icon { width:32px; height:32px; border-radius:10px; display:grid; place-items:center; background:var(--adf-blue-50); color:var(--adf-blue); font-weight:900; }
.adf-toast strong { display:block; font-size:11px; }
.adf-toast span { display:block; margin-top:2px; color:var(--adf-muted); font-size:9px; }
.adf-skeleton { position:relative; overflow:hidden; background:#edf1f6 !important; color:transparent !important; }
.adf-skeleton:after { content:""; position:absolute; inset:0; transform:translateX(-100%); background:linear-gradient(90deg,transparent,rgba(255,255,255,.7),transparent); animation:adf-shimmer 1.2s infinite; }
@keyframes adf-shimmer { 100% { transform:translateX(100%); } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .adf-mainbar__inner { grid-template-columns:auto auto minmax(220px,1fr) auto; }
  .adf-action { min-width:46px; }
  .adf-action small { display:none; }
  .adf-cart { min-width:96px; }
  .adf-category-nav__rail { gap:15px; }
  .adf-products-rail { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .adf-product-card:nth-child(n+10) { display:none; }
  .adf-hero { grid-template-columns:minmax(0,1.5fr) minmax(250px,.75fr); }
  .adf-hero__main { grid-template-columns:minmax(0,1fr) 240px; }
  .adf-hero__copy { padding-left:34px; }
}

@media (max-width: 991px) {
  .adf-shell { width:min(calc(100% - 28px), var(--adf-shell)); }
  .adf-topbar__hours { display:none; }
  .adf-mainbar__inner { min-height:68px; grid-template-columns:auto 1fr auto; gap:10px; }
  .adf-logo { min-width:105px; max-width:145px; height:40px; }
  .adf-catalog-btn { display:none; }
  .adf-search-wrap { display:block; }
  .adf-actions { display:none; }
  .adf-mobile-actions { display:flex; align-items:center; gap:6px; }
  .adf-mobile-search-btn,
  .adf-mobile-menu-btn { width:42px; height:42px; border:1px solid var(--adf-line); border-radius:12px; background:#fff; color:#4f5a6e; display:grid; place-items:center; }
  .adf-mobile-search-btn svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
  .adf-mobile-menu-btn { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; }
  .adf-mobile-menu-btn i { width:18px; height:2px; background:currentColor; border-radius:2px; }
  .adf-category-nav__inner { width:100%; padding-left:14px; }
  .adf-category-nav__rail { gap:18px; }
  .adf-weekly-link { margin-right:14px; }
  .adf-hero { grid-template-columns:1fr; }
  .adf-hero__side { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .adf-promo-card { min-height:150px; }
  .adf-benefits { grid-template-columns:repeat(3,1fr); }
  .adf-benefits > div { border-bottom:1px solid #eff2f6; }
  .adf-benefits > div:nth-child(3) { border-right:0; }
  .adf-category-grid { grid-template-columns:repeat(3,1fr); }
  .adf-category-card--wide { grid-column:span 2; }
  .adf-mega__body { grid-template-columns:1fr; }
  .adf-mega__aside { min-height:170px; }
  .adf-mega__categories { grid-template-columns:repeat(2,1fr); }
  .adf-account-teaser { grid-template-columns:1fr 330px; }
  .adf-account-teaser__copy { padding:34px; }
}

@media (max-width: 767px) {
  :root { --adf-radius:16px; --adf-radius-lg:20px; }
  .adf-shell { width:calc(100% - 24px); }
  .adf-topbar { min-height:30px; }
  .adf-topbar__inner { min-height:30px; }
  .adf-topbar__delivery { font-size:10px; }
  .adf-topbar__right > a { display:none; }
  .adf-mainbar__inner { grid-template-columns:auto 1fr auto; min-height:62px; }
  .adf-logo { min-width:90px; max-width:122px; }
  .adf-search-wrap { position:absolute; left:12px; right:12px; top:calc(100% + 7px); z-index:1005; opacity:0; pointer-events:none; transform:translateY(-6px); transition:.18s ease; }
  body.adf-mobile-search-open .adf-search-wrap { opacity:1; pointer-events:auto; transform:translateY(0); }
  .adf-search { background:#fff; box-shadow:0 18px 45px rgba(31,45,77,.15); }
  .adf-search__shortcut { display:none; }
  .adf-category-nav__inner { min-height:40px; }
  .adf-category-nav__rail { gap:16px; }
  .adf-category-nav__rail a { font-size:10px; }
  .adf-weekly-link { display:none; }
  .adf-home { padding-top:12px; }
  .adf-hero__main { min-height:520px; grid-template-columns:1fr; align-content:start; }
  .adf-hero__copy { padding:28px 24px 8px; }
  .adf-hero h1 { font-size:39px; letter-spacing:-2px; }
  .adf-hero-product { margin:8px 22px 22px; display:grid; grid-template-columns:1fr; align-content:center; }
  .adf-hero-product__media { height:215px; aspect-ratio:auto; }
  .adf-hero-product__meta { display:none; }
  .adf-hero__side { grid-template-columns:1fr 1fr; gap:9px; }
  .adf-promo-card { min-height:132px; padding:17px; }
  .adf-promo-card > div { max-width:66%; }
  .adf-promo-card strong { font-size:13px; }
  .adf-benefits { margin-top:9px; display:flex; overflow-x:auto; scrollbar-width:none; border-radius:14px; }
  .adf-benefits::-webkit-scrollbar { display:none; }
  .adf-benefits > div { flex:0 0 auto; min-width:210px; min-height:50px; border-bottom:0; }
  .adf-section { margin-top:36px; }
  .adf-section-head { align-items:flex-start; }
  .adf-section-head h2 { font-size:27px; }
  .adf-section-head > a { margin-top:6px; font-size:10px; }
  .adf-category-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:128px; gap:8px; }
  .adf-category-card--wide { grid-column:span 2; }
  .adf-category-card__copy { padding:14px 0 12px 14px; }
  .adf-category-card__copy strong { font-size:12px; }
  .adf-products-rail { display:flex; gap:10px; overflow-x:auto; scroll-snap-type:x mandatory; padding:0 2px 14px; margin-inline:-2px; scrollbar-width:none; }
  .adf-products-rail::-webkit-scrollbar { display:none; }
  .adf-product-card { flex:0 0 min(78vw,280px); scroll-snap-align:start; }
  .adf-product-card:nth-child(n) { display:flex; }
  .adf-product-card:hover { transform:none; }
  .adf-quick-view { display:none; }
  .adf-campaign { min-height:420px; grid-template-columns:1fr; }
  .adf-campaign__copy { padding:28px 24px 0; }
  .adf-campaign__visual { min-height:230px; }
  .adf-campaign-product--1 { width:160px; height:160px; right:26%; top:38px; }
  .adf-campaign-product--2 { width:116px; height:116px; right:5%; top:75px; }
  .adf-campaign-product--3 { width:95px; height:95px; right:51%; bottom:14px; }
  .adf-brand-strip { grid-template-columns:1fr; gap:16px; padding:20px; }
  .adf-brand-list { grid-template-columns:repeat(2,1fr); }
  .adf-account-teaser { grid-template-columns:1fr; }
  .adf-account-teaser__copy { padding:28px 24px 6px; }
  .adf-account-teaser__copy h2 { font-size:28px; }
  .adf-account-ui { width:calc(100% - 48px); margin:20px 24px 28px; }
  .adf-mega__panel { top:8px; width:calc(100% - 16px); max-height:calc(100vh - 16px); border-radius:20px; }
  .adf-mega__head { min-height:64px; padding:0 16px; }
  .adf-mega__head strong { font-size:18px; }
  .adf-mega__body { padding:14px; gap:12px; }
  .adf-mega__categories { grid-template-columns:1fr; }
  .adf-mega-category { min-height:0; }
  .adf-cart-popover { position:fixed !important; top:auto !important; left:12px !important; right:12px !important; bottom:12px !important; width:auto; max-height:75vh; overflow:auto; }
  .adf-toast-stack { right:14px; bottom:14px; }
}

@media (max-width: 479px) {
  .adf-topbar__delivery svg { display:none; }
  .adf-language .language-select { font-size:10px; }
  .adf-mobile-actions { gap:4px; }
  .adf-mobile-search-btn,
  .adf-mobile-menu-btn { width:39px; height:39px; }
  .adf-hero__side { grid-template-columns:1fr; }
  .adf-promo-card { min-height:115px; }
  .adf-section-head { gap:12px; }
  .adf-section-head > a { max-width:110px; text-align:right; }
  .adf-category-grid { grid-auto-rows:118px; }
  .adf-category-card__media { opacity:.9; }
  .adf-product-card { flex-basis:84vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
@media (max-width: 991px) {
  .adf-mobile-cart-btn { width:42px; height:42px; border:1px solid var(--adf-line); border-radius:12px; background:var(--adf-blue-50); color:var(--adf-blue) !important; display:grid; place-items:center; position:relative; }
  .adf-mobile-cart-btn svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
  .adf-mobile-cart-btn b { position:absolute; right:-4px; top:-4px; min-width:17px; height:17px; padding:0 4px; border-radius:9px; background:var(--adf-blue); color:#fff; font-size:9px; line-height:17px; text-align:center; box-shadow:0 0 0 2px #fff; }
}
@media (max-width: 479px) { .adf-mobile-cart-btn { width:39px; height:39px; } }

/* v1.0.1 — admin-managed Full Commerce media */
.adf-logo { min-width: 142px; max-width: 190px; height: 52px; }
.adf-logo img { width: auto; max-width: 180px; max-height: 50px; object-fit: contain; }
.adf-hero-product--banner .adf-hero-product__media { background: transparent; box-shadow: none; transform: none; max-height: 300px; }
.adf-hero-product--banner .adf-hero-product__media > img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0,0,0,.18)); }
.adf-promo-card--blue > img { width: 40%; height: 92%; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(28,44,77,.12)); }
.adf-campaign__custom { width: 100%; height: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(25,50,90,.14)); }
@media (max-width: 767px) {
  .adf-logo { min-width: 98px; max-width: 118px; height: 44px; }
  .adf-logo img { max-width: 116px; max-height: 42px; }
}

/* v1.0.2 — premium commerce dock + corrected horizontal AdeptDEV brand mark */
.adf-header {
  background: rgba(248, 251, 255, .92);
  border-bottom: 0;
}
.adf-header.is-scrolled {
  background: rgba(248, 251, 255, .88);
  border-bottom-color: transparent;
  box-shadow: 0 16px 42px rgba(24, 53, 102, .10);
}
.adf-topbar {
  min-height: 32px;
  background: linear-gradient(90deg, #f7faff 0%, #fbfdff 48%, #f7faff 100%);
  border-bottom: 1px solid rgba(30, 78, 150, .07);
  color: #647087;
}
.adf-topbar__inner { min-height: 32px; }
.adf-topbar__delivery {
  color: #28364d;
  font-weight: 700;
}
.adf-topbar__delivery svg { width: 14px; height: 14px; }
.adf-mainbar {
  padding: 9px 0 8px;
  background: transparent;
}
.adf-mainbar__inner {
  min-height: 70px;
  grid-template-columns: 178px auto minmax(300px, 1fr) auto;
  gap: 10px;
  padding: 7px 8px;
  border: 1px solid rgba(41, 92, 176, .10);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 34px rgba(33, 61, 104, .075), inset 0 1px 0 rgba(255,255,255,.9);
}
.adf-logo {
  min-width: 0;
  max-width: none;
  width: 178px;
  height: 54px;
  padding: 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfdff 0%, #f2f7ff 100%);
  border: 1px solid #e4edfb;
  box-shadow: inset 0 1px 0 #fff, 0 5px 14px rgba(37, 78, 146, .055);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.adf-logo:hover {
  border-color: #cdddf8;
  box-shadow: inset 0 1px 0 #fff, 0 9px 22px rgba(23, 101, 255, .10);
  transform: translateY(-1px);
}
.adf-logo::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  right: -22px;
  top: -22px;
  border-radius: 50%;
  background: rgba(23, 101, 255, .10);
  filter: blur(2px);
  pointer-events: none;
}
.adf-logo__surface {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  position: relative;
  z-index: 1;
}
.adf-logo img {
  width: 100%;
  height: auto;
  max-width: 154px;
  max-height: 36px;
  object-fit: contain;
  display: block;
}
.adf-logo strong { font-size: 20px; font-weight: 800; color: var(--adf-navy); }
.adf-catalog-btn {
  height: 52px;
  border-radius: 16px;
  padding: 0 18px;
  box-shadow: 0 9px 20px rgba(23,101,255,.20), inset 0 1px 0 rgba(255,255,255,.2);
}
.adf-catalog-btn__icon {
  width: 20px;
  height: 20px;
  padding: 4px 3px;
  border-radius: 7px;
  background: rgba(255,255,255,.13);
  gap: 2px;
}
.adf-search {
  height: 52px;
  border-color: #dfe7f3;
  border-radius: 16px;
  background: #f7f9fc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
.adf-search:focus-within {
  border-color: rgba(23,101,255,.48);
  box-shadow: 0 0 0 4px rgba(23,101,255,.075), 0 8px 22px rgba(31,58,104,.06);
}
.adf-search input { height: 50px; font-size: 13px; }
.adf-search__submit {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 12px;
  background: #edf4ff;
}
.adf-search__submit:hover { background: #e2edff; }
.adf-actions { gap: 3px; }
.adf-action,
.adf-action--button {
  min-width: 56px;
  height: 52px;
  border-radius: 14px;
  color: #38465d;
}
.adf-action:hover,
.adf-action--button:hover { background: #f1f6ff; color: var(--adf-blue); }
.adf-cart { min-width: 112px; }
.adf-cart__trigger {
  height: 52px;
  border: 1px solid #d9e7ff;
  border-radius: 15px;
  background: linear-gradient(135deg, #eef5ff 0%, #e7f0ff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.adf-cart__trigger:hover { background: linear-gradient(135deg, #e7f0ff 0%, #dfeaff 100%); }
.adf-category-nav {
  border-top: 0;
  border-bottom: 1px solid #e9eef6;
  background: rgba(255,255,255,.97);
}
.adf-category-nav__inner { min-height: 46px; }
.adf-category-nav__rail { gap: 8px; }
.adf-category-nav__rail a {
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 700;
  color: #43516a;
  transition: color .16s ease, background .16s ease;
}
.adf-category-nav__rail a::after { display: none; }
.adf-category-nav__rail a:hover { color: var(--adf-blue); background: #f1f6ff; }
.adf-weekly-link {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 10px;
  background: #eef5ff;
  border: 1px solid #dbe8ff;
}

@media (max-width: 1180px) {
  .adf-mainbar__inner { grid-template-columns: 154px auto minmax(220px,1fr) auto; }
  .adf-logo { width:154px; }
  .adf-logo img { max-width:134px; }
}
@media (max-width: 991px) {
  .adf-mainbar { padding:7px 0; }
  .adf-mainbar__inner {
    min-height: 62px;
    grid-template-columns: 132px minmax(180px,1fr) auto;
    border-radius:18px;
    padding:6px;
  }
  .adf-logo { width:132px; min-width:132px; max-width:132px; height:48px; border-radius:13px; }
  .adf-logo__surface { padding:8px 10px; }
  .adf-logo img { max-width:112px; max-height:30px; }
  .adf-search { height:48px; }
  .adf-search input { height:46px; }
}
@media (max-width: 767px) {
  .adf-topbar, .adf-topbar__inner { min-height:29px; }
  .adf-mainbar__inner { grid-template-columns:118px 1fr auto; min-height:58px; }
  .adf-logo { width:118px; min-width:118px; max-width:118px; height:44px; }
  .adf-logo img { max-width:101px; max-height:27px; }
  .adf-category-nav__inner { min-height:42px; }
  .adf-category-nav__rail { gap:6px; }
  .adf-category-nav__rail a { padding:7px 9px; }
}
@media (max-width: 479px) {
  .adf-mainbar__inner { grid-template-columns:108px 1fr auto; }
  .adf-logo { width:108px; min-width:108px; max-width:108px; }
  .adf-logo img { max-width:92px; }
}


/* v1.0.3 — compact premium utility controls: schedule + language only */
.adf-topbar { display: none !important; }

.adf-mainbar {
  padding: 10px 0 9px;
}
.adf-mainbar__inner {
  min-height: 72px;
  grid-template-columns: 178px auto minmax(280px, 1fr) auto auto;
  gap: 10px;
}

.adf-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  position: relative;
  z-index: 12;
}

.adf-work {
  position: relative;
  margin: 0;
}
.adf-work > summary {
  list-style: none;
}
.adf-work > summary::-webkit-details-marker {
  display: none;
}
.adf-work__trigger {
  width: 166px;
  height: 52px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  color: #26354d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
  user-select: none;
}
.adf-work__trigger:hover,
.adf-work[open] .adf-work__trigger {
  border-color: #cbdcf8;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23,101,255,.09);
}
.adf-work__trigger:active {
  transform: translateY(1px);
}
.adf-work__icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--adf-blue);
}
.adf-work__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.adf-work__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.adf-work__copy small {
  color: #7c879a;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
}
.adf-work__copy strong {
  overflow: hidden;
  color: #1b2940;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adf-work__chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #8a96a9;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease, stroke .2s ease;
}
.adf-work[open] .adf-work__chevron {
  transform: rotate(180deg);
  stroke: var(--adf-blue);
}
.adf-work__popover {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  width: 306px;
  padding: 10px;
  border: 1px solid #dfe7f2;
  border-radius: 20px;
  background: rgba(255,255,255,.985);
  box-shadow: 0 24px 70px rgba(25,49,89,.18);
  backdrop-filter: blur(18px);
  transform-origin: top right;
  animation: adf-work-in .18s ease-out;
}
@keyframes adf-work-in {
  from { opacity: 0; transform: translateY(-5px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.adf-work__head {
  min-height: 48px;
  padding: 7px 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #edf1f6;
}
.adf-work__head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.adf-work__head strong {
  color: #17243a;
  font-size: 13px;
  font-weight: 800;
}
.adf-work__head small {
  color: #7a879a;
  font-size: 9.5px;
  font-weight: 700;
  white-space: nowrap;
}
.adf-work__status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8da1be;
  box-shadow: 0 0 0 4px rgba(141,161,190,.12);
}
.adf-work.is-open-now .adf-work__status-dot {
  background: #1aa56b;
  box-shadow: 0 0 0 4px rgba(26,165,107,.12);
}
.adf-work.is-closed-now .adf-work__status-dot {
  background: #95a0b2;
  box-shadow: 0 0 0 4px rgba(149,160,178,.12);
}
.adf-work.is-open-now .adf-work__copy strong {
  color: #138757;
}
.adf-work__days {
  display: grid;
  gap: 2px;
  padding: 8px 0 4px;
}
.adf-work__day {
  min-height: 34px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 10px;
  color: #58657a;
  font-size: 10.5px;
}
.adf-work__day strong {
  color: #27364d;
  font-size: 10.5px;
  font-weight: 800;
}
.adf-work__day.is-today {
  background: #eff5ff;
  color: var(--adf-blue);
  font-weight: 800;
}
.adf-work__day.is-today strong {
  color: var(--adf-blue);
}
.adf-work__day--closed strong {
  color: #98a2b3;
}
.adf-work__foot {
  margin-top: 6px;
  padding: 8px 9px 3px;
  border-top: 1px solid #edf1f6;
  color: #98a2b3;
  font-size: 9px;
  font-weight: 600;
}

.adf-language--premium {
  flex: 0 0 auto;
}
.adf-language--premium #form-language.adf-lang-switch {
  height: 52px;
  margin: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
.adf-lang-switch__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #6f7d92;
}
.adf-lang-switch__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.adf-lang-switch__options {
  display: flex;
  align-items: center;
  gap: 3px;
}
.adf-language--premium .language-select {
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #6e7a8e;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.adf-language--premium .language-select:hover {
  background: #eef5ff;
  color: var(--adf-blue);
}
.adf-language--premium .language-select.selected {
  background: var(--adf-blue);
  color: #fff;
  box-shadow: 0 6px 14px rgba(23,101,255,.22);
}
.adf-language--premium .language-select:active {
  transform: scale(.96);
}

@media (max-width: 1180px) {
  .adf-mainbar__inner {
    grid-template-columns: 154px auto minmax(190px, 1fr) auto auto;
  }
  .adf-work__trigger {
    width: 132px;
    grid-template-columns: 32px minmax(0,1fr) 12px;
    padding-inline: 8px;
    gap: 6px;
  }
  .adf-work__icon {
    width: 32px;
    height: 32px;
  }
  .adf-work__copy small { display: none; }
  .adf-work__copy strong { font-size: 9.5px; }
  .adf-lang-switch__icon { display: none; }
  .adf-language--premium #form-language.adf-lang-switch {
    padding-inline: 5px;
  }
}

@media (max-width: 991px) {
  .adf-mainbar__inner {
    grid-template-columns: 132px minmax(180px, 1fr) auto;
    grid-template-rows: auto auto;
    row-gap: 7px;
    position: relative;
  }
  .adf-logo { grid-column: 1; grid-row: 1; }
  .adf-search-wrap { grid-column: 2; grid-row: 1; }
  .adf-mobile-actions { grid-column: 3; grid-row: 1; }
  .adf-header-tools {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-end;
    padding: 0 1px 1px;
  }
  .adf-work__trigger {
    width: 174px;
  }
  .adf-work__copy small {
    display: block;
  }
  .adf-work__copy strong {
    font-size: 10px;
  }
  .adf-lang-switch__icon {
    display: grid;
  }
}

@media (max-width: 767px) {
  .adf-mainbar {
    padding: 7px 0 6px;
  }
  .adf-mainbar__inner {
    grid-template-columns: 118px 1fr auto;
    row-gap: 6px;
  }
  .adf-header-tools {
    justify-content: stretch;
  }
  .adf-work {
    flex: 1 1 auto;
  }
  .adf-work__trigger {
    width: 100%;
  }
  .adf-language--premium {
    flex: 0 0 auto;
  }
  .adf-work__popover {
    right: 0;
    width: min(306px, calc(100vw - 24px));
  }
}

@media (max-width: 479px) {
  .adf-mainbar__inner {
    grid-template-columns: 108px 1fr auto;
  }
  .adf-work__trigger {
    height: 46px;
    grid-template-columns: 30px minmax(0,1fr) 12px;
    border-radius: 14px;
  }
  .adf-work__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .adf-work__copy small {
    font-size: 8.5px;
  }
  .adf-work__copy strong {
    font-size: 9.5px;
  }
  .adf-language--premium #form-language.adf-lang-switch {
    height: 46px;
    border-radius: 14px;
  }
  .adf-lang-switch__icon {
    display: none;
  }
  .adf-language--premium .language-select {
    min-width: 32px;
    height: 32px;
    padding: 0 7px;
    line-height: 32px;
  }
}

/* AdeptDEV Full v1.0.4 — compact language menu + cleaner search */
.adf-search__shortcut { display: none !important; }

.adf-language--premium #form-language.adf-lang-switch {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.adf-lang-menu {
  position: relative;
  margin: 0;
}
.adf-lang-menu > summary {
  list-style: none;
}
.adf-lang-menu > summary::-webkit-details-marker {
  display: none;
}
.adf-lang-menu__trigger {
  min-width: 66px;
  height: 46px;
  padding: 0 12px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dfe7f3;
  border-radius: 14px;
  background: #fff;
  color: #162238;
  box-shadow: 0 1px 2px rgba(23, 43, 77, .03);
  cursor: pointer;
  user-select: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease, transform .16s ease;
}
.adf-lang-menu__trigger:hover,
.adf-lang-menu[open] .adf-lang-menu__trigger {
  border-color: #bfcff0;
  background: #f8fbff;
  box-shadow: 0 7px 20px rgba(31, 70, 140, .08);
}
.adf-lang-menu__trigger:active {
  transform: translateY(1px);
}
.adf-lang-menu__current {
  color: var(--adf-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
}
.adf-lang-menu__chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #6f7d92;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.adf-lang-menu[open] .adf-lang-menu__chevron {
  transform: rotate(180deg);
}
.adf-lang-menu__panel {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 1200;
  width: 188px;
  padding: 8px;
  border: 1px solid #e2e8f2;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 50px rgba(25, 48, 91, .16), 0 2px 8px rgba(25, 48, 91, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: adf-lang-in .16s ease-out;
}
@keyframes adf-lang-in {
  from { opacity: 0; transform: translateY(-5px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.adf-lang-menu__caption {
  padding: 4px 8px 7px;
  color: #98a2b3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.adf-language--premium .language-select.adf-lang-menu__option {
  width: 100%;
  height: 42px;
  min-width: 0;
  margin: 0;
  padding: 0 9px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #344054;
  line-height: 1;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.adf-language--premium .language-select.adf-lang-menu__option:hover {
  background: #f3f7ff;
  color: #14213a;
}
.adf-language--premium .language-select.adf-lang-menu__option.selected {
  background: #eef5ff;
  color: var(--adf-blue);
  box-shadow: none;
}
.adf-lang-menu__badge {
  width: 30px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe7f3;
  border-radius: 8px;
  background: #fff;
  color: #5f6d82;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .02em;
}
.adf-lang-menu__option.selected .adf-lang-menu__badge {
  border-color: rgba(23,101,255,.18);
  background: var(--adf-blue);
  color: #fff;
}
.adf-lang-menu__name {
  overflow: hidden;
  color: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adf-lang-menu__check {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--adf-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .adf-language--premium #form-language.adf-lang-switch { padding: 0; }
  .adf-lang-menu__trigger { min-width: 60px; padding-inline: 12px; }
}
@media (max-width: 767px) {
  .adf-lang-menu__trigger { height: 44px; min-width: 62px; border-radius: 13px; }
  .adf-lang-menu__panel { width: 180px; }
}
@media (max-width: 479px) {
  .adf-language--premium #form-language.adf-lang-switch { height: auto; border-radius: 0; }
  .adf-lang-menu__trigger { height: 46px; min-width: 58px; padding-inline: 11px; border-radius: 14px; }
}

/* AdeptDEV Full v1.0.5 — stable inline language switch + blue/neutral palette only */
.adf-language--premium,
.adf-language--premium #form-language.adf-lang-switch--compact {
  flex: 0 0 auto;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.adf-lang-segment {
  width: 88px;
  height: 46px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3px;
  border: 1px solid #dfe7f3;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 1px 2px rgba(31,54,92,.03);
}

.adf-language--premium .language-select.adf-lang-segment__button {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: #738096 !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: inherit !important;
  font-size: 10.5px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: none !important;
  cursor: pointer !important;
  transform: none !important;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease !important;
}

.adf-language--premium .language-select.adf-lang-segment__button:hover {
  background: #edf4ff !important;
  color: var(--adf-blue) !important;
}

.adf-language--premium .language-select.adf-lang-segment__button.is-active,
.adf-language--premium .language-select.adf-lang-segment__button.is-active:hover {
  background: var(--adf-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 15px rgba(23,101,255,.22) !important;
}

.adf-language--premium .language-select.adf-lang-segment__button:active {
  transform: scale(.96) !important;
}

/* Retire the v1.0.4 popup implementation completely. */
.adf-lang-menu,
.adf-lang-menu__trigger,
.adf-lang-menu__panel,
.adf-lang-menu__caption,
.adf-lang-menu__badge,
.adf-lang-menu__name,
.adf-lang-menu__check,
.adf-lang-menu__chevron {
  display: none !important;
}

/* No decorative red/pink accents in AdeptDEV Full storefront. */
:root {
  --adf-red: #64748b;
}
.adf-mini-product__remove:hover {
  color: #42526a !important;
  background: #eef4ff !important;
}
.adf-badge--sale {
  background: #eaf2ff !important;
  color: var(--adf-blue) !important;
  border-color: #cbdcff !important;
}
.adf-stock-row--out i {
  background: #7b8799 !important;
  box-shadow: 0 0 0 3px rgba(123,135,153,.10) !important;
}

@media (max-width: 1180px) {
  .adf-lang-segment { width: 82px; }
}
@media (max-width: 767px) {
  .adf-lang-segment { width: 84px; height: 44px; border-radius: 13px; }
  .adf-language--premium .language-select.adf-lang-segment__button { height: 34px !important; border-radius: 9px !important; }
}
@media (max-width: 479px) {
  .adf-lang-segment { width: 80px; height: 46px; border-radius: 14px; }
  .adf-language--premium .language-select.adf-lang-segment__button { height: 36px !important; }
}

/* AdeptDEV Full v1.0.6 — smart product collections */
.adf-collection-hub{position:relative}
.adf-collection-head{align-items:flex-end}
.adf-collection-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:18px 0 16px;padding:6px;background:#f4f7fb;border:1px solid #e3eaf4;border-radius:16px;width:max-content;max-width:100%}
.adf-collection-tab{appearance:none;border:0;background:transparent;color:#536176;min-height:42px;padding:0 14px;border-radius:12px;font:700 12px/1.1 inherit;display:inline-flex;align-items:center;gap:8px;cursor:pointer;transition:background .2s ease,color .2s ease,box-shadow .2s ease,transform .2s ease}
.adf-collection-tab b{min-width:22px;height:22px;padding:0 6px;border-radius:999px;background:#e8eef8;color:#6d7b90;display:inline-flex;align-items:center;justify-content:center;font-size:10px;font-weight:800}
.adf-collection-tab:hover{background:#fff;color:var(--adf-blue);transform:translateY(-1px)}
.adf-collection-tab.is-active{background:var(--adf-blue);color:#fff;box-shadow:0 8px 22px rgba(23,101,255,.22)}
.adf-collection-tab.is-active b{background:rgba(255,255,255,.18);color:#fff}
.adf-collection-panel{display:none;animation:adfCollectionIn .28s ease both}
.adf-collection-panel.is-active{display:block}
.adf-collection-panel__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0 2px 10px;color:#6e7c91;font-size:11px}
.adf-collection-panel__head strong{color:var(--adf-text);font-size:14px;font-weight:800}
.adf-product-metric{display:flex;align-items:center;gap:5px;min-height:22px;margin-top:5px;color:#6f7e93;font-size:10px;font-weight:700}
.adf-product-metric svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;color:var(--adf-blue)}
.adf-badge--collection{background:#eaf1ff!important;color:var(--adf-blue)!important;border:1px solid #cfe0ff!important}
@keyframes adfCollectionIn{from{opacity:.35;transform:translateY(5px)}to{opacity:1;transform:none}}
@media (max-width:767px){
  .adf-collection-tabs{display:flex;flex-wrap:nowrap;width:100%;overflow-x:auto;scrollbar-width:none;padding:5px;border-radius:14px;margin:14px 0 12px}
  .adf-collection-tabs::-webkit-scrollbar{display:none}
  .adf-collection-tab{flex:0 0 auto;min-height:40px;padding:0 12px}
  .adf-collection-panel__head{margin-bottom:8px}
}

/* AdeptDEV Full v1.1.0 — Gemini Stage 2: premium catalog/category system */
.adf-category-page {
  --adf-catalog-sidebar: 282px;
  background: linear-gradient(180deg, #f7f9fc 0, #fbfcfe 360px, #fff 780px);
  padding: 18px 0 72px;
  min-height: 60vh;
}
.adf-category-page .adf-shell { position: relative; }

.adf-category-breadcrumbs {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  color: #7d899b;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}
.adf-category-breadcrumbs::-webkit-scrollbar { display: none; }
.adf-category-breadcrumbs a { color: #738096 !important; transition: color .16s ease; }
.adf-category-breadcrumbs a:hover { color: var(--adf-blue) !important; }
.adf-category-breadcrumbs span { color: #26344d; font-weight: 750; }
.adf-category-breadcrumbs svg { width: 12px; height: 12px; fill: none; stroke: #abb5c4; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.adf-category-hero {
  min-height: 152px;
  margin-top: 8px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
  border: 1px solid #e2e8f2;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(36, 54, 87, .06);
}
.adf-category-hero:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,101,255,.12) 0, rgba(23,101,255,.035) 45%, rgba(23,101,255,0) 70%);
  pointer-events: none;
}
.adf-category-hero__copy { position: relative; z-index: 2; min-width: 0; }
.adf-category-hero__meta { margin-bottom: 7px; display: flex; align-items: center; gap: 8px; }
.adf-category-hero__meta span {
  min-height: 25px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe6f8;
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--adf-blue);
  font-size: 9px;
  font-weight: 800;
}
.adf-category-hero h1 { margin: 0; color: #13213a; font-size: clamp(29px, 3vw, 42px); line-height: 1.05; font-weight: 800; letter-spacing: -1.7px; }
.adf-category-hero p { max-width: 710px; margin: 11px 0 0; color: #6d798c; font-size: 11px; line-height: 1.65; }
.adf-category-hero__media { height: 128px; position: relative; z-index: 2; display: grid; place-items: center; }
.adf-category-hero__media img { max-width: 100%; max-height: 128px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(29,45,76,.12)); }
.adf-category-hero__signal { position: relative; z-index: 2; width: 170px; height: 112px; justify-self: end; }
.adf-category-hero__signal i { position: absolute; display: block; border-radius: 22px; transform: rotate(-8deg); }
.adf-category-hero__signal i:nth-child(1) { width: 78px; height: 78px; right: 8px; top: 4px; background: #1765ff; box-shadow: 0 18px 35px rgba(23,101,255,.22); }
.adf-category-hero__signal i:nth-child(2) { width: 58px; height: 58px; left: 24px; top: 30px; background: #dfeaff; }
.adf-category-hero__signal i:nth-child(3) { width: 34px; height: 34px; right: 62px; bottom: 1px; background: #14213d; opacity: .13; }
.adf-category-hero__signal i:nth-child(4) { width: 20px; height: 20px; left: 3px; top: 10px; background: #1765ff; opacity: .16; }

.adf-subcategory-section { margin-top: 18px; }
.adf-subcategory-head { margin: 0 2px 9px; display: flex; align-items: center; gap: 8px; color: #273650; }
.adf-subcategory-head strong { font-size: 11px; font-weight: 800; }
.adf-subcategory-head span { min-width: 20px; height: 20px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #eaf1ff; color: var(--adf-blue); font-size: 9px; font-weight: 800; }
.adf-subcategory-rail { display: flex; gap: 10px; overflow-x: auto; padding: 1px 1px 8px; scroll-snap-type: x proximity; scrollbar-width: none; }
.adf-subcategory-rail::-webkit-scrollbar { display: none; }
.adf-subcategory-card {
  flex: 0 0 220px;
  min-height: 76px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 24px;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(35,53,85,.04);
  scroll-snap-align: start;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.adf-subcategory-card:hover { border-color: #cbdcff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(35,53,85,.08); }
.adf-subcategory-card__media { width: 58px; height: 58px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: linear-gradient(145deg,#f8faff,#edf3fb); }
.adf-subcategory-card__media img { width: 92%; height: 92%; object-fit: contain; filter: drop-shadow(0 8px 8px rgba(31,45,77,.08)); transition: transform .2s ease; }
.adf-subcategory-card:hover .adf-subcategory-card__media img { transform: scale(1.06); }
.adf-subcategory-card__placeholder { width: 44px; height: 44px; position: relative; }
.adf-subcategory-card__placeholder i { position: absolute; display: block; border-radius: 10px; background: #dce8ff; }
.adf-subcategory-card__placeholder i:nth-child(1) { width: 28px; height: 28px; right: 1px; top: 1px; background: rgba(23,101,255,.16); }
.adf-subcategory-card__placeholder i:nth-child(2) { width: 21px; height: 21px; left: 1px; bottom: 1px; background: rgba(23,101,255,.28); }
.adf-subcategory-card__placeholder i:nth-child(3) { width: 13px; height: 13px; left: 9px; top: 1px; background: rgba(20,33,61,.12); }
.adf-subcategory-card__copy { min-width: 0; }
.adf-subcategory-card__copy strong { display: block; color: #1f2d46; font-size: 10.5px; line-height: 1.25; font-weight: 750; }
.adf-subcategory-card__copy small { display: block; margin-top: 4px; color: #8c98aa; font-size: 8.5px; font-weight: 600; }
.adf-subcategory-card__arrow { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: #f2f6fd; color: var(--adf-blue); font-size: 11px; font-weight: 800; transition: transform .18s ease, background .18s ease; }
.adf-subcategory-card:hover .adf-subcategory-card__arrow { transform: translateX(2px); background: #e8f0ff; }

.adf-category-layout { margin-top: 20px; display: grid; grid-template-columns: var(--adf-catalog-sidebar) minmax(0,1fr); gap: 18px; align-items: start; }
.adf-category-layout--wide { grid-template-columns: 1fr; }
.adf-category-main { min-width: 0; }

.adf-category-filter { position: sticky; top: 112px; min-width: 0; }
.adf-category-filter__head {
  min-height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e1e7f0;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
}
.adf-category-filter__head > div { display: flex; align-items: center; gap: 9px; }
.adf-category-filter__head strong { color: #1d2b44; font-size: 12px; font-weight: 800; }
.adf-category-filter__head > b { min-width: 23px; height: 23px; padding: 0 7px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--adf-blue); color: #fff; font-size: 9px; font-weight: 800; }
.adf-category-filter__icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: #eef4ff; color: var(--adf-blue); }
.adf-category-filter__icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.adf-category-filter__body {
  border: 1px solid #e1e7f0;
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(35,53,85,.055);
  overflow: hidden;
}
.adf-category-filter__body > * { margin: 0 !important; }
.adf-category-filter .rdf-mobile-toggle { display: none !important; }

/* Dream Filter reskin: keep its real filtering logic, replace its old visual language. */
.adf-category-filter .dream-filter { margin: 0 !important; background: transparent !important; color: #344054; }
.adf-category-filter .dream-filter > .rdf-form { padding: 0 !important; background: #fff !important; border: 0 !important; box-shadow: none !important; }
.adf-category-filter .dream-filter .rdf-header { padding: 14px 16px 0 !important; }
.adf-category-filter .dream-filter .rdf-header h3 { margin: 0 !important; color: #26354d !important; font-size: 12px !important; font-weight: 800 !important; }
.adf-category-filter .dream-filter .rdf-body { padding: 0 15px 10px !important; }
.adf-category-filter .dream-filter .rdf-picked { padding: 12px 0 4px !important; }
.adf-category-filter .dream-filter .rdf-picked .btn { min-height: 27px !important; margin: 0 5px 5px 0 !important; padding: 0 8px !important; border: 1px solid #ccdcf8 !important; border-radius: 999px !important; background: #eef5ff !important; color: var(--adf-blue) !important; box-shadow: none !important; text-transform: none !important; font-size: 9px !important; font-weight: 750 !important; line-height: 25px !important; }
.adf-category-filter .dream-filter .panel-group { margin: 0 !important; }
.adf-category-filter .dream-filter .panel-group .panel {
  margin: 0 !important;
  border: 0 !important;
  border-top: 1px solid #edf0f5 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.adf-category-filter .dream-filter .panel-group .panel:before,
.adf-category-filter .dream-filter .panel-group .panel:after { display: none !important; }
.adf-category-filter .dream-filter .panel-heading { padding: 0 !important; background: transparent !important; }
.adf-category-filter .dream-filter .panel-heading .panel-title > span,
.adf-category-filter .dream-filter .panel-heading .panel-title > a { min-height: 47px; padding: 0 !important; display: flex !important; align-items: center; justify-content: space-between; gap: 8px; color: #2a3850 !important; font-size: 10.5px !important; font-weight: 800 !important; }
.adf-category-filter .dream-filter .adf-filter-chevron { width: 15px !important; height: 15px !important; margin: 0 !important; float: none !important; fill: none !important; stroke: #8390a4 !important; stroke-width: 1.8 !important; stroke-linecap: round !important; stroke-linejoin: round !important; transform: rotate(180deg); transition: transform .18s ease; }
.adf-category-filter .dream-filter .collapsed .adf-filter-chevron { transform: none; }
.adf-category-filter .dream-filter .panel-body { padding: 0 0 13px !important; overflow: visible !important; }
.adf-category-filter .dream-filter .rdf-group .checkbox,
.adf-category-filter .dream-filter .rdf-group .radio { min-height: 31px; margin: 0 !important; padding: 0 !important; display: flex; align-items: center; position: relative; }
.adf-category-filter .dream-filter .rdf-group .checkbox > input { position: absolute !important; width: 18px !important; height: 18px !important; left: 0 !important; top: 6px !important; opacity: 0 !important; cursor: pointer; z-index: 3; }
.adf-category-filter .dream-filter .rdf-group .checkbox > label,
.adf-category-filter .dream-filter .rdf-group .radio > label { min-width: 0; width: 100%; min-height: 31px !important; margin: 0 !important; padding: 0 34px 0 27px !important; display: flex !important; align-items: center; color: #526074; font-size: 10px !important; font-weight: 600 !important; line-height: 1.25 !important; cursor: pointer; }
.adf-category-filter .dream-filter .rdf-group .checkbox > label:before,
.adf-category-filter .dream-filter .rdf-group .radio > label:before { content: ""; position: absolute; left: 0; top: 7px; width: 17px; height: 17px; border: 1px solid #ccd5e2; border-radius: 5px; background: #fff; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease; }
.adf-category-filter .dream-filter .rdf-group .checkbox > input:checked + label:before,
.adf-category-filter .dream-filter .rdf-group .checkbox > label:has(input:checked):before,
.adf-category-filter .dream-filter .rdf-group .radio > label:has(input:checked):before { border-color: var(--adf-blue); background: var(--adf-blue); box-shadow: inset 0 0 0 4px var(--adf-blue); }
.adf-category-filter .dream-filter .rdf-group .checkbox > input:checked + label:after,
.adf-category-filter .dream-filter .rdf-group .checkbox > label:has(input:checked):after { content: ""; position: absolute; left: 5px; top: 11px; width: 7px; height: 4px; border-left: 1.8px solid #fff; border-bottom: 1.8px solid #fff; transform: rotate(-45deg); }
.adf-category-filter .dream-filter .rdf-group .checkbox > label > span:before,
.adf-category-filter .dream-filter .rdf-group .checkbox > label > span:after,
.adf-category-filter .dream-filter .rdf-group .radio > label > span:before,
.adf-category-filter .dream-filter .rdf-group .radio > label > span:after { display: none !important; }
.adf-category-filter .dream-filter .rdf-label { position: absolute; right: 0; top: 7px; min-width: 24px !important; height: 18px; padding: 0 6px !important; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px !important; background: #f2f5f9 !important; color: #8c98aa !important; font-size: 8px !important; font-weight: 750 !important; }
.adf-category-filter .dream-filter .rdf-clear { color: var(--adf-blue) !important; }
.adf-category-filter .dream-filter .form-control { min-height: 39px !important; border: 1px solid #dce3ed !important; border-radius: 10px !important; background: #f8fafc !important; color: #344054 !important; box-shadow: none !important; font-size: 10px !important; }
.adf-category-filter .dream-filter .irs-line { height: 5px !important; top: 31px !important; border-radius: 999px !important; background: #e8edf5 !important; box-shadow: none !important; }
.adf-category-filter .dream-filter .irs-bar,
.adf-category-filter .dream-filter .irs-bar-edge { height: 5px !important; top: 31px !important; background: var(--adf-blue) !important; box-shadow: none !important; }
.adf-category-filter .dream-filter .irs-handle { width: 16px !important; height: 16px !important; top: 25px !important; border: 3px solid #fff !important; background: var(--adf-blue) !important; box-shadow: 0 0 0 1px #aac6ff, 0 4px 10px rgba(23,101,255,.18) !important; }
.adf-category-filter .dream-filter .irs-from,
.adf-category-filter .dream-filter .irs-to,
.adf-category-filter .dream-filter .irs-single { background: #edf4ff !important; color: var(--adf-blue) !important; box-shadow: none !important; font-size: 8px !important; font-weight: 750 !important; }
.adf-category-filter .dream-filter .irs-from:after,
.adf-category-filter .dream-filter .irs-to:after,
.adf-category-filter .dream-filter .irs-single:after { border-top-color: #edf4ff !important; }
.adf-category-filter .dream-filter .rdf-footer { padding: 12px 15px 15px !important; margin: 0 !important; border-top: 1px solid #edf0f5; }
.adf-category-filter .dream-filter .rdf-footer .btn { min-height: 40px !important; border: 1px solid #d8e1ef !important; border-radius: 11px !important; background: #f6f9fd !important; color: #526176 !important; box-shadow: none !important; font-size: 10px !important; font-weight: 750 !important; }
.adf-category-filter .dream-filter .rdf-footer .btn-primary { border-color: var(--adf-blue) !important; background: var(--adf-blue) !important; color: #fff !important; }
.adf-category-filter .dream-filter .rdf-truncate-show,
.adf-category-filter .dream-filter .rdf-truncate-hide { color: var(--adf-blue) !important; font-size: 9px !important; font-weight: 750 !important; }

.adf-category-mobile-tools { display: none; }
.adf-category-toolbar {
  min-height: 60px;
  padding: 9px 11px 9px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 111px;
  z-index: 20;
  border: 1px solid #e1e7f0;
  border-radius: 17px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(35,53,85,.055);
}
.adf-category-toolbar__left { min-width: 0; display: flex; align-items: center; gap: 12px; }
.adf-category-toolbar__left > strong { flex: 0 0 auto; color: #283750; font-size: 10.5px; font-weight: 800; white-space: nowrap; }
.adf-category-chips { min-width: 0; display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.adf-category-chips::-webkit-scrollbar { display: none; }
.adf-category-chips a,
.adf-category-chips button { appearance: none; flex: 0 0 auto; min-height: 28px; padding: 0 9px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #cdddf8; border-radius: 999px; background: #eef5ff; color: var(--adf-blue) !important; font-size: 8.5px; font-weight: 750; cursor: pointer; }
.adf-category-chips a span,
.adf-category-chips button span { font-size: 13px; line-height: 1; opacity: .72; }
.adf-category-chips .adf-category-chips__clear { border-color: transparent; background: transparent; color: #7d899b !important; }
.adf-category-toolbar__right { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.adf-category-sort { min-height: 40px; padding-left: 10px; display: flex; align-items: center; gap: 5px; border: 1px solid #dde4ee; border-radius: 11px; background: #f8fafc; }
.adf-category-sort > span { color: #8995a7; font-size: 8.5px; font-weight: 650; }
.adf-category-sort select { height: 38px; max-width: 170px; padding: 0 28px 0 5px; border: 0 !important; outline: 0 !important; background: transparent !important; box-shadow: none !important; color: #344054; font-size: 9.5px; font-weight: 750; cursor: pointer; }
.adf-category-view { height: 40px; padding: 3px; display: grid; grid-template-columns: 34px 34px; gap: 2px; border: 1px solid #dde4ee; border-radius: 11px; background: #f6f8fb; }
.adf-category-view button { border: 0; border-radius: 8px; background: transparent; color: #8490a2; display: grid; place-items: center; cursor: pointer; transition: background .15s ease, color .15s ease, box-shadow .15s ease; }
.adf-category-view button.is-active { background: #fff; color: var(--adf-blue); box-shadow: 0 3px 9px rgba(35,53,85,.08); }
.adf-category-view svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.adf-catalog-grid { margin-top: 13px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 11px; }
.adf-catalog-grid .adf-product-card { min-height: 100%; }
.adf-catalog-grid .adf-product-card__media { aspect-ratio: 1.12 / 1; }
.adf-catalog-grid .adf-product-card__body { padding: 14px 14px 15px; }
.adf-catalog-grid .adf-product-card__name { min-height: 42px; font-size: 11.5px; line-height: 1.42; }
.adf-catalog-grid .adf-product-card__brand { font-size: 8.5px; }
.adf-category-badges { position: absolute; z-index: 4; left: 10px; top: 10px; max-width: calc(100% - 58px); display: flex; flex-wrap: wrap; gap: 5px; }
.adf-category-badges .adf-badge { position: static; min-height: 23px; padding: 0 8px; }
.adf-badge--new { background: var(--adf-blue) !important; color: #fff !important; border: 1px solid var(--adf-blue) !important; }
.adf-badge--popular { background: #edf2f8 !important; color: #45556d !important; border: 1px solid #dde5ef !important; }
.adf-category-card-meta { min-height: 25px; margin-top: 6px; display: flex; align-items: center; gap: 6px; color: #8d98aa; font-size: 8.5px; line-height: 1.2; }
.adf-category-card-meta .adf-stars { font-size: 8.5px; }
.adf-category-card-meta em { margin-left: auto; color: #6f7f96; font-style: normal; font-size: 8px; white-space: nowrap; }
.adf-catalog-grid .adf-stock-row { margin-top: 2px; }
.adf-catalog-grid .adf-stock-row--in i { background: var(--adf-blue); box-shadow: 0 0 0 3px rgba(23,101,255,.08); }
.adf-catalog-grid .adf-stock-row--low i { background: #728096; box-shadow: 0 0 0 3px rgba(114,128,150,.10); }
.adf-catalog-grid .adf-stock-row--out i { background: #9aa5b5 !important; box-shadow: 0 0 0 3px rgba(154,165,181,.10) !important; }
.adf-catalog-grid .adf-saving { background: #eef5ff; color: var(--adf-blue); }

/* List mode is a real client-side alternative, not a second server template. */
.adf-catalog-grid.is-list { grid-template-columns: 1fr; gap: 9px; }
.adf-catalog-grid.is-list .adf-product-card { min-height: 190px; display: grid; grid-template-columns: 220px minmax(0,1fr); overflow: hidden; }
.adf-catalog-grid.is-list .adf-product-card__media { min-height: 190px; aspect-ratio: auto; }
.adf-catalog-grid.is-list .adf-product-card__body { padding: 18px 20px; display: grid; grid-template-columns: minmax(0,1fr) 210px; grid-template-rows: auto auto auto 1fr auto; column-gap: 24px; align-content: start; }
.adf-catalog-grid.is-list .adf-product-card__brand,
.adf-catalog-grid.is-list .adf-product-card__name,
.adf-catalog-grid.is-list .adf-category-card-meta,
.adf-catalog-grid.is-list .adf-stock-row { grid-column: 1; }
.adf-catalog-grid.is-list .adf-product-card__name { min-height: 0; margin-top: 5px; font-size: 15px; line-height: 1.35; -webkit-line-clamp: 3; }
.adf-catalog-grid.is-list .adf-category-card-meta { margin-top: 10px; }
.adf-catalog-grid.is-list .adf-stock-row { align-self: start; max-width: 420px; }
.adf-catalog-grid.is-list .adf-price-row { grid-column: 2; grid-row: 1 / span 2; align-self: start; margin: 0; padding: 3px 0 10px 22px; border-left: 1px solid #edf0f5; }
.adf-catalog-grid.is-list .adf-price-row strong { font-size: 22px; }
.adf-catalog-grid.is-list .adf-card-buy { grid-column: 2; grid-row: 4 / span 2; align-self: end; margin: 0; padding: 10px 0 0 22px; border-left: 1px solid #edf0f5; }
.adf-catalog-grid.is-list .adf-add-btn { min-height: 44px; }
.adf-catalog-grid.is-list .adf-quick-view { opacity: 1; transform: translate(-50%,0); }

.adf-category-load { margin-top: 16px; padding: 24px 20px 20px; display: flex; flex-direction: column; align-items: center; gap: 11px; border: 1px solid #e1e7f0; border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(35,53,85,.045); text-align: center; }
.adf-category-load__text { color: #7a8799; font-size: 9.5px; font-weight: 650; }
.adf-category-load__text b { color: #2b3951; font-size: 10px; }
.adf-category-load__track { width: min(320px,90%); height: 5px; overflow: hidden; border-radius: 999px; background: #e8edf4; }
.adf-category-load__track i { display: block; height: 100%; border-radius: inherit; background: var(--adf-blue); transition: width .3s ease; }
.adf-category-load__button { min-width: 220px; min-height: 42px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid #c8d9f8; border-radius: 12px; background: #eef5ff; color: var(--adf-blue) !important; font-size: 10px; font-weight: 800; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.adf-category-load__button:hover { transform: translateY(-1px); background: #e4efff; box-shadow: 0 8px 20px rgba(23,101,255,.10); }
.adf-category-load__button.is-loading { pointer-events: none; opacity: .72; }
.adf-category-load__button.is-loading:after { content: ""; width: 14px; height: 14px; border: 2px solid rgba(23,101,255,.22); border-top-color: var(--adf-blue); border-radius: 50%; animation: adfCatalogSpin .7s linear infinite; }
@keyframes adfCatalogSpin { to { transform: rotate(360deg); } }
.adf-category-pagination { margin-top: 2px; }
.adf-category-pagination .pagination { margin: 0 !important; }
.adf-category-pagination .pagination > li > a,
.adf-category-pagination .pagination > li > span { min-width: 31px; height: 31px; padding: 0 8px !important; display: inline-flex; align-items: center; justify-content: center; border: 0 !important; border-radius: 9px !important; background: transparent !important; color: #7e8a9d !important; font-size: 9px !important; font-weight: 750; }
.adf-category-pagination .pagination > .active > span { background: #eef5ff !important; color: var(--adf-blue) !important; }

.adf-category-empty { min-height: 350px; margin-top: 13px; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed #d8e1ed; border-radius: 20px; background: #fff; text-align: center; }
.adf-category-empty__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: #eef4ff; color: var(--adf-blue); }
.adf-category-empty__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.adf-category-empty h2 { margin: 16px 0 7px; color: #1c2b44; font-size: 19px; font-weight: 800; letter-spacing: -.5px; }
.adf-category-empty p { max-width: 460px; margin: 0; color: #7c889a; font-size: 10px; line-height: 1.6; }
.adf-category-empty a { min-height: 40px; margin-top: 17px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--adf-blue); color: #fff !important; font-size: 10px; font-weight: 800; box-shadow: 0 8px 19px rgba(23,101,255,.18); }

.adf-category-description { margin-top: 26px; padding: 25px 28px; border: 1px solid #e3e9f1; border-radius: 20px; background: #fff; box-shadow: 0 9px 26px rgba(35,53,85,.035); }
.adf-category-description__head strong { color: #24334c; font-size: 15px; font-weight: 800; }
.adf-category-description__body { max-height: 58px; margin-top: 9px; overflow: hidden; position: relative; color: #778497; font-size: 10px; line-height: 1.7; transition: max-height .28s ease; }
.adf-category-description__body:after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30px; background: linear-gradient(to bottom,rgba(255,255,255,0),#fff); pointer-events: none; }
.adf-category-description.is-open .adf-category-description__body { max-height: 1200px; }
.adf-category-description.is-open .adf-category-description__body:after { opacity: 0; }
.adf-category-description > button { margin-top: 10px; padding: 0; border: 0; background: transparent; color: var(--adf-blue); font-size: 9.5px; font-weight: 800; cursor: pointer; }
.adf-category-description > button span { display: inline-block; margin-left: 5px; transition: transform .18s ease; }
.adf-category-description.is-open > button span { transform: rotate(180deg); }
.adf-category-right:empty { display: none; }

/* Fixed mobile DreamFilter — premium full-height sheet. */
body > .dream-filter.rdf-mobile-view { z-index: 1300 !important; width: min(92vw, 390px) !important; padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
body > .dream-filter.rdf-mobile-view > .rdf-form { height: 100%; max-height: 100% !important; display: flex !important; flex-direction: column; overflow: hidden; border-radius: 22px 0 0 22px !important; background: #fff !important; box-shadow: -18px 0 55px rgba(22,35,60,.16) !important; }
body > .dream-filter.rdf-mobile-view .rdf-header { min-height: 64px; padding: 0 20px !important; display: flex !important; align-items: center; border-bottom: 1px solid #e8edf4; }
body > .dream-filter.rdf-mobile-view .rdf-header h3 { margin: 0 !important; color: #1d2b44 !important; font-size: 17px !important; font-weight: 800 !important; letter-spacing: -.4px; }
body > .dream-filter.rdf-mobile-view .rdf-body { flex: 1 1 auto; max-height: none !important; padding: 0 18px !important; overflow-y: auto !important; }
body > .dream-filter.rdf-mobile-view .rdf-footer { flex: 0 0 auto; margin: 0 !important; padding: 12px 18px 18px !important; border-top: 1px solid #e8edf4; background: #fff; }
body > .dream-filter.rdf-mobile-view .rdf-footer .btn { min-height: 46px !important; border-radius: 13px !important; font-size: 11px !important; font-weight: 800 !important; }
body > .dream-filter.rdf-mobile-view .panel-group .panel { border: 0 !important; border-bottom: 1px solid #edf0f5 !important; border-radius: 0 !important; box-shadow: none !important; }
body > .dream-filter.rdf-mobile-view .panel-heading { padding: 0 !important; background: #fff !important; }
body > .dream-filter.rdf-mobile-view .panel-title > span { min-height: 54px; padding: 0 !important; display: flex !important; align-items: center; justify-content: space-between; color: #2a3850 !important; font-size: 11px !important; font-weight: 800 !important; }
body > .dream-filter.rdf-mobile-view .adf-filter-chevron { width: 16px !important; height: 16px !important; fill: none !important; stroke: #8190a5 !important; stroke-width: 1.8 !important; }
body > .dream-filter.rdf-mobile-view .panel-body { padding: 0 0 15px !important; border: 0 !important; }
body > .dream-filter.rdf-mobile-view .rdf-group .checkbox { min-height: 34px; margin: 0 !important; }
body > .dream-filter.rdf-mobile-view .rdf-group .checkbox label { color: #526074 !important; font-size: 11px !important; }
body > .dream-filter.rdf-mobile-view .rdf-picked .btn { border-radius: 999px !important; background: #eef5ff !important; color: var(--adf-blue) !important; border: 1px solid #cbddff !important; box-shadow: none !important; }
body > .rdr-backdrop { z-index: 1290 !important; background: rgba(14,26,49,.42) !important; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }

@media (max-width: 1260px) {
  .adf-category-page { --adf-catalog-sidebar: 260px; }
  .adf-catalog-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .adf-category-sort select { max-width: 145px; }
}

@media (max-width: 991px) {
  .adf-category-page { padding-top: 12px; }
  .adf-category-hero { min-height: 138px; grid-template-columns: minmax(0,1fr) 170px; padding: 24px; border-radius: 20px; }
  .adf-category-hero__signal { width: 140px; transform: scale(.86); transform-origin: right center; }
  .adf-category-layout { grid-template-columns: 1fr; gap: 0; }
  .adf-category-filter { position: static; height: 0; overflow: visible; }
  .adf-category-filter__head { display: none; }
  .adf-category-filter__body { border: 0; box-shadow: none; overflow: visible; }
  .adf-category-filter__body > .dream-filter:not(.rdf-mobile-view) { height: 0; overflow: hidden; }
  .adf-category-toolbar { top: 101px; }
  .adf-catalog-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .adf-category-mobile-tools { display: none; }
}

@media (max-width: 767px) {
  .adf-category-page { padding: 8px 0 54px; background: linear-gradient(180deg,#f6f9fd 0,#fff 560px); }
  .adf-category-breadcrumbs { min-height: 27px; font-size: 9px; }
  .adf-category-hero { min-height: 122px; margin-top: 5px; padding: 19px 18px; grid-template-columns: minmax(0,1fr) 86px; border-radius: 18px; }
  .adf-category-hero h1 { font-size: 27px; letter-spacing: -1.1px; }
  .adf-category-hero p { max-height: 34px; overflow: hidden; margin-top: 7px; font-size: 9px; line-height: 1.55; }
  .adf-category-hero__meta span { min-height: 22px; font-size: 8px; }
  .adf-category-hero__media { height: 82px; }
  .adf-category-hero__media img { max-height: 82px; }
  .adf-category-hero__signal { width: 92px; height: 78px; transform: scale(.65); transform-origin: right center; }
  .adf-subcategory-section { margin-top: 13px; }
  .adf-subcategory-rail { margin-right: -12px; }
  .adf-subcategory-card { flex-basis: 188px; min-height: 68px; grid-template-columns: 50px minmax(0,1fr) 22px; border-radius: 14px; }
  .adf-subcategory-card__media { width: 50px; height: 50px; }
  .adf-category-layout { margin-top: 13px; }
  .adf-category-mobile-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 9px; }
  .adf-category-mobile-tool,
  .adf-category-mobile-sort { min-height: 44px; padding: 0 12px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid #dce4ef; border-radius: 13px; background: #fff; color: #344054; box-shadow: 0 5px 15px rgba(35,53,85,.035); font-size: 10px; font-weight: 800; }
  .adf-category-mobile-tool svg,
  .adf-category-mobile-sort svg { width: 16px; height: 16px; fill: none; stroke: var(--adf-blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .adf-category-mobile-tool b { min-width: 19px; height: 19px; padding: 0 5px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--adf-blue); color: #fff; font-size: 8px; }
  .adf-category-mobile-sort select { max-width: 110px; border: 0 !important; outline: 0 !important; background: transparent !important; color: #344054; font-size: 9.5px; font-weight: 800; }
  .adf-category-toolbar { position: static; min-height: 45px; padding: 7px 10px; border-radius: 13px; }
  .adf-category-toolbar__left > strong { font-size: 9px; }
  .adf-category-chips { display: none; }
  .adf-category-toolbar__right { margin-left: auto; }
  .adf-category-sort { display: none; }
  .adf-category-view { height: 34px; grid-template-columns: 29px 29px; border-radius: 9px; }
  .adf-catalog-grid { margin-top: 9px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .adf-catalog-grid .adf-product-card { border-radius: 16px; }
  .adf-catalog-grid .adf-product-card__media { aspect-ratio: 1/1; }
  .adf-catalog-grid .adf-product-card__image { inset: 12px; }
  .adf-catalog-grid .adf-product-card__body { padding: 10px 10px 11px; }
  .adf-catalog-grid .adf-product-card__brand { min-height: 12px; font-size: 7.5px; }
  .adf-catalog-grid .adf-product-card__name { min-height: 38px; font-size: 10px; line-height: 1.35; }
  .adf-catalog-grid .adf-category-card-meta { min-height: 20px; margin-top: 4px; font-size: 7.5px; }
  .adf-catalog-grid .adf-category-card-meta em { display: none; }
  .adf-catalog-grid .adf-stock-row { min-height: 23px; padding-top: 6px; font-size: 7.5px; }
  .adf-catalog-grid .adf-stock-row em { display: none; }
  .adf-catalog-grid .adf-price-row { min-height: 40px; margin-top: 6px; }
  .adf-catalog-grid .adf-price-row strong { font-size: 15px; letter-spacing: -.4px; }
  .adf-catalog-grid .adf-old-price { font-size: 7.5px; }
  .adf-catalog-grid .adf-saving { display: none; }
  .adf-catalog-grid .adf-card-buy { padding-top: 7px; }
  .adf-catalog-grid .adf-add-btn { min-height: 38px; border-radius: 10px; font-size: 9px; }
  .adf-catalog-grid .adf-add-btn svg { width: 14px; height: 14px; }
  .adf-catalog-grid .adf-qty { min-height: 38px; grid-template-columns: 31px 24px 31px minmax(0,1fr); border-radius: 10px; }
  .adf-catalog-grid .adf-qty button { height: 36px; }
  .adf-catalog-grid .adf-qty b { font-size: 7px; padding: 0 4px; }
  .adf-catalog-grid .adf-product-card__actions { right: 7px; top: 7px; gap: 4px; }
  .adf-catalog-grid .adf-icon-btn { width: 29px; height: 29px; border-radius: 9px; }
  .adf-catalog-grid .adf-icon-btn svg { width: 14px; height: 14px; }
  .adf-category-badges { left: 7px; top: 7px; max-width: calc(100% - 48px); gap: 3px; }
  .adf-category-badges .adf-badge { min-height: 20px; padding: 0 6px; font-size: 7px; }
  .adf-catalog-grid.is-list { grid-template-columns: 1fr; }
  .adf-catalog-grid.is-list .adf-product-card { min-height: 142px; grid-template-columns: 126px minmax(0,1fr); }
  .adf-catalog-grid.is-list .adf-product-card__media { min-height: 142px; }
  .adf-catalog-grid.is-list .adf-product-card__body { padding: 12px; display: flex; flex-direction: column; }
  .adf-catalog-grid.is-list .adf-product-card__name { font-size: 11px; }
  .adf-catalog-grid.is-list .adf-price-row,
  .adf-catalog-grid.is-list .adf-card-buy { margin-top: auto; padding: 6px 0 0; border-left: 0; }
  .adf-catalog-grid.is-list .adf-quick-view { display: none; }
  .adf-category-load { padding: 20px 14px 16px; border-radius: 16px; }
  .adf-category-load__button { width: 100%; min-width: 0; }
  .adf-category-pagination { max-width: 100%; overflow-x: auto; }
  .adf-category-description { margin-top: 20px; padding: 20px; border-radius: 17px; }
  body > .dream-filter.rdf-mobile-view { width: min(92vw, 390px) !important; }
  body > .dream-filter.rdf-mobile-view > .rdf-form { border-radius: 20px 0 0 20px !important; }
}

@media (max-width: 420px) {
  .adf-catalog-grid { gap: 7px; }
  .adf-catalog-grid .adf-product-card__body { padding: 9px; }
  .adf-catalog-grid .adf-product-card__name { font-size: 9.5px; }
  .adf-catalog-grid .adf-price-row strong { font-size: 14px; }
  .adf-catalog-grid .adf-qty { grid-template-columns: 29px 22px 29px minmax(0,1fr); }
  .adf-subcategory-card { flex-basis: 176px; }
}

/* Stage 2 QA: keep Dream Filter mobile/loader states inside the blue Full design system. */
body > .dream-filter.rdf-mobile-view .rdf-group .radio > label input:checked + span:after {
  background: var(--adf-blue) !important;
  border-color: var(--adf-blue) !important;
}
body > .dream-filter.rdf-mobile-view .rdf-group .checkbox > label input:checked + span:after {
  background: var(--adf-blue) !important;
}
body > .dream-filter.rdf-mobile-view .rdf-filters .form-control {
  background-image: linear-gradient(var(--adf-blue), var(--adf-blue)), linear-gradient(#d8e0ec, #d8e0ec) !important;
}
body > .dream-filter.rdf-mobile-view .irs-bar,
body > .dream-filter.rdf-mobile-view .irs-bar-edge,
body > .dream-filter.rdf-mobile-view .irs-handle {
  background-color: var(--adf-blue) !important;
}
.adf-category-filter .rdf-loader [class*="ball"] > div,
body > .dream-filter.rdf-mobile-view .rdf-loader [class*="ball"] > div,
.adf-category-filter .rdf-loader .cube-transition > div,
body > .dream-filter.rdf-mobile-view .rdf-loader .cube-transition > div,
.adf-category-filter .rdf-loader .pacman > div:nth-child(n+3),
body > .dream-filter.rdf-mobile-view .rdf-loader .pacman > div:nth-child(n+3) {
  background-color: var(--adf-blue) !important;
}
.adf-category-filter .rdf-loader .pacman > div:first-of-type,
.adf-category-filter .rdf-loader .pacman > div:nth-child(2),
body > .dream-filter.rdf-mobile-view .rdf-loader .pacman > div:first-of-type,
body > .dream-filter.rdf-mobile-view .rdf-loader .pacman > div:nth-child(2) {
  border-color: var(--adf-blue) !important;
  border-right-color: transparent !important;
}
.adf-category-filter .rdf-loader .semi-circle-spin > div,
body > .dream-filter.rdf-mobile-view .rdf-loader .semi-circle-spin > div {
  background-image: linear-gradient(transparent 0, transparent 70%, var(--adf-blue) 30%, var(--adf-blue) 100%) !important;
}
body > .dream-filter.rdf-mobile-view .rdf-footer .btn-primary {
  border-color: var(--adf-blue) !important;
  background: var(--adf-blue) !important;
  color: #fff !important;
}
body > .dream-filter.rdf-mobile-view .rdf-clear,
body > .dream-filter.rdf-mobile-view .rdf-truncate-show,
body > .dream-filter.rdf-mobile-view .rdf-truncate-hide { color: var(--adf-blue) !important; }

/* AdeptDEV Full v1.1.1 — first-party catalog filters / graceful no-filter layout */
.adf-category-hero.is-compact {
  min-height: 118px;
  grid-template-columns: minmax(0,1fr) 150px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.adf-category-hero.is-compact .adf-category-hero__signal { transform: scale(.82); transform-origin: right center; }
.adf-category-filter__head-actions { display:flex; align-items:center; gap:8px; }
.adf-category-filter__close { display:none; width:32px; height:32px; border:0; border-radius:10px; background:#f3f6fb; color:#536175; font-size:22px; line-height:1; }
.adf-native-filters { padding: 4px 15px 12px; }
.adf-native-filter-group { border-bottom:1px solid #edf1f6; }
.adf-native-filter-group:last-child { border-bottom:0; }
.adf-native-filter-group summary {
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  list-style:none;
  cursor:pointer;
  color:#26354d;
  font-size:10.5px;
  font-weight:800;
  user-select:none;
}
.adf-native-filter-group summary::-webkit-details-marker { display:none; }
.adf-native-filter-group summary svg { width:15px; height:15px; fill:none; stroke:#8390a4; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:transform .18s ease; }
.adf-native-filter-group:not([open]) summary svg { transform:rotate(-90deg); }
.adf-native-filter-options { padding:0 0 13px; display:flex; flex-direction:column; gap:2px; }
.adf-native-filter-option {
  min-height:34px;
  display:grid;
  grid-template-columns:18px minmax(0,1fr) auto;
  align-items:center;
  gap:9px;
  border-radius:9px;
  color:#526074 !important;
  font-size:10px;
  font-weight:600;
  transition:background .16s ease,color .16s ease;
}
.adf-native-filter-option:hover { background:#f7f9fd; color:#26354d !important; }
.adf-native-filter-option > i {
  width:18px;
  height:18px;
  position:relative;
  display:block;
  border:1px solid #ccd5e2;
  border-radius:5px;
  background:#fff;
}
.adf-native-filter-option.is-active > i { border-color:var(--adf-blue); background:var(--adf-blue); box-shadow:0 0 0 3px rgba(23,101,255,.08); }
.adf-native-filter-option.is-active > i:after {
  content:"";
  position:absolute;
  left:5px;
  top:4px;
  width:7px;
  height:4px;
  border-left:1.8px solid #fff;
  border-bottom:1.8px solid #fff;
  transform:rotate(-45deg);
}
.adf-native-filter-option > b {
  min-width:24px;
  height:18px;
  padding:0 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#f2f5f9;
  color:#8c98aa;
  font-size:8px;
  font-weight:750;
}
.adf-native-filter-option.is-active > span { color:var(--adf-blue); font-weight:750; }
.adf-filter-backdrop { display:none; }

.adf-category-layout--wide .adf-catalog-grid--few { justify-content:start; grid-template-columns:repeat(3,minmax(250px,320px)); }
.adf-category-layout--wide .adf-catalog-grid--few-1 { grid-template-columns:minmax(280px,320px); }
.adf-category-layout--wide .adf-catalog-grid--few-2 { grid-template-columns:repeat(2,minmax(280px,320px)); }
.adf-category-layout--wide .adf-catalog-grid--few-3 { grid-template-columns:repeat(3,minmax(260px,320px)); }

@media (max-width: 991px) {
  body.adf-filter-drawer-open { overflow:hidden; }
  .adf-category-filter {
    position:fixed !important;
    z-index:10050;
    left:0;
    top:0;
    bottom:0;
    width:min(88vw,390px);
    height:100dvh !important;
    overflow:auto !important;
    padding:0;
    background:#fff;
    box-shadow:0 22px 70px rgba(18,34,64,.24);
    transform:translateX(-104%);
    transition:transform .25s cubic-bezier(.2,.75,.2,1);
  }
  .adf-category-filter.is-open { transform:translateX(0); }
  .adf-category-filter__head {
    min-height:68px;
    padding:12px 16px !important;
    display:flex !important;
    position:sticky;
    top:0;
    z-index:2;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(16px);
    border-bottom:1px solid #e8edf5;
  }
  .adf-category-filter__close { display:inline-grid; place-items:center; }
  .adf-category-filter__body { border:0 !important; box-shadow:none !important; overflow:visible !important; }
  .adf-native-filters { padding:4px 16px 24px; }
  .adf-filter-backdrop {
    position:fixed;
    inset:0;
    z-index:10040;
    display:block;
    pointer-events:none;
    opacity:0;
    border:0;
    background:rgba(14,25,45,.28);
    backdrop-filter:blur(2px);
    transition:opacity .2s ease;
  }
  body.adf-filter-drawer-open .adf-filter-backdrop { pointer-events:auto; opacity:1; }
  .adf-category-layout--wide .adf-catalog-grid--few,
  .adf-category-layout--wide .adf-catalog-grid--few-1,
  .adf-category-layout--wide .adf-catalog-grid--few-2,
  .adf-category-layout--wide .adf-catalog-grid--few-3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .adf-category-hero.is-compact { min-height:108px; grid-template-columns:minmax(0,1fr) 74px; padding:18px; }
}

/* AdeptDEV Full v1.1.2 — Smart Filters (first-party, no external license dependency) */
.adf-smart-filters { padding: 4px 15px 12px; }
.adf-smart-filter-group { border-bottom: 1px solid #edf1f7; }
.adf-smart-filter-group:last-child { border-bottom: 0; }
.adf-smart-filter-group > summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  color: #25344d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -.08px;
  user-select: none;
}
.adf-smart-filter-group > summary::-webkit-details-marker { display: none; }
.adf-smart-filter-group > summary svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #8290a4;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.adf-smart-filter-group:not([open]) > summary svg { transform: rotate(-90deg); }
.adf-smart-filter-options { display: flex; flex-direction: column; gap: 3px; padding: 0 0 14px; }
.adf-smart-filter-option {
  min-height: 36px;
  display: grid;
  grid-template-columns: 19px minmax(0,1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 0 6px 0 2px;
  border-radius: 10px;
  color: #526177 !important;
  font-size: 10.5px;
  font-weight: 650;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.adf-smart-filter-option:hover { background: #f6f9ff; color: #25344d !important; transform: translateX(1px); }
.adf-smart-filter-option > i {
  width: 19px;
  height: 19px;
  position: relative;
  display: block;
  border: 1px solid #cbd5e4;
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}
.adf-smart-filter-option.is-active > i {
  border-color: var(--adf-blue);
  background: var(--adf-blue);
  box-shadow: 0 0 0 3px rgba(23,101,255,.09);
}
.adf-smart-filter-option.is-active > i:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.adf-smart-filter-option.is-active > span { color: var(--adf-blue); font-weight: 800; }
.adf-smart-filter-option > b {
  min-width: 27px;
  height: 20px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2f5fa;
  color: #8a97aa;
  font-size: 8.5px;
  font-weight: 800;
}
.adf-smart-filter-option.is-active > b { background: #eef4ff; color: var(--adf-blue); }

.adf-smart-price { padding: 2px 0 16px; }
.adf-smart-price__track {
  height: 5px;
  margin: 4px 3px 12px;
  border-radius: 999px;
  background: #e6ecf5;
  position: relative;
  overflow: hidden;
}
.adf-smart-price__track i { position: absolute; inset: 0 12%; border-radius: inherit; background: linear-gradient(90deg,#1a63ff,#4c86ff); }
.adf-smart-price__inputs { display: grid; grid-template-columns: minmax(0,1fr) 12px minmax(0,1fr); gap: 7px; align-items: end; }
.adf-smart-price__inputs label {
  height: 48px;
  padding: 6px 9px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #dfe6f0;
  border-radius: 11px;
  background: #f8faff;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.adf-smart-price__inputs label:focus-within { background: #fff; border-color: #92b5ff; box-shadow: 0 0 0 3px rgba(23,101,255,.08); }
.adf-smart-price__inputs label span { color: #8b98aa; font-size: 8px; font-weight: 750; text-transform: uppercase; letter-spacing: .25px; }
.adf-smart-price__inputs input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #24324a;
  font-size: 11px;
  font-weight: 800;
  -moz-appearance: textfield;
}
.adf-smart-price__inputs input::-webkit-outer-spin-button,
.adf-smart-price__inputs input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.adf-smart-price__inputs em { align-self: center; color: #a3afbf; font-size: 11px; font-style: normal; text-align: center; }
.adf-smart-price__bounds { margin-top: 6px; display: flex; justify-content: space-between; color: #9aa6b7; font-size: 8px; font-weight: 650; }
.adf-smart-price__apply {
  width: 100%;
  min-height: 36px;
  margin-top: 10px;
  border: 0;
  border-radius: 10px;
  background: #edf4ff;
  color: var(--adf-blue);
  font-size: 10px;
  font-weight: 850;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.adf-smart-price__apply:hover { background: var(--adf-blue); color: #fff; transform: translateY(-1px); }

.adf-category-filter__mobile-footer { display: none; }
.adf-category-page.is-filtering .adf-category-main { opacity: .55; transform: translateY(2px); pointer-events: none; }
.adf-category-page.is-filtering .adf-category-filter { opacity: .75; pointer-events: none; }
.adf-category-main, .adf-category-filter { transition: opacity .18s ease, transform .18s ease; }

@media (max-width: 991px) {
  .adf-smart-filters { padding: 4px 16px 92px; }
  .adf-smart-filter-group > summary { min-height: 56px; font-size: 12px; }
  .adf-smart-filter-option { min-height: 42px; font-size: 11.5px; }
  .adf-smart-price__inputs label { height: 54px; }
  .adf-smart-price__inputs input { font-size: 12px; }
  .adf-category-filter__mobile-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: min(88vw,390px);
    z-index: 4;
    min-height: 74px;
    padding: 11px 14px max(11px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 100px minmax(0,1fr);
    align-items: center;
    gap: 9px;
    border-top: 1px solid #e7edf5;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 -12px 28px rgba(20,38,70,.08);
  }
  .adf-category-filter__mobile-footer > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce5f1;
    border-radius: 12px;
    color: #627086 !important;
    font-size: 10.5px;
    font-weight: 800;
  }
  .adf-category-filter__mobile-footer > button {
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--adf-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    box-shadow: 0 7px 18px rgba(23,101,255,.2);
  }
}

/* ==========================================================================\n   ADEPTDEV FULL PDP — Stage 3 v1.2.0\n   Gemini visual direction translated into production OpenCart UI.\n   ========================================================================== */
#product-product.adp-pdp-page {
  --adp-pdp-blue: #2867f0;
  --adp-pdp-blue-dark: #1553dc;
  --adp-pdp-blue-soft: #edf4ff;
  --adp-pdp-ink: #13213a;
  --adp-pdp-muted: #6f7f99;
  --adp-pdp-line: #dfe7f2;
  --adp-pdp-surface: #f6f9fd;
  --adp-pdp-white: #fff;
  --adp-pdp-green: #19a36b;
  --adp-pdp-amber: #ad7419;
  background: #f5f8fc;
  color: var(--adp-pdp-ink);
  padding: 22px 0 72px;
}
#product-product .adp-pdp-container { max-width: 1440px; padding-left: 24px; padding-right: 24px; }
#product-product .adp-pdp-breadcrumbs { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin:0 0 18px; font-size:12px; color:#8390a6; }
#product-product .adp-pdp-breadcrumbs a { color:#697991; transition:.2s ease; }
#product-product .adp-pdp-breadcrumbs a:hover { color:var(--adp-pdp-blue); }
#product-product .adp-pdp-breadcrumbs span { color:#b8c3d3; }

#product-product .adp-pdp-main { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr); gap:22px; align-items:start; margin-bottom:24px; }
#product-product .adp-pdp-gallery-card,
#product-product .adp-pdp-buy-card,
#product-product .adp-pdp-content-section,
#product-product .adp-pdp-products-section {
  background:var(--adp-pdp-white); border:1px solid var(--adp-pdp-line); border-radius:24px; box-shadow:0 12px 35px rgba(42,64,104,.055);
}
#product-product .adp-pdp-gallery-card { min-width:0; position:relative; padding:22px; overflow:hidden; }
#product-product .adp-pdp-badges { position:absolute; z-index:7; top:18px; left:18px; display:flex; gap:7px; flex-wrap:wrap; max-width:70%; }
#product-product .adp-pdp-badge { display:inline-flex; min-height:28px; align-items:center; padding:0 11px; border-radius:999px; background:var(--adp-pdp-blue); color:#fff; font-size:11px; font-weight:800; letter-spacing:.02em; box-shadow:0 7px 16px rgba(40,103,240,.2); }
#product-product .adp-pdp-badge--sale { background:#1e5ee6; }
#product-product .adp-pdp-badge--soft { background:#eaf2ff; color:#245ccc; box-shadow:none; }
#product-product .adp-pdp-gallery-actions { position:absolute; z-index:8; right:18px; top:18px; display:flex; flex-direction:column; gap:8px; }
#product-product .adp-pdp-icon-btn { width:40px; height:40px; border-radius:13px; border:1px solid var(--adp-pdp-line); background:rgba(255,255,255,.94); display:grid; place-items:center; color:#53647d; box-shadow:0 5px 16px rgba(38,59,95,.07); transition:.2s ease; }
#product-product .adp-pdp-icon-btn svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
#product-product .adp-pdp-icon-btn:hover { transform:translateY(-2px); color:var(--adp-pdp-blue); border-color:#bdd2ff; }
#product-product .adp-pdp-gallery-actions .two { display:none; }
#product-product .adp-pdp-gallery-actions.wished .btn-wishlist.one,
#product-product .adp-pdp-gallery-actions.compared .btn-compare.one { display:none; }
#product-product .adp-pdp-gallery-actions.wished .btn-wishlist.two,
#product-product .adp-pdp-gallery-actions.compared .btn-compare.two { display:grid; color:var(--adp-pdp-blue); background:var(--adp-pdp-blue-soft); border-color:#c9dbff; }
#product-product .adp-pdp-gallery-actions.wished .btn-wishlist.two svg { fill:currentColor; }

#product-product .adp-pdp-main-swiper { height:520px; width:100%; border-radius:18px; background:linear-gradient(145deg,#fbfdff,#f1f5fa); overflow:hidden; }
#product-product .adp-pdp-main-swiper .swiper-slide { display:flex; align-items:center; justify-content:center; padding:56px 62px; }
#product-product .adp-pdp-main-swiper .swiper-slide a { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
#product-product .adp-pdp-main-swiper img { display:block; max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; transition:transform .35s ease; }
#product-product .adp-pdp-main-swiper .swiper-slide:hover img { transform:scale(1.025); }
#product-product .adp-pdp-gallery-prev,
#product-product .adp-pdp-gallery-next { position:absolute; z-index:10; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%; display:grid; place-items:center; border:1px solid #d9e3ef; background:rgba(255,255,255,.92); color:#455b78; font-size:28px; line-height:1; box-shadow:0 7px 20px rgba(32,53,85,.08); }
#product-product .adp-pdp-gallery-prev { left:14px; }
#product-product .adp-pdp-gallery-next { right:14px; }
#product-product .adp-pdp-gallery-prev:hover,
#product-product .adp-pdp-gallery-next:hover { color:var(--adp-pdp-blue); border-color:#bcd0fb; }
#product-product .adp-pdp-gallery-count { position:absolute; z-index:9; right:16px; bottom:14px; padding:6px 10px; border:1px solid #dce5ef; border-radius:999px; background:rgba(255,255,255,.92); color:#64758e; font-size:11px; font-weight:700; backdrop-filter:blur(10px); }
#product-product .adp-pdp-thumbs-swiper { margin-top:12px; }
#product-product .adp-pdp-thumbs-swiper .swiper-slide { height:76px; border-radius:13px; border:1px solid var(--adp-pdp-line); background:#f8fafd; display:flex; align-items:center; justify-content:center; padding:7px; opacity:.65; cursor:pointer; transition:.2s ease; }
#product-product .adp-pdp-thumbs-swiper .swiper-slide-thumb-active { opacity:1; border-color:var(--adp-pdp-blue); box-shadow:0 0 0 2px rgba(40,103,240,.09); }
#product-product .adp-pdp-thumbs-swiper img { max-width:100%; max-height:100%; object-fit:contain; }
#product-product .adp-pdp-placeholder { min-height:590px; border-radius:18px; background:linear-gradient(145deg,#f8fbff,#eef3fa); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; color:#8391a8; }
#product-product .adp-pdp-placeholder img { width:min(250px,55%); max-height:90px; object-fit:contain; opacity:.9; }
#product-product .adp-pdp-placeholder strong { font-size:14px; font-weight:700; }

#product-product .adp-pdp-buy-card { position:sticky; top:92px; padding:26px; min-width:0; }
#product-product .adp-pdp-brand-row { display:flex; align-items:center; justify-content:space-between; gap:15px; margin-bottom:10px; }
#product-product .adp-pdp-brand { color:var(--adp-pdp-blue); font-size:11px; font-weight:900; letter-spacing:.055em; text-transform:uppercase; }
#product-product .adp-pdp-code { color:#8995a8; font-size:11px; white-space:nowrap; }
#product-product .adp-pdp-buy-card h1 { margin:0; color:var(--adp-pdp-ink); font-size:clamp(24px,2vw,34px); line-height:1.12; letter-spacing:-.035em; font-weight:800; }
#product-product .adp-pdp-meta-row { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:13px; }
#product-product .adp-pdp-rating-link { display:inline-flex; align-items:center; gap:5px; padding:6px 9px; border-radius:9px; background:#fff9eb; color:#7f5a19; font-size:12px; }
#product-product .adp-pdp-rating-link .adp-pdp-star { color:#f0aa1f; }
#product-product .adp-pdp-rating-link span:last-child { color:#79879a; margin-left:3px; }
#product-product .adp-pdp-stock { display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:750; }
#product-product .adp-pdp-stock i { width:7px; height:7px; border-radius:50%; background:currentColor; box-shadow:0 0 0 4px rgba(25,163,107,.09); }
#product-product .adp-pdp-stock--in { color:var(--adp-pdp-green); }
#product-product .adp-pdp-stock--low { color:var(--adp-pdp-amber); }
#product-product .adp-pdp-stock--out { color:#728096; }

#product-product .adp-pdp-short-specs { margin-top:20px; }
#product-product .adp-pdp-mini-title { font-size:11px; color:#8a97aa; font-weight:800; text-transform:uppercase; letter-spacing:.055em; margin-bottom:8px; }
#product-product .adp-pdp-spec-chips { display:flex; flex-wrap:wrap; gap:7px; }
#product-product .adp-pdp-spec-chip { border:1px solid #dfe7f1; border-radius:10px; background:#f8fafe; min-height:42px; padding:7px 10px; display:flex; align-items:flex-start; flex-direction:column; text-align:left; gap:1px; transition:.2s ease; }
#product-product .adp-pdp-spec-chip span { font-size:9px; color:#8b98aa; line-height:1.1; }
#product-product .adp-pdp-spec-chip strong { font-size:11px; color:#34465f; font-weight:750; max-width:120px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
#product-product .adp-pdp-spec-chip:hover { border-color:#bfd1fb; background:#f2f7ff; transform:translateY(-1px); }

#product-product .adp-pdp-options { margin-top:17px; display:grid; gap:12px; }
#product-product .adp-pdp-option { margin:0; }
#product-product .adp-pdp-option > label { display:block; margin:0 0 7px; font-size:11px; color:#66768d; font-weight:750; }
#product-product .adp-pdp-option .form-control { height:44px; border-radius:11px; border:1px solid var(--adp-pdp-line); box-shadow:none; background:#fbfcfe; font-size:12px; color:#263950; }
#product-product .adp-pdp-option textarea.form-control { height:auto; }
#product-product .adp-pdp-choice-grid { display:flex; flex-wrap:wrap; gap:8px; }
#product-product .adp-pdp-choice { margin:0; cursor:pointer; }
#product-product .adp-pdp-choice input { position:absolute; opacity:0; }
#product-product .adp-pdp-choice span { min-height:37px; padding:8px 11px; border:1px solid var(--adp-pdp-line); background:#fbfcfe; border-radius:10px; display:flex; align-items:center; gap:7px; font-size:11px; color:#445671; transition:.2s ease; }
#product-product .adp-pdp-choice input:checked + span { border-color:var(--adp-pdp-blue); background:var(--adp-pdp-blue-soft); color:#1f58c8; box-shadow:0 0 0 2px rgba(40,103,240,.08); }
#product-product .adp-pdp-choice small { color:#79879c; }
#product-product .adp-pdp-upload-btn { border:1px solid var(--adp-pdp-line); background:#f8fafe; border-radius:10px; min-height:42px; padding:0 12px; color:#425570; font-size:11px; font-weight:700; }

#product-product .adp-pdp-price-zone { margin-top:20px; padding:17px; border-radius:16px; border:1px solid #dfe8f4; background:linear-gradient(135deg,#f9fbff,#f3f7fd); }
#product-product .adp-pdp-price-main { display:flex; align-items:baseline; flex-wrap:wrap; gap:8px; }
#product-product .adp-pdp-price-main strong { display:block; font-size:31px; line-height:1; font-weight:850; letter-spacing:-.045em; color:#15233b; }
#product-product .adp-pdp-old-price { order:-1; color:#9aa6b6; font-size:13px; text-decoration:line-through; }
#product-product .adp-pdp-price-main em { margin-left:auto; align-self:center; color:#2362d8; background:#e9f2ff; border-radius:8px; padding:5px 8px; font-style:normal; font-size:10px; font-weight:800; }
#product-product .adp-pdp-payment-note { border-top:1px solid #e2e9f3; margin-top:12px; padding-top:12px; display:flex; align-items:center; gap:9px; }
#product-product .adp-pdp-payment-note svg { width:24px; height:24px; flex:0 0 24px; fill:none; stroke:var(--adp-pdp-blue); stroke-width:1.5; }
#product-product .adp-pdp-payment-note div { min-width:0; display:flex; justify-content:space-between; gap:10px; width:100%; align-items:center; }
#product-product .adp-pdp-payment-note strong { color:#354963; font-size:11px; }
#product-product .adp-pdp-payment-note span { color:#7b899d; font-size:10px; text-align:right; }

#product-product .adp-pdp-purchase-row { display:grid; grid-template-columns:112px 1fr; gap:10px; margin-top:12px; }
#product-product .adp-pdp-qty-wrap > span { display:block; font-size:9px; color:#8a97aa; font-weight:700; margin:0 0 4px 3px; }
#product-product .adp-pdp-quantity { height:44px; border:1px solid #c8d7ea; border-radius:12px; background:#fff; display:grid; grid-template-columns:35px 1fr 35px; overflow:hidden; margin:0; }
#product-product .adp-pdp-quantity button { border:0; background:#f7f9fc; color:#315b99; font-size:18px; font-weight:500; transition:.2s ease; }
#product-product .adp-pdp-quantity button:hover { background:#eaf2ff; color:var(--adp-pdp-blue); }
#product-product .adp-pdp-quantity input { border:0!important; box-shadow:none!important; width:100%; height:42px; padding:0!important; text-align:center; font-size:12px; font-weight:800; background:#fff; color:#24364f; }
#product-product .adp-pdp-cart-btn { height:60px; align-self:end; border:0; border-radius:13px; background:linear-gradient(135deg,#2867f0,#1e5ce3); color:#fff; font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; gap:9px; box-shadow:0 10px 22px rgba(40,103,240,.22); transition:.2s ease; }
#product-product .adp-pdp-cart-btn svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.6; }
#product-product .adp-pdp-cart-btn:hover { background:linear-gradient(135deg,#1f5ee7,#154fd0); transform:translateY(-1px); }
#product-product .adp-pdp-cart-btn.is-loading { opacity:.72; pointer-events:none; }
#product-product .adp-pdp-cart-btn.is-added { background:#255fd9; }
#product-product .adp-pdp-cart-btn.is-disabled { background:#dce4ef; color:#8090a6; box-shadow:none; cursor:not-allowed; }
#product-product .adp-pdp-buy-now { width:100%; height:43px; border-radius:12px; border:1px solid #a9c5fa; background:#fff; color:#255dc8; font-size:12px; font-weight:800; margin-top:8px; transition:.2s ease; }
#product-product .adp-pdp-buy-now:hover { background:#f2f7ff; border-color:#7eacf9; }
#product-product .text-danger { margin-top:5px; color:#6c7b90!important; font-size:10px; background:#f4f6fa; border-left:3px solid #93a5bf; padding:7px 9px; border-radius:6px; }

#product-product .adp-pdp-availability-card { display:grid; grid-template-columns:40px 1fr auto; gap:10px; align-items:center; margin-top:12px; padding:12px; border:1px solid var(--adp-pdp-line); border-radius:14px; background:#fff; }
#product-product .adp-pdp-availability-icon { width:40px; height:40px; border-radius:11px; display:grid; place-items:center; background:var(--adp-pdp-blue-soft); color:var(--adp-pdp-blue); }
#product-product .adp-pdp-availability-icon svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.6; }
#product-product .adp-pdp-availability-card > div:nth-child(2) { display:flex; flex-direction:column; gap:2px; min-width:0; }
#product-product .adp-pdp-availability-card strong { font-size:11px; color:#30445f; }
#product-product .adp-pdp-availability-card span { font-size:9px; color:#8b98aa; line-height:1.3; }
#product-product .adp-pdp-availability-state { font-size:10px; font-weight:800; white-space:nowrap; border-radius:9px; padding:6px 8px; }
#product-product .adp-pdp-availability-state--in { color:#16885c; background:#eaf8f2; }
#product-product .adp-pdp-availability-state--low { color:#8c641f; background:#fbf6e9; }
#product-product .adp-pdp-availability-state--out { color:#6f7e93; background:#eef2f7; }

#product-product .adp-pdp-service-grid { display:grid; grid-template-columns:1fr 1fr; gap:7px; margin-top:9px; }
#product-product .adp-pdp-service-grid > div { min-height:71px; border:1px solid #e1e8f2; border-radius:13px; background:#f9fbfd; display:grid; grid-template-columns:29px 1fr; grid-template-rows:auto auto; column-gap:7px; padding:10px; align-content:center; }
#product-product .adp-pdp-service-grid svg { grid-row:1/3; width:23px; height:23px; align-self:center; fill:none; stroke:#4d6f9f; stroke-width:1.5; }
#product-product .adp-pdp-service-grid strong { font-size:10px; color:#3d5069; }
#product-product .adp-pdp-service-grid span { font-size:8.5px; line-height:1.3; color:#8a96a8; }

#product-product .adp-pdp-section-nav { position:sticky; z-index:30; top:78px; display:flex; align-items:center; gap:7px; margin:18px 0; padding:8px; border-radius:16px; border:1px solid #dfe7f2; background:rgba(255,255,255,.93); backdrop-filter:blur(14px); box-shadow:0 8px 22px rgba(38,58,90,.055); overflow:auto; scrollbar-width:none; }
#product-product .adp-pdp-section-nav::-webkit-scrollbar { display:none; }
#product-product .adp-pdp-section-nav a { flex:0 0 auto; padding:9px 14px; border-radius:10px; color:#667790; font-size:11px; font-weight:750; transition:.2s ease; }
#product-product .adp-pdp-section-nav a:hover,
#product-product .adp-pdp-section-nav a.is-active { color:#205bcf; background:#edf4ff; }
#product-product .adp-pdp-section-nav span { opacity:.6; }

#product-product .adp-pdp-content-section { padding:28px; margin-bottom:18px; scroll-margin-top:145px; }
#product-product .adp-pdp-section-heading { display:flex; align-items:center; gap:12px; margin-bottom:22px; }
#product-product .adp-pdp-section-heading > span { width:38px; height:38px; border-radius:12px; display:grid; place-items:center; background:#edf4ff; color:#2867f0; font-size:10px; font-weight:900; }
#product-product .adp-pdp-section-heading h2 { margin:0; font-size:22px; color:#17263f; font-weight:850; letter-spacing:-.025em; }
#product-product .adp-pdp-section-heading p { margin:2px 0 0; color:#8491a4; font-size:10px; }
#product-product .adp-pdp-richtext { color:#4e5f75; font-size:13px; line-height:1.75; max-width:1050px; }
#product-product .adp-pdp-richtext img { max-width:100%; height:auto!important; border-radius:16px; }
#product-product .adp-pdp-richtext h2,
#product-product .adp-pdp-richtext h3,
#product-product .adp-pdp-richtext h4 { color:#1d2e48; }

#product-product .adp-pdp-spec-groups { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
#product-product .adp-pdp-spec-group { border:1px solid #e3eaf3; border-radius:16px; overflow:hidden; }
#product-product .adp-pdp-spec-group h3 { margin:0; padding:13px 16px; background:#f7f9fc; color:#52647d; font-size:11px; font-weight:850; text-transform:uppercase; letter-spacing:.035em; }
#product-product .adp-pdp-spec-list { padding:3px 16px 6px; }
#product-product .adp-pdp-spec-list > div { display:grid; grid-template-columns:minmax(0,1fr) minmax(120px,.8fr); gap:16px; padding:11px 0; border-bottom:1px solid #edf1f6; }
#product-product .adp-pdp-spec-list > div:last-child { border-bottom:0; }
#product-product .adp-pdp-spec-list span { color:#8491a3; font-size:11px; }
#product-product .adp-pdp-spec-list strong { color:#2f435d; font-size:11px; text-align:right; font-weight:750; }
#product-product .adp-pdp-service-grid--wide { grid-template-columns:repeat(4,1fr); margin:0; }
#product-product .adp-pdp-service-grid--wide > div { min-height:96px; background:#f8fafd; }

#product-product .adp-pdp-review-layout { display:grid; grid-template-columns:220px 1fr; gap:24px; }
#product-product .adp-pdp-rating-summary { min-height:210px; border-radius:18px; background:linear-gradient(145deg,#f6f9fe,#eef4fc); border:1px solid #e0e8f3; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:18px; }
#product-product .adp-pdp-rating-summary > strong { font-size:48px; line-height:1; letter-spacing:-.06em; color:#17263f; }
#product-product .adp-pdp-rating-summary > div { color:#e9a51d; letter-spacing:2px; margin:6px 0 3px; }
#product-product .adp-pdp-rating-summary > span { color:#8491a4; font-size:10px; }
#product-product .adp-pdp-rating-summary button { margin-top:13px; min-height:36px; border-radius:10px; padding:0 13px; background:var(--adp-pdp-blue); color:#fff; font-size:10px; font-weight:800; }
#product-product .adp-pdp-review-feed { min-height:160px; }
#product-product .adp-pdp-review-feed table { width:100%!important; border:0!important; background:#fff!important; }
#product-product .adp-pdp-review-feed td { border:0!important; border-bottom:1px solid #edf1f6!important; padding:12px 8px!important; font-size:11px!important; color:#5c6d84!important; }
#product-product .adp-pdp-review-form { margin-top:18px; border-top:1px solid #e7edf5; padding-top:20px; }
#product-product .adp-pdp-review-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
#product-product .adp-pdp-review-form .form-group { margin:0; }
#product-product .adp-pdp-review-form label { display:block; margin-bottom:6px; font-size:10px; color:#6d7d92; font-weight:750; }
#product-product .adp-pdp-review-form .form-control { border:1px solid #dfe7f2; box-shadow:none; border-radius:11px; background:#fafbfd; font-size:12px; }
#product-product .adp-pdp-review-text { grid-column:1/-1; }
#product-product .adp-pdp-rating-input { display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:4px; }
#product-product .adp-pdp-rating-input input { display:none; }
#product-product .adp-pdp-rating-input span { font-size:24px; color:#d9e0ea; cursor:pointer; }
#product-product .adp-pdp-rating-input label:hover span,
#product-product .adp-pdp-rating-input label:hover ~ label span,
#product-product .adp-pdp-rating-input input:checked ~ span { color:#e9a51d; }
#product-product .adp-pdp-review-submit { width:190px; height:44px; margin-top:12px; }

#product-product .adp-pdp-products-section { padding:24px; margin:18px 0 0; overflow:hidden; }
#product-product .adp-pdp-products-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:16px; }
#product-product .adp-pdp-products-heading span { display:block; color:#6e91cc; font-size:9px; font-weight:900; letter-spacing:.13em; margin-bottom:3px; }
#product-product .adp-pdp-products-heading h2 { margin:0; font-size:21px; color:#17263f; font-weight:850; letter-spacing:-.025em; }
#product-product .adp-pdp-carousel-controls { display:flex; gap:7px; }
#product-product .adp-pdp-carousel-controls button { width:35px; height:35px; display:grid; place-items:center; border-radius:10px; border:1px solid #dfe7f2; background:#fff; color:#5b6d85; font-size:22px; }
#product-product .adp-pdp-carousel-controls button:hover { background:#edf4ff; color:#2867f0; border-color:#c5d8fb; }
#product-product .adp-pdp-related-swiper,
#product-product .adp-pdp-auto-swiper { overflow:visible; }
#product-product .adp-pdp-related-card { height:100%; min-height:365px; border:1px solid #e1e8f2; border-radius:17px; background:#fff; padding:12px; display:flex; flex-direction:column; transition:.22s ease; }
#product-product .adp-pdp-related-card:hover { transform:translateY(-3px); border-color:#cbdaf1; box-shadow:0 12px 25px rgba(36,57,90,.07); }
#product-product .adp-pdp-related-image { position:relative; height:190px; border-radius:13px; background:#f6f8fb; display:flex; align-items:center; justify-content:center; overflow:hidden; }
#product-product .adp-pdp-related-image > span { position:absolute; left:8px; top:8px; z-index:2; min-height:24px; display:flex; align-items:center; padding:0 8px; border-radius:999px; background:#edf4ff; color:#245fcf; font-size:9px; font-weight:850; }
#product-product .adp-pdp-related-image > a { width:100%; height:100%; display:flex; align-items:center; justify-content:center; padding:15px; }
#product-product .adp-pdp-related-image img { max-width:100%; max-height:100%; object-fit:contain; }
#product-product .adp-pdp-related-placeholder { flex-direction:column; gap:7px; color:#8a96a8; }
#product-product .adp-pdp-related-placeholder img { width:130px; max-height:42px; }
#product-product .adp-pdp-related-placeholder em { font-size:9px; font-style:normal; }
#product-product .adp-pdp-related-brand { margin-top:11px; color:#8b97a8; font-size:9px; font-weight:800; text-transform:uppercase; }
#product-product .adp-pdp-related-name { color:#273950; font-size:12px; line-height:1.35; font-weight:750; min-height:49px; margin-top:3px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
#product-product .adp-pdp-related-name:hover { color:#2867f0; }
#product-product .adp-pdp-related-stock { margin:7px 0; display:flex; align-items:center; gap:5px; font-size:9px; font-weight:700; color:#77869a; }
#product-product .adp-pdp-related-stock i { width:6px; height:6px; border-radius:50%; background:currentColor; }
#product-product .adp-pdp-related-stock--in { color:#199162; }
#product-product .adp-pdp-related-stock--low { color:#9a6b1b; }
#product-product .adp-pdp-related-bottom { margin-top:auto; border-top:1px solid #edf1f6; padding-top:9px; display:flex; align-items:flex-end; justify-content:space-between; gap:8px; }
#product-product .adp-pdp-related-bottom > div { display:flex; flex-direction:column; }
#product-product .adp-pdp-related-bottom small { color:#9aa5b4; font-size:9px; text-decoration:line-through; }
#product-product .adp-pdp-related-bottom strong { font-size:15px; color:#16263e; font-weight:850; }
#product-product .adp-pdp-related-bottom button { width:35px; height:35px; border-radius:10px; background:#2867f0; color:#fff; font-size:20px; display:grid; place-items:center; }
#product-product .adp-pdp-products-section--compact { margin-top:12px; }
#product-product .adp-pdp-recent-card { border:1px solid #e2e9f2; border-radius:14px; background:#fff; padding:8px; min-height:98px; }
#product-product .adp-pdp-recent-card > a { display:grid; grid-template-columns:76px 1fr; gap:8px; height:100%; align-items:center; }
#product-product .adp-pdp-recent-card > a > img,
#product-product .adp-pdp-recent-placeholder { width:76px; height:76px; border-radius:10px; background:#f5f8fb; object-fit:contain; padding:7px; }
#product-product .adp-pdp-recent-placeholder { display:flex; align-items:center; justify-content:center; }
#product-product .adp-pdp-recent-placeholder img { max-width:65px; max-height:25px; }
#product-product .adp-pdp-recent-card div:last-child { min-width:0; display:flex; flex-direction:column; gap:2px; }
#product-product .adp-pdp-recent-card span { color:#909bac; font-size:8px; text-transform:uppercase; font-weight:800; }
#product-product .adp-pdp-recent-card strong { color:#34465d; font-size:10px; line-height:1.25; font-weight:750; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
#product-product .adp-pdp-recent-card em { color:#1d2f48; font-style:normal; font-size:11px; font-weight:850; margin-top:3px; }

#product-product .adp-pdp-mobile-buybar { display:none; }

@media (max-width:1199px) {
  #product-product .adp-pdp-main { grid-template-columns:minmax(0,1fr) minmax(380px,.9fr); }
  #product-product .adp-pdp-main-swiper { height:450px; }
  #product-product .adp-pdp-buy-card { padding:20px; }
  #product-product .adp-pdp-buy-card h1 { font-size:26px; }
  #product-product .adp-pdp-service-grid--wide { grid-template-columns:1fr 1fr; }
}
@media (max-width:991px) {
  #product-product.adp-pdp-page { padding-top:14px; }
  #product-product .adp-pdp-main { grid-template-columns:1fr; }
  #product-product .adp-pdp-buy-card { position:relative; top:auto; }
  #product-product .adp-pdp-main-swiper { height:520px; }
  #product-product .adp-pdp-section-nav { top:70px; }
  #product-product .adp-pdp-spec-groups { grid-template-columns:1fr; }
}
@media (max-width:767px) {
  #product-product.adp-pdp-page { padding:8px 0 92px; background:#f5f8fc; }
  #product-product .adp-pdp-container { padding-left:10px; padding-right:10px; }
  #product-product .adp-pdp-breadcrumbs { margin:4px 2px 10px; gap:5px; font-size:9px; white-space:nowrap; overflow:hidden; }
  #product-product .adp-pdp-breadcrumbs a { max-width:110px; overflow:hidden; text-overflow:ellipsis; }
  #product-product .adp-pdp-main { gap:10px; margin-bottom:10px; }
  #product-product .adp-pdp-gallery-card,
  #product-product .adp-pdp-buy-card,
  #product-product .adp-pdp-content-section,
  #product-product .adp-pdp-products-section { border-radius:18px; }
  #product-product .adp-pdp-gallery-card { padding:10px; }
  #product-product .adp-pdp-main-swiper { height:350px; border-radius:14px; }
  #product-product .adp-pdp-main-swiper .swiper-slide { padding:42px 35px; }
  #product-product .adp-pdp-gallery-prev,
  #product-product .adp-pdp-gallery-next { width:34px; height:34px; font-size:22px; }
  #product-product .adp-pdp-thumbs-swiper .swiper-slide { height:58px; border-radius:10px; }
  #product-product .adp-pdp-gallery-actions { right:13px; top:13px; gap:6px; }
  #product-product .adp-pdp-icon-btn { width:35px; height:35px; border-radius:11px; }
  #product-product .adp-pdp-badges { top:13px; left:13px; }
  #product-product .adp-pdp-badge { min-height:24px; padding:0 8px; font-size:9px; }
  #product-product .adp-pdp-placeholder { min-height:400px; }
  #product-product .adp-pdp-buy-card { padding:17px 15px; }
  #product-product .adp-pdp-brand-row { align-items:flex-start; }
  #product-product .adp-pdp-brand { font-size:9px; }
  #product-product .adp-pdp-code { font-size:9px; }
  #product-product .adp-pdp-buy-card h1 { font-size:22px; line-height:1.17; }
  #product-product .adp-pdp-meta-row { margin-top:10px; }
  #product-product .adp-pdp-short-specs { margin-top:14px; }
  #product-product .adp-pdp-spec-chips { flex-wrap:nowrap; overflow:auto; padding-bottom:3px; scrollbar-width:none; }
  #product-product .adp-pdp-spec-chips::-webkit-scrollbar { display:none; }
  #product-product .adp-pdp-spec-chip { flex:0 0 auto; }
  #product-product .adp-pdp-price-zone { padding:14px; }
  #product-product .adp-pdp-price-main strong { font-size:28px; }
  #product-product .adp-pdp-payment-note div { flex-direction:column; align-items:flex-start; gap:2px; }
  #product-product .adp-pdp-payment-note span { text-align:left; }
  #product-product .adp-pdp-purchase-row { grid-template-columns:105px 1fr; }
  #product-product .adp-pdp-cart-btn { height:55px; }
  #product-product .adp-pdp-service-grid { grid-template-columns:1fr 1fr; }
  #product-product .adp-pdp-service-grid > div { min-height:74px; padding:9px; }
  #product-product .adp-pdp-section-nav { top:58px; margin:10px 0; border-radius:14px; padding:6px; }
  #product-product .adp-pdp-section-nav a { padding:8px 10px; font-size:9px; }
  #product-product .adp-pdp-content-section { padding:18px 15px; margin-bottom:10px; scroll-margin-top:110px; }
  #product-product .adp-pdp-section-heading { margin-bottom:15px; }
  #product-product .adp-pdp-section-heading > span { width:34px; height:34px; border-radius:10px; }
  #product-product .adp-pdp-section-heading h2 { font-size:18px; }
  #product-product .adp-pdp-richtext { font-size:12px; }
  #product-product .adp-pdp-spec-group h3 { padding:11px 12px; font-size:9px; }
  #product-product .adp-pdp-spec-list { padding:2px 12px 5px; }
  #product-product .adp-pdp-spec-list > div { grid-template-columns:1fr minmax(100px,.9fr); gap:10px; padding:10px 0; }
  #product-product .adp-pdp-spec-list span,
  #product-product .adp-pdp-spec-list strong { font-size:10px; }
  #product-product .adp-pdp-service-grid--wide { grid-template-columns:1fr; }
  #product-product .adp-pdp-review-layout { grid-template-columns:1fr; gap:12px; }
  #product-product .adp-pdp-rating-summary { min-height:150px; }
  #product-product .adp-pdp-review-form-grid { grid-template-columns:1fr; }
  #product-product .adp-pdp-review-text { grid-column:auto; }
  #product-product .adp-pdp-products-section { padding:16px 12px; margin-top:10px; }
  #product-product .adp-pdp-products-heading h2 { font-size:17px; }
  #product-product .adp-pdp-related-card { min-height:330px; }
  #product-product .adp-pdp-related-image { height:165px; }
  #product-product .adp-pdp-mobile-buybar { position:fixed; z-index:250; left:8px; right:8px; bottom:calc(8px + env(safe-area-inset-bottom)); min-height:64px; padding:8px 8px 8px 13px; border:1px solid #d9e4f2; border-radius:17px; background:rgba(255,255,255,.96); backdrop-filter:blur(18px); box-shadow:0 12px 35px rgba(24,43,74,.16); display:grid; grid-template-columns:1fr minmax(145px,.95fr); align-items:center; gap:8px; }
  #product-product .adp-pdp-mobile-buybar > div { display:flex; flex-direction:column; min-width:0; }
  #product-product .adp-pdp-mobile-buybar span { color:#8793a5; font-size:8px; }
  #product-product .adp-pdp-mobile-buybar strong { color:#17263f; font-size:17px; font-weight:900; letter-spacing:-.03em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  #product-product .adp-pdp-mobile-buybar button { height:47px; border:0; border-radius:12px; background:#2867f0; color:#fff; font-size:11px; font-weight:850; box-shadow:0 7px 16px rgba(40,103,240,.2); }
  #product-product .adp-pdp-mobile-buybar button.is-added { background:#255fd9; }
  #product-product .adp-pdp-mobile-buybar.is-disabled button { background:#dce4ef; color:#7c8ca2; box-shadow:none; }
}
@media (max-width:420px) {
  #product-product .adp-pdp-main-swiper { height:310px; }
  #product-product .adp-pdp-main-swiper .swiper-slide { padding:40px 28px; }
  #product-product .adp-pdp-service-grid { grid-template-columns:1fr; }
  #product-product .adp-pdp-purchase-row { grid-template-columns:95px 1fr; }
  #product-product .adp-pdp-mobile-buybar { grid-template-columns:minmax(0,.8fr) minmax(150px,1.2fr); }
}
