/* ==========================================================
   TopInkjet — global stylesheet (vanilla CSS)
   Palette: white + #ECF2FF, #E3DFFD, #E5D1FA, #FFF4D2
   ========================================================== */
:root {
  --c-bg: #ffffff;
  --c-blue: #ECF2FF;
  --c-lavender: #E3DFFD;
  --c-purple: #E5D1FA;
  --c-cream: #FFF4D2;
  --c-ink: #111827;
  --c-ink-soft: #374151;
  --c-muted: #6b7280;
  --c-line: #e5e7eb;
  --c-accent: #5b3df5;
  --c-accent-soft: #7c5cff;
  --c-success: #16a34a;
  --c-error: #dc2626;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
  --shadow-md: 0 6px 16px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 18px 40px rgba(15,23,42,.14);
  --container: 1200px;
  --header-h: 76px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Fluid root font size: 16px on small phones → 17.5px on large desktops.
     Every rem in the stylesheet scales smoothly with viewport width. */
  font-size: clamp(16px, 0.4vw + 14.7px, 17.5px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';  /* nicer Inter glyphs */
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--c-ink);
  font-feature-settings: 'ss01';
}
h1 { font-size: clamp(2.25rem, 5vw + 0.5rem, 4.25rem); letter-spacing: -0.028em; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 2.4vw + 0.75rem, 2.6rem); }
h3 { font-size: clamp(1.1rem, 0.4vw + 1rem, 1.3rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 14px; }
:focus-visible { outline: 3px solid var(--c-accent-soft); outline-offset: 2px; border-radius: 4px; }

/* Layout — fluid horizontal padding (16px on small phones → 32px on desktop) */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 2.5vw, 32px); }
.narrow { max-width: 880px; margin: 0 auto; padding: 0 clamp(16px, 2.5vw, 32px); }
.narrowest { max-width: 520px; margin: 0 auto; padding: 0 clamp(16px, 2.5vw, 32px); }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section-tight { padding: clamp(32px, 5vw, 56px) 0; }
.section-soft { background: var(--c-blue); }

/* Global form-control focus polish */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], input[type="search"], input[type="date"], select, textarea {
  transition: border-color .15s ease, box-shadow .15s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus,
input[type="password"]:focus, input[type="number"]:focus, input[type="search"]:focus,
input[type="date"]:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(124,92,255,.18);
}
.section-cream { background: var(--c-cream); }
.section-lavender { background: var(--c-lavender); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.lead { font-size: 1.1rem; color: var(--c-ink-soft); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .08em;
  font-size: .76rem; font-weight: 700; color: var(--c-accent);
  padding: 6px 12px; background: var(--c-blue); border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  cursor: pointer; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--c-ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-accent { background: var(--c-accent); color: #fff; }
.btn-accent:hover { background: var(--c-accent-soft); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; border-color: var(--c-line); color: var(--c-ink); }
.btn-outline:hover { background: var(--c-blue); }
.btn-soft { background: var(--c-blue); color: var(--c-ink); }
.btn-soft:hover { background: var(--c-lavender); }
.btn-ghost { background: transparent; color: var(--c-ink); }
.btn-ghost:hover { background: rgba(0,0,0,.04); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px;
  height: var(--header-h);
}
.brand-link { display: flex; align-items: center; gap: 8px; }
.brand-link img { height: 36px; }
.main-nav { display: flex; gap: 2px; justify-content: center; }
.main-nav a {
  padding: 8px 12px; border-radius: var(--radius-pill);
  color: var(--c-ink); font-weight: 500; font-size: .92rem;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--c-blue); text-decoration: none; }
.main-nav a.active { background: var(--c-lavender); }
.header-icons { display: flex; align-items: center; gap: 4px; }
.header-auth-group { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; padding-left: 12px; border-left: 1px solid var(--c-line); }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; border-radius: 50%;
  color: var(--c-ink); padding: 0;
}
.icon-btn:hover { background: var(--c-blue); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: var(--c-accent); color: #fff;
  font-size: .68rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-badge[data-count="0"],
.cart-badge[data-count=""],
.cart-badge[data-count="NaN"],
.cart-badge:empty { display: none; }
.header-auth-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 16px;
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .12s ease;
  white-space: nowrap;
}
.header-auth-btn:hover { transform: translateY(-1px); text-decoration: none; }
.header-signin {
  color: var(--c-ink);
  background: transparent;
  border: 1px solid rgba(15, 23, 42, .12);
}
.header-signin:hover { background: var(--c-blue); }
.header-signup {
  color: #fff;
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
}
.header-signup:hover { filter: brightness(1.05); }
.header-account {
  gap: 8px;
  padding: 0 14px 0 6px;
  color: var(--c-ink);
  background: transparent;
  border: 1px solid rgba(15, 23, 42, .12);
}
.header-account:hover { background: var(--c-blue); }
.header-account-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-size: .78rem; font-weight: 700;
  flex-shrink: 0;
}
.header-account-label { font-weight: 600; }
.header-signout {
  color: var(--c-ink-soft);
  background: transparent;
  border: 1px solid rgba(15, 23, 42, .12);
  cursor: pointer;
  font-family: inherit;
}
.header-signout:hover { color: var(--c-ink); background: var(--c-blue); }
@media (max-width: 1100px) {
  .header-account-label { display: none; }
  .header-account { padding: 0 6px; }
}
@media (max-width: 720px) {
  .header-signin, .header-signout { display: none; }
  .header-signup { padding: 0 12px; height: 36px; font-size: .85rem; }
  .header-auth-group { padding-left: 8px; margin-left: 4px; }
}
.menu-toggle { display: none; }
@media (max-width: 1100px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--c-line);
    flex-direction: column; padding: 12px 24px; display: none;
  }
  .main-nav.open { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
}

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  z-index: 200;
  display: none;
  padding: 100px 24px 24px;
  justify-content: center; align-items: flex-start;
}
.search-overlay.open { display: flex; }
.search-box {
  background: #fff; border-radius: 18px; padding: 16px;
  width: 100%; max-width: 640px; box-shadow: var(--shadow-lg);
}
.search-box input {
  width: 100%; font-size: 1.1rem; padding: 14px 16px;
  border: 1px solid var(--c-line); border-radius: 12px;
}
.search-results { margin-top: 14px; max-height: 50vh; overflow: auto; }
.search-results a {
  display: flex; gap: 12px; align-items: center;
  padding: 8px; border-radius: 10px;
  color: var(--c-ink);
}
.search-results a:hover { background: var(--c-blue); text-decoration: none; }
.search-results img { width: 56px; height: 56px; object-fit: contain; background: var(--c-blue); border-radius: 8px; }

/* Hero */
.hero {
  background:
    radial-gradient(1100px 520px at 85% 18%, rgba(229, 209, 250, .55) 0%, transparent 60%),
    radial-gradient(900px 420px at 8% 90%, rgba(255, 244, 210, .55) 0%, transparent 60%),
    linear-gradient(135deg, var(--c-blue) 0%, var(--c-lavender) 55%, #f6efff 100%);
  padding: clamp(56px, 8vw, 120px) 0 clamp(48px, 7vw, 100px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero h1 {
  margin-bottom: 20px;
  /* Slightly larger and tighter than the global h1 for hero impact */
  font-size: clamp(2.5rem, 5.6vw + 0.3rem, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.034em;
}
/* Two-color treatment: brand-accent verbs over the default ink headline. */
.hero h1 .hero-accent {
  color: var(--c-accent);
  white-space: nowrap;
}
.hero p.lead { font-size: clamp(1.05rem, 0.4vw + 1rem, 1.28rem); max-width: 540px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: clamp(24px, 3vw, 36px); }
.hero-mini { display: flex; gap: 10px; flex-wrap: wrap; margin-top: clamp(22px, 2.5vw, 32px); }
.mini-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  color: var(--c-ink);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  font-size: .88rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.mini-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(15, 23, 42, .06); }
.mini-pill strong { color: var(--c-accent); font-weight: 700; }
.mini-pill svg {
  width: 18px; height: 18px;
  color: var(--c-accent);
  flex-shrink: 0;
  stroke-width: 1.8;
}
.mini-pill .mp-text { line-height: 1; }
@media (max-width: 480px) {
  .mini-pill { font-size: .82rem; padding: 7px 14px 7px 9px; }
  .mini-pill svg { width: 16px; height: 16px; }
}
.hero-art { display: grid; place-items: center; }
.hero-art img {
  max-height: clamp(320px, 48vw, 600px);
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(15, 23, 42, .12));
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero p.lead { max-width: 100%; }
  .hero-art img { max-height: clamp(260px, 50vw, 420px); }
}

/* Trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  padding: 22px;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 2px;
  align-items: start;
}
.trust-card .ti {
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-blue);
  display: grid; place-items: center; flex-shrink: 0; color: var(--c-accent);
  grid-row: span 2;
}
.trust-card .ti svg { width: 22px; height: 22px; }
.trust-card h3 { font-size: .98rem; margin: 0; grid-column: 2; align-self: end; }
.trust-card p { margin: 0; font-size: .86rem; color: var(--c-muted); grid-column: 2; align-self: start; line-height: 1.4; }
@media (max-width: 900px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-strip { grid-template-columns: 1fr; } }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cat-card {
  display: grid; grid-template-columns: 1fr auto; gap: 0;
  background: var(--c-blue); border-radius: 22px; overflow: hidden;
  color: var(--c-ink); transition: transform .15s ease, box-shadow .15s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.cat-card .cat-text { padding: 36px 28px; align-self: center; }
.cat-card .cat-text h3 { font-size: 1.6rem; margin: 6px 0 10px; }
.cat-card .cat-text p { color: var(--c-ink-soft); }
.cat-card .cat-text .btn { margin-top: 14px; }
.cat-card .cat-img-wrap {
  display: grid; place-items: center;
  width: 240px; height: 100%; padding: 24px;
  overflow: hidden;
}
.cat-card .cat-img-wrap img {
  max-width: 100%; max-height: 220px;
  object-fit: contain; display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 800px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { grid-template-columns: 1fr; }
  .cat-card .cat-img-wrap { width: 100%; max-height: 240px; margin: 0 auto; padding: 12px; }
  .cat-card .cat-img-wrap img { max-width: 100%; }
}

/* Product grid + cards */
.product-grid {
  display: grid;
  /* Fluid track: stays >=240px on tablet/desktop, allows tight 2-up at 360-480px */
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: clamp(14px, 2vw, 24px);
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card .img-wrap { height: 140px; padding: 12px; }
  .product-card .body { padding: 12px; }
  .product-card a.title { font-size: .92rem; min-height: 2.4em; }
  .product-card .price { font-size: 1.05rem; }
  .product-card .actions { flex-direction: column; gap: 6px; }
  .product-card .actions .btn { width: 100%; padding: 9px 8px; font-size: .82rem; white-space: normal; }
}
.product-card {
  position: relative;
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .12s ease, box-shadow .12s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card .img-wrap {
  display: grid; place-items: center;
  background: var(--c-blue); height: 200px; padding: 18px;
}
.product-card .img-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-card .body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.product-card .brand { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); font-weight: 700; }
.product-card a.title {
  font-size: 1rem; font-weight: 600; color: var(--c-ink);
  line-height: 1.3; min-height: 2.6em;
}
.product-card a.title:hover { color: var(--c-accent); text-decoration: none; }
.product-card .price { font-weight: 800; font-size: 1.18rem; color: var(--c-ink); margin-top: 6px; }
.product-card .actions { display: flex; gap: 8px; margin-top: 12px; }
.product-card .actions .btn { flex: 1; min-width: 0; white-space: nowrap; padding-left: 10px; padding-right: 10px; }
.heart-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--c-line);
  background: rgba(255,255,255,.92); color: var(--c-ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.heart-btn:hover { background: #fff; color: var(--c-error); }
.heart-btn.active { color: var(--c-error); border-color: var(--c-error); background: #fff; }
.heart-btn svg { width: 18px; height: 18px; }
.heart-btn.active svg { fill: currentColor; }

/* Keyword content blocks */
.kw-block { padding: 64px 0; background: #fff; }
.kw-block.alt { background: var(--c-blue); }
.kw-block.alt2 { background: var(--c-cream); }
.kw-block.alt3 { background: var(--c-lavender); }
.section-featured {
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(124, 92, 255, .06) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, #fafbff 100%);
  border-top: 1px solid rgba(15, 23, 42, .04);
  border-bottom: 1px solid rgba(15, 23, 42, .04);
}
.section-featured .product-card {
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04), 0 6px 18px rgba(124, 92, 255, .06);
}
.section-cream { background: var(--c-cream); }
#buying-guide.section-cream {
  background:
    radial-gradient(700px 300px at 88% 0%, rgba(255, 244, 210, .9) 0%, transparent 70%),
    linear-gradient(180deg, var(--c-cream) 0%, #fffaee 100%);
  border-top: 1px solid rgba(220, 180, 80, .15);
  border-bottom: 1px solid rgba(220, 180, 80, .15);
}
#buying-guide .why-card {
  background: #fff;
  border: 1px solid rgba(220, 180, 80, .25);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
  transition: transform .15s ease, box-shadow .15s ease;
}
#buying-guide .why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 92, 255, .08);
}
#buying-guide .why-card .ti {
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  width: 38px; height: 38px;
}
.kw-block .container { max-width: 940px; }
.kw-block .lead { font-weight: 600; color: var(--c-ink); margin-bottom: 18px; }
.kw-block p { font-size: 1rem; }

/* Why grid */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 8px;
  list-style: none; padding: 0;
}
.how-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  padding: 28px 22px 22px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.how-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 92, 255, .35);
  box-shadow: 0 10px 26px rgba(124, 92, 255, .1);
}
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  color: var(--c-accent);
  background: var(--c-blue);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 14px;
}
.how-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.how-card p { margin: 0; font-size: .92rem; color: var(--c-muted); line-height: 1.55; }
@media (max-width: 980px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .how-grid { grid-template-columns: 1fr; } }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  padding: 22px;
}
.why-card h3 { font-size: 1.05rem; }
.why-card p { font-size: .92rem; margin: 0; color: var(--c-muted); }
.why-card .ti {
  width: 36px; height: 36px; border-radius: 50%; background: var(--c-cream);
  display: grid; place-items: center; margin-bottom: 12px;
  color: var(--c-accent); font-weight: 800;
}
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list details {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 12px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.faq-list details:hover { border-color: rgba(124,92,255,.3); }
.faq-list details[open] {
  background: linear-gradient(180deg, var(--c-blue) 0%, #fff 80%);
  border-color: rgba(124,92,255,.3);
  box-shadow: 0 4px 12px rgba(124,92,255,.08);
}
.faq-list summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--c-blue); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c5cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 16px 16px;
  transition: transform .2s ease, background-color .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(180deg); background-color: #fff; }
.faq-list p { margin-top: 14px; color: var(--c-ink-soft); }

/* Footer — flat, sleek, low-chrome */
.site-footer {
  background: #0b1428;
  color: #cbd5e1;
  padding: 44px 0 20px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.site-footer h4 {
  color: #fff; font-size: .78rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-grid p, .footer-grid a, .footer-grid li { color: #cbd5e1; font-size: .88rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { transition: color .15s ease; }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-brand-col .brand-link { display: inline-block; margin-bottom: 12px; }
.footer-tagline { margin: 0 0 18px; line-height: 1.6; color: #94a3b8; max-width: 320px; font-size: .88rem; }
.footer-contact {
  font-style: normal;
  line-height: 1.6; font-size: .85rem; color: #94a3b8;
  margin: 0 0 10px;
}
.footer-contact-line {
  margin: 2px 0; font-size: .85rem;
  line-height: 1.5; color: #cbd5e1;
}
.footer-contact-line a { color: #cbd5e1; }
.footer-contact-line a:hover { color: #fff; text-decoration: none; }
.footer-contact-line strong { color: #cbd5e1; font-weight: 500; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .78rem; color: #94a3b8;
}
.footer-bottom .disclaimer {
  margin: 0 0 14px;
  font-size: .74rem; line-height: 1.6; color: #94a3b8;
}
.footer-bottom .disclaimer strong { color: #cbd5e1; font-weight: 600; }
.footer-bottom .disclaimer a { color: #cbd5e1; text-decoration: underline; text-decoration-color: rgba(203, 213, 225, .35); text-underline-offset: 2px; }
.footer-bottom .disclaimer a:hover { color: #fff; text-decoration-color: #fff; }
.footer-bottom .copyright { margin: 0; color: #64748b; font-size: .76rem; }
.pay-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-pill { background: #fff; color: #1f2937; padding: 4px 8px; border-radius: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .03em; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Breadcrumbs */
.breadcrumbs { font-size: .85rem; color: var(--c-muted); padding: 18px 0 0; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs .sep { color: var(--c-muted); }
.breadcrumbs a { color: var(--c-accent); }
.breadcrumbs [aria-current] { color: var(--c-ink-soft); }
/* Breadcrumbs use the standard .container padding (clamp 16–32px) so they
   align with the rest of the page on every viewport. */

/* Page head */
.page-head { text-align: left; margin-bottom: 28px; }
.page-head h1 { margin-bottom: 8px; }

/* Shop layout — full-width grid (no sidebar) */
.shop-filterbar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 22px; margin-bottom: 18px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
}
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-group + .filter-group {
  border-left: 1px solid var(--c-line); padding-left: 22px;
}
.filter-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-muted); font-weight: 700; margin-right: 4px;
}
.filter-chip {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  background: var(--c-blue);
  border: 1px solid transparent;
  font-size: .86rem; font-weight: 500; color: var(--c-ink);
  cursor: pointer; user-select: none;
  transition: background .15s, border-color .15s, color .15s;
}
.filter-chip:hover { border-color: rgba(124,92,255,.35); }
.filter-chip input { position: absolute; opacity: 0; pointer-events: none; }
.filter-chip:has(input:checked),
.filter-chip.is-checked {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
}
.filter-chip:has(input:focus-visible),
.filter-chip:focus-within {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.filter-clear-btn { margin-left: auto; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-bottom: 18px;
  color: var(--c-muted); font-size: .92rem;
}
.shop-toolbar select {
  padding: 10px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--c-line); background: #fff; font-size: .92rem;
}
@media (max-width: 700px) {
  .filter-group + .filter-group { border-left: 0; padding-left: 0; width: 100%; }
  .filter-clear-btn { margin-left: 0; }
}

/* Product detail page */
.product-page { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px); margin: 24px 0 56px; }
.product-gallery .main-image {
  background: var(--c-blue); border-radius: 22px;
  aspect-ratio: 4/3; display: grid; place-items: center;
  padding: 32px; border: 1px solid var(--c-line);
}
.product-gallery .main-image img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-gallery .thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery .thumb {
  width: 78px; height: 78px;
  background: var(--c-blue); border: 2px solid var(--c-line);
  border-radius: 12px; padding: 6px; cursor: pointer;
}
.product-gallery .thumb.active { border-color: var(--c-accent); }
.product-gallery .thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info .brand {
  display: inline-block; background: var(--c-blue); color: var(--c-accent);
  font-size: .76rem; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 8px; font-weight: 700;
}
.product-info h1 { font-size: 1.9rem; }
.product-info .lead { margin-bottom: 22px; }
.price-block { margin: 12px 0 18px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.price-big { font-size: 2rem; font-weight: 800; }
.price-meta { color: var(--c-muted); font-size: .9rem; }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 18px 0; }
.qty-control { display: inline-flex; border: 1px solid var(--c-line); border-radius: var(--radius-pill); overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease; }
.qty-control:focus-within { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(124,92,255,.18); }
.qty-control button { width: 38px; height: 40px; background: #fff; border: none; font-size: 1.2rem; color: var(--c-ink); }
.qty-control button:hover { background: var(--c-blue); }
.qty-control input { width: 56px; text-align: center; border: none; font-size: 1rem; font-weight: 600; padding: 0; }
.qty-control input:focus { outline: none; box-shadow: none; background: var(--c-blue); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.ship-bullets { list-style: none; padding: 0; margin: 22px 0 0; color: var(--c-ink-soft); font-size: .92rem; line-height: 1.9; }
.product-tabs { display: grid; gap: 40px; }
.product-tabs .prod-section { background: #fff; border: 1px solid var(--c-line); border-radius: 16px; padding: 28px 32px; box-shadow: var(--shadow-sm); }
.product-tabs .prod-section h2 { margin: 0 0 14px; font-size: 1.5rem; }
.product-tabs .prod-section h3 { margin: 22px 0 10px; font-size: 1.1rem; color: var(--c-ink); }
.product-tabs .prod-section p { margin: 0 0 12px; color: var(--c-ink-soft); line-height: 1.65; }
.product-tabs .prod-section p:last-child { margin-bottom: 0; }
.product-tabs .prod-section ul,
.product-tabs .prod-section ol { margin: 0; padding-left: 22px; color: var(--c-ink-soft); line-height: 1.7; }
.product-tabs .prod-section li { margin-bottom: 8px; }
.product-tabs .prod-section li:last-child { margin-bottom: 0; }
.product-tabs .feature-list { list-style: none; padding: 0; }
.product-tabs .feature-list li { position: relative; padding: 12px 16px 12px 38px; border-radius: 12px; background: var(--c-blue); margin-bottom: 10px; color: var(--c-ink); }
.product-tabs .feature-list li::before { content: "✓"; position: absolute; left: 14px; top: 12px; font-weight: 800; color: var(--c-accent); }
.product-tabs .feature-list strong { color: var(--c-ink); }
.product-tabs .use-list,
.product-tabs .box-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.product-tabs .use-list li,
.product-tabs .box-list li { padding-left: 22px; position: relative; }
.product-tabs .use-list li::before,
.product-tabs .box-list li::before { content: "•"; position: absolute; left: 6px; top: 0; color: var(--c-accent); font-weight: 800; }
.setup-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.setup-card { background: var(--c-blue); border-radius: 14px; padding: 18px 20px; }
.setup-card h3 { margin: 8px 0 6px; font-size: 1.05rem; }
.setup-card p { margin: 0; color: var(--c-ink-soft); font-size: .95rem; line-height: 1.55; }
.setup-num { width: 32px; height: 32px; border-radius: 50%; background: var(--c-accent); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.product-tabs .faq-list details { background: var(--c-blue); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; }
.product-tabs .faq-list summary { cursor: pointer; font-weight: 600; color: var(--c-ink); list-style: none; }
.product-tabs .faq-list summary::-webkit-details-marker { display: none; }
.product-tabs .faq-list summary::after { content: "＋"; float: right; color: var(--c-accent); font-weight: 800; transition: transform .15s ease; }
.product-tabs .faq-list details[open] summary::after { content: "−"; }
.product-tabs .faq-list details[open] { background: #fff; border: 1px solid var(--c-line); }
.product-tabs .faq-list p { margin: 12px 0 0; color: var(--c-ink-soft); }
.hl-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hl-pill { background: var(--c-blue); border-radius: 999px; padding: 8px 14px; display: inline-flex; gap: 6px; align-items: center; font-size: .85rem; }
.hl-pill .hl-key { color: var(--c-ink-soft); }
.hl-pill .hl-val { color: var(--c-ink); font-weight: 700; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.spec-table th, .spec-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--c-line); font-size: .92rem; }
.spec-table th { background: var(--c-blue); width: 220px; font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
@media (max-width: 800px) {
  .product-page { grid-template-columns: 1fr; }
  .spec-table th { width: auto; }
  .product-tabs .prod-section { padding: 22px; }
  .setup-grid { grid-template-columns: 1fr; }
  .product-tabs .use-list, .product-tabs .box-list { grid-template-columns: 1fr; }
}

/* Cart drawer */
.overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
  z-index: 250;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .25s ease;
  z-index: 260; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer .drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--c-line);
}
.cart-drawer .drawer-head h3 { margin: 0; font-size: 1.1rem; }
.drawer-body { flex: 1; overflow: auto; padding: 16px 22px; }
.drawer-line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--c-line); align-items: center;
}
.drawer-line img { width: 64px; height: 64px; object-fit: contain; background: var(--c-blue); border-radius: 8px; padding: 4px; }
.drawer-line .name { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.drawer-line .meta { color: var(--c-muted); font-size: .8rem; }
.drawer-line .price { font-weight: 700; font-size: .9rem; }
.drawer-empty { color: var(--c-muted); padding: 24px 0; text-align: center; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--c-line); display: grid; gap: 10px; }
.drawer-totals { display: flex; justify-content: space-between; align-items: center; }

/* Cookie banner + modal */
.cookie-banner {
  position: fixed; left: 16px; bottom: 16px; right: auto;
  width: min(380px, calc(100% - 32px));
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 18px;
  z-index: 240;
}
.cookie-inner {
  display: flex; flex-direction: column; gap: 14px;
}
.cookie-inner p { margin: 0; font-size: .85rem; line-height: 1.45; color: var(--c-ink); }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; }
.cookie-actions .btn { padding: 10px 14px; font-size: .88rem; width: 100%; justify-content: center; }
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

.modal {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  z-index: 270; display: grid; place-items: center; padding: 24px;
}
.modal[hidden] { display: none; }
.modal-card {
  background: #fff; border-radius: 18px;
  width: 100%; max-width: 540px; max-height: 90vh; overflow: auto;
  box-shadow: var(--shadow-lg);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--c-line); }
.modal-head h3 { margin: 0; }
.modal-body { padding: 18px 22px; }
.modal-foot { padding: 16px 22px; border-top: 1px solid var(--c-line); display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.toggle-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--c-line); gap: 18px;
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row span { flex: 1; }
.toggle-row small { color: var(--c-muted); }
.toggle-row input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--c-accent); }

/* Cart page */
.cart-page { display: grid; grid-template-columns: 1fr 380px; gap: 32px; margin-top: 24px; align-items: start; }
.cart-page.is-empty { grid-template-columns: 1fr; }
.cart-page.is-empty .empty-state-card { max-width: 560px; margin: 24px auto; }
.cart-items { display: grid; gap: 16px; }
.cart-line {
  display: grid; grid-template-columns: 130px 1fr; gap: 22px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 16px;
  padding: 20px; align-items: stretch;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cart-line:hover { border-color: rgba(124, 92, 255, 0.25); box-shadow: 0 6px 18px rgba(15, 23, 42, .05); }
.cart-line-img { display: block; }
.cart-line-img img,
.cart-line img { width: 130px; height: 130px; object-fit: contain; background: var(--c-blue); border-radius: 12px; padding: 10px; display: block; }
.cart-line-body { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.cart-line-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.cart-line-top > div:first-child { min-width: 0; flex: 1; }
.cart-line .brand { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); font-weight: 600; margin-bottom: 4px; }
.cart-line .name { font-weight: 600; font-size: 1.02rem; line-height: 1.3; margin-bottom: 6px; }
.cart-line .name a { color: var(--c-ink); }
.cart-line .name a:hover { color: var(--c-accent); text-decoration: none; }
.cart-line .meta { font-size: .85rem; color: var(--c-muted); }
.cart-line .price-col { font-weight: 700; font-size: 1.1rem; color: var(--c-ink); white-space: nowrap; }
.cart-line-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; border-top: 1px dashed var(--c-line); }
.cart-line .qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--c-line); border-radius: 999px; overflow: hidden; background: #fff; }
.cart-line .qty button { width: 36px; height: 36px; border: none; background: transparent; font-size: 1.1rem; font-weight: 600; color: var(--c-ink); cursor: pointer; transition: background .12s ease; }
.cart-line .qty button:hover { background: var(--c-blue); }
.cart-line .qty input { width: 44px; text-align: center; border: none; border-left: 1px solid var(--c-line); border-right: 1px solid var(--c-line); height: 36px; font-weight: 600; font-size: .95rem; -moz-appearance: textfield; }
.cart-line .qty input::-webkit-outer-spin-button,
.cart-line .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-line .remove { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: none; color: var(--c-muted); font-size: .88rem; font-weight: 500; cursor: pointer; padding: 6px 8px; border-radius: 8px; transition: color .12s ease, background .12s ease; }
.cart-line .remove:hover { color: var(--c-error); background: rgba(239, 68, 68, .06); }
.cart-summary {
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  padding: 26px; align-self: start; position: sticky; top: calc(var(--header-h) + 16px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, .04);
}
.cart-summary h3 { margin-top: 0; margin-bottom: 16px; font-size: 1.15rem; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--c-ink-soft); font-size: .95rem; }
.cart-summary .row strong { color: var(--c-ink); font-weight: 600; }
.cart-summary .row.total { border-top: 1px solid var(--c-line); margin-top: 12px; padding-top: 16px; font-size: 1.15rem; color: var(--c-ink); }
.cart-summary .row.total strong { font-weight: 700; font-size: 1.25rem; }
.cart-summary .ship-note { font-size: .82rem; color: var(--c-muted); margin: 10px 0 18px; padding: 10px 12px; background: var(--c-blue); border-radius: 10px; text-align: center; }
.cart-summary .btn-block + .btn-block { margin-top: 10px; }
.empty-state { text-align: center; padding: 40px 20px; }
.empty-state-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: 20px;
  padding: 56px 32px; max-width: 560px; margin: 0 auto;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.empty-state-card h2 { margin: 0; font-size: 1.6rem; }
.empty-state-card p { margin: 0; color: var(--c-ink-soft); }
.empty-state-card .btn { margin-top: 8px; }
.empty-icon { width: 80px; height: 80px; display: grid; place-items: center; }
.empty-icon svg { width: 100%; height: 100%; display: block; }
@media (max-width: 860px) { .cart-page { grid-template-columns: 1fr; } .cart-summary { position: static; } }
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 90px 1fr; gap: 14px; padding: 14px; }
  .cart-line-img img, .cart-line img { width: 90px; height: 90px; }
  .cart-line-top { flex-direction: column; gap: 8px; }
  .cart-line-bottom { flex-wrap: wrap; }
}

/* Auth pages */
.auth-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  padding: 32px; box-shadow: var(--shadow-sm);
}
.auth-card label { display: block; margin-bottom: 14px; }
.auth-card label span { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.auth-card input { width: 100%; padding: 12px 14px; border: 1px solid var(--c-line); border-radius: 10px; font-size: 1rem; transition: border-color .15s ease, box-shadow .15s ease; }
.auth-card input:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(124,92,255,.18); }
.auth-card .auth-alt { text-align: center; color: var(--c-muted); margin-top: 16px; }
em { color: var(--c-error); font-style: normal; }

/* Confirmation */
.confirm-card { text-align: center; padding: 36px; background: var(--c-blue); border-radius: 22px; margin-bottom: 32px; }
.confirm-check { width: 72px; height: 72px; border-radius: 50%; background: var(--c-success); color: #fff; display: grid; place-items: center; font-size: 2.2rem; margin: 0 auto 16px; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.confirm-grid .card { background: #fff; border: 1px solid var(--c-line); border-radius: 16px; padding: 22px; }
.confirm-grid .row { display: flex; justify-content: space-between; padding: 6px 0; }
.confirm-grid .row.total { border-top: 1px solid var(--c-line); margin-top: 8px; padding-top: 12px; font-weight: 700; }
.confirm-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 720px) { .confirm-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form span { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--c-line); border-radius: 10px;
  font-family: inherit; font-size: 1rem;
}
.form-msg { color: var(--c-success); font-weight: 600; margin-top: 14px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* Legal pages */
.legal-body h2 { margin-top: 32px; }
.legal-body h3 { margin-top: 24px; }
.legal-body p { color: var(--c-ink-soft); }
.legal-body ul, .legal-body ol { color: var(--c-ink-soft); padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-meta { color: var(--c-muted); font-size: .85rem; margin-bottom: 28px; }

