@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #40b9fe;
  --brand-blue-soft: color-mix(in srgb, var(--brand-blue) 12%, white);
  --brand-blue-soft-strong: color-mix(in srgb, var(--brand-blue) 24%, white);
  --brand-blue-border: color-mix(in srgb, var(--brand-blue) 42%, white);
  color-scheme: light;
  --ink: #18212f;
  --muted: #68768a;
  --line: #dce5ef;
  --surface: #ffffff;
  --page: #f3f7fb;
  --accent: var(--brand-blue);
  --accent-strong: var(--brand-blue);
  --warm: #f4b23f;
  --blue: var(--brand-blue);
  --coral: #ef6f5e;
  --leaf: var(--brand-blue);
  --danger: #b42318;
  --success: var(--brand-blue);
  --shadow: 0 22px 60px rgba(31, 49, 75, 0.12);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --notion-ink: #000000;
  --notion-ink-secondary: #31302e;
  --notion-muted: #615d59;
  --notion-faint: #a39e98;
  --notion-soft: #f6f5f4;
  --notion-hover: #efeeeb;
  --notion-line: #e6e6e6;
  --notion-primary: var(--brand-blue);
  --notion-primary-hover: var(--brand-blue);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  line-height: 1.45;
  background: var(--page);
  color: var(--ink);
}

.home-page {
  min-height: 100vh;
  background: #f4f4f4;
  font-family: var(--font-sans);
}

.home-page::before {
  content: none;
}

.home-shop-header {
  position: relative;
  background: #f5f5f5;
}

.home-search-row {
  min-height: 178px;
  display: grid;
  grid-template-columns: 210px minmax(260px, 1280px) auto;
  align-items: center;
  gap: 34px;
  padding: 0 18px 0 0;
  background: #f5f5f5;
}

.home-shop-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.home-shop-logo-mark {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.home-main-search {
  height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  border: 1px solid #d7ded7;
  border-radius: 4px;
  background: #fff;
}

.home-main-search input {
  min-width: 0;
  height: 62px;
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: #333;
  font-size: 20px;
  font-weight: 400;
}

.home-main-search input::placeholder {
  color: #b2b2b2;
}

.home-main-search button {
  border: 0;
  background: transparent;
  color: #777;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.home-shop-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.home-cart-icon,
.home-user-icon,
.home-menu-pill {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #222;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.home-cart-icon::before {
  content: '🛒';
  font-size: 30px;
}

.home-cart-icon span {
  position: absolute;
  top: -9px;
  right: -2px;
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f32222;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.home-user-icon::before {
  content: '♙';
  font-size: 34px;
  transform: rotate(180deg);
}

.home-menu-pill {
  width: 78px;
  border-radius: 30px;
}

.home-menu-pill span,
.home-menu-pill span::before,
.home-menu-pill span::after {
  content: '';
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #222;
}

.home-menu-pill span::before {
  transform: translateY(-8px);
}

.home-menu-pill span::after {
  transform: translateY(6px);
}

.home-page .site-header {
  position: relative;
  width: 100%;
  min-height: 85px;
  background: var(--brand-blue);
  border-bottom: 0;
  padding: 0 clamp(16px, 13vw, 260px);
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .home-category-strip nav {
  width: 100%;
  min-height: 85px;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(16px, 1.42vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
}

.home-page .home-category-strip nav::-webkit-scrollbar {
  display: none;
}

.home-page .home-category-strip nav a {
  color: #fff;
  flex: 0 0 auto;
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
}

.home-page .home-category-strip nav a:hover,
.home-page .home-category-strip nav a.is-active {
  color: #fff;
  opacity: 0.84;
}

.home-menu-icon {
  width: 26px;
  height: 22px;
  display: grid;
  place-items: center;
}

.home-menu-icon span {
  width: 26px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 0 #fff, 0 -8px 0 #fff;
}

.home-mega-left {
  display: grid;
  align-content: start;
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 12px;
  border-right: 1px solid #e5e5e5;
  scrollbar-width: thin;
}

.home-mega-left a {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 4px;
  color: #20242d;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.home-mega-left a::after {
  content: '›';
  font-size: 20px;
  line-height: 1;
  color: #111;
}

.home-mega-left a:hover,
.home-mega-left a.is-active {
  background: #e3e3e3;
}

.home-mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 20px 54px;
  padding: 8px 0 0;
}

.home-mega-columns a {
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(248, 251, 253, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-mark {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

.site-mark::before {
  content: '';
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), transparent 55%),
    linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand-blue) 25%, transparent);
}

.site-header-search {
  flex: 1 1 340px;
  max-width: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.site-header-search input {
  min-width: 0;
  height: 38px;
  border: 0;
  border-radius: 7px;
  padding: 0 11px;
  background: #f3f8fc;
  color: var(--ink);
  font-size: 16px;
}

.site-header-search button {
  height: 38px;
  border: 0;
  border-radius: 7px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover {
  color: var(--accent);
}

nav a.is-active {
  color: var(--accent-strong);
}

.nav-action {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-blue) 24%, transparent);
}

.nav-action:hover {
  color: #fff;
  background: var(--accent-strong);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 70px) clamp(42px, 7vw, 90px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.58)),
    linear-gradient(135deg, color-mix(in srgb, var(--brand-blue) 08%, transparent), rgba(244, 178, 63, 0.12));
}

.hero-copy {
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.eyebrow,
.section-heading span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p,
.contact-band p {
  max-width: 620px;
  color: #435266;
  font-size: 21px;
  line-height: 1.55;
}

.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-points span {
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #435266;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-link,
.ghost-link {
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--brand-blue) 22%, transparent);
}

.primary-link:hover {
  background: var(--accent-strong);
}

.ghost-link {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.home-banner {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  margin-top: 42px;
  background:
    radial-gradient(circle at -5% 0%, #f6a90b 0 24%, transparent 24.2%),
    radial-gradient(circle at -4% 96%, #78909b 0 37%, transparent 37.2%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 0.9)),
    repeating-linear-gradient(165deg, rgba(210, 216, 222, 0.18) 0 2px, transparent 2px 18px);
}

.home-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(205, 211, 218, 0.52), transparent 19%),
    linear-gradient(170deg, transparent 0 34%, rgba(230, 233, 237, 0.58) 35%, transparent 48%);
  pointer-events: none;
}

.home-banner-brand {
  position: absolute;
  left: 40px;
  bottom: 64px;
  z-index: 2;
  display: grid;
  gap: 12px;
  color: #fff;
}

.banner-mark {
  width: 94px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-left: 110px;
  border: 10px solid #f6a90b;
  color: #f6a90b;
  font-size: 0;
  transform: skewY(-22deg) rotate(-2deg);
}

.home-banner-brand strong {
  color: #fff;
  font-size: 86px;
  line-height: 0.9;
  letter-spacing: -2px;
}

.home-banner-brand small {
  margin-left: 236px;
  color: #fff;
  font-size: 62px;
  line-height: 1;
  letter-spacing: 16px;
}

.home-banner-products {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mock-book,
.mock-box,
.mock-paper {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 3px;
  box-shadow: 0 20px 22px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.mock-book {
  width: 220px;
  height: 260px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 34%),
    #171717;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid #333;
  transform: perspective(700px) rotateX(58deg) rotateZ(-18deg);
}

.mock-book::after {
  content: '';
  position: absolute;
  inset: auto 22px 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.64);
}

.mock-book-one {
  left: 650px;
  top: 205px;
}

.mock-book-two {
  left: 1120px;
  top: 205px;
}

.mock-book-three {
  left: 1590px;
  top: 205px;
}

.mock-box {
  width: 235px;
  height: 170px;
  background:
    linear-gradient(90deg, #b31363 0 20px, transparent 20px),
    radial-gradient(circle, rgba(179, 19, 99, 0.28) 0 2px, transparent 2px) 20px 32px / 12px 12px,
    #fff;
  color: #b31363;
  border: 1px solid #e6e6e6;
}

.mock-box-one {
  right: 330px;
  top: 140px;
  transform: perspective(600px) rotateY(-18deg);
}

.mock-paper {
  right: 655px;
  top: 380px;
  width: 235px;
  height: 120px;
  border: 1px solid #d5d5d5;
  background:
    linear-gradient(#fff, #fff),
    repeating-linear-gradient(0deg, #e5e5e5 0 1px, transparent 1px 20px);
  color: #b7b7b7;
  transform: rotate(-7deg);
}

.floating-cart,
.floating-whatsapp {
  position: absolute;
  z-index: 3;
  right: 26px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.floating-cart {
  top: 280px;
  width: 58px;
  height: 58px;
  border: 3px solid var(--brand-blue);
  border-radius: 6px;
  background: #fff;
}

.floating-cart::before {
  content: '🛒';
  font-size: 32px;
}

.floating-whatsapp {
  bottom: 170px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #28c64f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.floating-whatsapp::before {
  content: '☎';
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

.home-page .hero {
  min-height: calc(100vh - 138px);
  grid-template-columns: minmax(0, 1fr) 404px;
  gap: clamp(32px, 8vw, 112px);
  align-items: center;
  padding: 84px clamp(20px, 7vw, 96px) 76px;
  background: transparent;
}

.home-page .hero-copy {
  max-width: 462px;
  gap: 14px;
  color: #18212f;
}

.home-page .eyebrow {
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  text-shadow: none;
}

.home-page .hero h1 {
  max-width: 462px;
  color: #18212f;
  font-size: 47px;
  font-weight: 700;
  line-height: 55px;
  text-shadow: none;
}

.home-page .hero p {
  max-width: 462px;
  color: #68768a;
  font-size: 14px;
  line-height: 22px;
  text-shadow: none;
}

.home-page .hero-points {
  gap: 8px;
  margin-top: 8px;
}

.home-page .hero-points span {
  min-height: 32px;
  border-color: #dce5ef;
  border-radius: 30px;
  background: #fff;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
}

.home-page .hero-showcase {
  min-height: 0;
  justify-items: end;
}

.home-login-card {
  width: min(100%, 404px);
  display: grid;
  gap: 26px;
  padding: 30px 44px 26px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 24px 98px -4px rgba(0, 0, 0, 0.3);
}

.home-login-card h2 {
  color: #7e7987;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.home-login-card p {
  color: #9590a0;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  text-shadow: none;
}

.home-login-card .hero-actions {
  display: grid;
  gap: 16px;
}

.home-login-card .primary-link,
.home-login-card .ghost-link {
  min-height: 44px;
  border-radius: 30px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
}

.home-login-card .primary-link {
  background: #ff5b00;
  box-shadow: 0 4px 24px 4px rgba(0, 0, 0, 0.16);
}

.home-login-card .primary-link:hover {
  background: #ff4e00;
}

.home-login-card .ghost-link {
  border: 1px solid #ededed;
  background: transparent;
  color: #7e7987;
}

.home-card-links {
  display: grid;
  gap: 0;
}

.home-card-links a {
  min-height: 40px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid #ededed;
  color: #9590a0;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
}

.home-card-links a:hover {
  color: #ff5b00;
}

.home-login-card small {
  color: #9590a0;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.home-hero-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  align-self: end;
  color: #68768a;
  font-size: 12px;
}

.home-hero-footer a {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.hero-showcase {
  min-height: 500px;
  display: grid;
  align-items: center;
}

.brand-showcase {
  position: relative;
  min-height: 500px;
  display: grid;
  align-content: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 239, 0.86);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--brand-blue) 14%, transparent), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(244,178,63,0.18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(239,111,94,0.12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(239,248,246,0.92)),
    #fff;
  box-shadow: var(--shadow);
}

.brand-showcase::before {
  content: '';
  position: absolute;
  inset: auto -12% -28% 10%;
  height: 220px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--brand-blue) 14%, transparent), rgba(244,178,63,0.15));
  transform: rotate(-7deg);
}

.brand-showcase-head,
.brand-cloud,
.brand-showcase-note {
  position: relative;
  z-index: 1;
}

.brand-showcase-head {
  display: grid;
  gap: 8px;
}

.brand-showcase-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-showcase-head strong {
  max-width: 430px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2px 6px 2px 2px;
  scrollbar-color: color-mix(in srgb, var(--brand-blue) 55%, transparent) rgba(226,232,240,0.72);
  scrollbar-width: thin;
}

.brand-cloud::-webkit-scrollbar {
  width: 8px;
}

.brand-cloud::-webkit-scrollbar-track {
  background: rgba(226,232,240,0.72);
  border-radius: 999px;
}

.brand-cloud::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--brand-blue) 58%, transparent);
  border-radius: 999px;
}

.brand-chip {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 229, 239, 0.92);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.88);
  color: #233047;
  font-size: clamp(13px, 1.45vw, 18px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.04;
  box-shadow: 0 10px 22px rgba(31,49,75,0.08);
}

.brand-faber {
  background: linear-gradient(180deg, #ffffff, #f2fbf4);
  color: #174f2a;
  font-family: Georgia, 'Times New Roman', serif;
  border-color: #1d6b39;
  border-left: 6px solid #1d6b39;
}

.brand-noki {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue) 100%);
  color: #fff;
  border-color: var(--brand-blue);
  font-size: clamp(17px, 2vw, 24px);
  text-transform: uppercase;
}

.brand-sudor {
  background:
    linear-gradient(90deg, #d71920 0 18%, #9b5de5 18% 36%, var(--brand-blue) 36% 54%, #f4b23f 54% 72%, #43aa3d 72%),
    #fff;
  color: #fff;
  border-color: #d9e2ec;
  font-family: Georgia, 'Times New Roman', serif;
  text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}

.brand-nova {
  background: #111827;
  color: #fff;
  border-color: #111827;
  text-shadow:
    2px 0 #77c043,
    -2px 0 #f4b23f;
}

.brand-scrikss {
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: #111827;
  border-color: #d6dee8;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
}

.brand-rotring {
  background: #fff;
  color: #111827;
  border-color: #cf1f2e;
  border-bottom: 6px solid #cf1f2e;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
}

.brand-adel {
  background: linear-gradient(135deg, #ffffff, #f8fbf7);
  color: #111827;
  border-color: #d8e4d8;
  text-transform: uppercase;
}

.brand-adel::first-letter {
  color: #45a745;
}

.brand-brons {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  text-transform: uppercase;
}

.brand-mikro {
  background: #fff;
  color: #e1261c;
  border-color: #e1261c;
  font-size: clamp(18px, 2vw, 25px);
  text-transform: uppercase;
}

.brand-bic {
  background: #ffd93b;
  color: #111827;
  border-color: #111827;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
}

.brand-canson {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue-soft-strong);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(19px, 2.1vw, 26px);
}

.brand-tombow {
  background: linear-gradient(90deg, #fff, #fff7f7);
  color: #333;
  border-color: #dfe6ef;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.brand-tombow::before {
  content: '';
  width: 28px;
  height: 10px;
  margin-bottom: 2px;
  border: 2px solid #d61f2c;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px;
}

.brand-edding {
  background: #fff;
  color: #e31e24;
  border-color: #e31e24;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 1000;
}

.brand-stabilo {
  background: linear-gradient(90deg, #ffe74a, #ff7eb6, #78d64b);
  color: #111827;
  border-color: #111827;
  text-transform: uppercase;
}

.brand-ozkan {
  background: #fff;
  color: #111827;
  border-color: #d9232e;
  font-weight: 1000;
}

.brand-ozkan::first-letter {
  color: #d9232e;
}

.brand-temat {
  background: #fff;
  color: var(--brand-blue);
  border-color: #f1c232;
  text-transform: uppercase;
}

.brand-pelikan {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(18px, 2.1vw, 26px);
}

.brand-cassa {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  text-transform: uppercase;
}

.brand-pensan {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  text-transform: uppercase;
}

.brand-fatih {
  background: #fff;
  color: #c41230;
  border-color: #c41230;
  text-transform: uppercase;
}

.brand-playdoh {
  background: linear-gradient(135deg, #fff7c2, #ffcc33);
  color: #cf1f2e;
  border-color: #cf1f2e;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: 1000;
}

.brand-pritt {
  background: #fff;
  color: #d71920;
  border-color: #d71920;
  transform: rotate(-1deg);
}

.brand-tonguc {
  background: #fff;
  color: #6d28d9;
  border-color: #f59e0b;
  font-weight: 800;
}

.brand-yildizlar {
  background: linear-gradient(180deg, #fff, var(--brand-blue-soft));
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  font-family: Georgia, 'Times New Roman', serif;
}

.brand-atlas {
  background: #fff;
  color: #d71920;
  border-color: #d71920;
  text-transform: uppercase;
  font-style: italic;
}

.brand-casio {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue-soft-strong);
  text-transform: uppercase;
  font-size: clamp(18px, 2.1vw, 26px);
}

.brand-varta {
  background: var(--brand-blue);
  color: #fff;
  border-color: #f5c400;
  border-bottom: 5px solid #f5c400;
  text-transform: uppercase;
}

.brand-philips {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  text-transform: uppercase;
}

.brand-duracell {
  background: linear-gradient(90deg, #111827 0 30%, #b87333 30% 100%);
  color: #fff;
  border-color: #111827;
  text-transform: uppercase;
}

.brand-uniball {
  background: #fff;
  color: #d9232e;
  border-color: #111827;
  font-weight: 1000;
}

.brand-cinar {
  background: #fff;
  color: #16833a;
  border-color: #16833a;
  font-family: Georgia, 'Times New Roman', serif;
}

.brand-keskin {
  background: linear-gradient(90deg, #fff, #fff5d6);
  color: #d71920;
  border-color: #f4b23f;
  text-transform: uppercase;
}

.brand-morf {
  background: #fff;
  color: #7c3aed;
  border-color: #c4b5fd;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 2.1vw, 26px);
}

.brand-chip.brand-noki,
.brand-chip.brand-nova,
.brand-chip.brand-cassa,
.brand-chip.brand-varta,
.brand-chip.brand-duracell {
  color: #fff;
}

.brand-showcase-note {
  justify-self: end;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(24,33,47,0.12);
}

.brand-showcase-note strong {
  font-size: 26px;
}

.brand-showcase-note span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.content-band,
.contact-band,
.category-band,
.store-band {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 70px);
}

.content-band {
  background: #fff;
}

.category-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  padding-top: clamp(24px, 5vw, 54px);
  padding-bottom: clamp(24px, 5vw, 54px);
}

.category-band article,
.category-band a {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 49, 75, 0.07);
  color: var(--ink);
  text-decoration: none;
}

.category-band a:hover {
  border-color: #b9c4d0;
  box-shadow: 0 18px 40px rgba(31, 49, 75, 0.12);
}

.category-band article span,
.category-band a span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-blue-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.category-band article strong,
.category-band a strong {
  font-size: 22px;
  line-height: 1.15;
}

.category-band article p,
.category-band a p {
  color: var(--muted);
  line-height: 1.5;
}

.store-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

.store-copy {
  display: grid;
  gap: 14px;
}

.store-copy p {
  max-width: 620px;
  color: #435266;
  font-size: 18px;
  line-height: 1.55;
}

.store-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, #f8fafc, #eef8f6);
  box-shadow: var(--shadow);
}

.store-stat {
  min-height: 150px;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.store-stat strong {
  color: var(--accent);
  font-size: 32px;
  line-height: 1;
}

.store-stat span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fbfcfe;
  box-shadow: 0 12px 30px rgba(31,49,75,0.06);
}

.feature-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.panel-hub {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-blue) 08%, transparent), rgba(244, 178, 63, 0.1)),
    #f8fafc;
}

.panel-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel-hub-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(31, 49, 75, 0.06);
}

.panel-hub-grid a:hover {
  border-color: var(--brand-blue-border);
  transform: translateY(-1px);
}

.panel-hub-grid span {
  width: 38px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.panel-hub-grid strong {
  font-size: 20px;
  line-height: 1.15;
}

.panel-hub-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: start;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(15,138,123,0.2), transparent 42%),
    var(--accent);
  color: #fff;
}

.contact-band div {
  display: grid;
  gap: 12px;
}

.contact-band p {
  color: #cbd5e1;
}

.simple-page {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(36px, 6vw, 84px) clamp(18px, 5vw, 64px);
}

.simple-page section {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.simple-page p {
  color: #435266;
  font-size: 20px;
  line-height: 1.55;
}

.simple-page .primary-link {
  justify-self: start;
}

.office-page {
  padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 70px);
}

.office-assistant {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31,49,75,0.08);
}

.office-copy {
  display: grid;
  gap: 14px;
}

.office-copy h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.office-copy p {
  color: #435266;
  font-size: 18px;
  line-height: 1.5;
}

.office-form {
  display: grid;
  gap: 10px;
}

.office-form textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font: inherit;
  font-size: 17px;
  line-height: 1.45;
}

.office-actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
}

.voice-button {
  background: var(--brand-blue);
}

.voice-button.is-listening {
  background: #c52138;
}

.voice-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.office-voice-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.office-quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.office-quick button {
  min-height: 38px;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--brand-blue-border);
  font-size: 14px;
}

.office-result {
  display: grid;
  gap: 14px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.office-result > span {
  color: var(--muted);
  font-weight: 800;
}

.office-clarify {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  background: var(--brand-blue-soft);
}

.office-clarify span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.office-clarify strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.office-clarify small {
  color: var(--brand-blue);
  font-size: 14px;
}

.office-clarify-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.office-clarify-options button {
  min-height: 38px;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--brand-blue-soft-strong);
  font-size: 14px;
}

.office-result-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.office-result-head div {
  display: grid;
  gap: 5px;
}

.office-cart-summary {
  width: 100%;
  display: grid;
  gap: 8px;
  justify-items: stretch;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.office-result-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.office-result-head strong {
  font-size: 18px;
  line-height: 1.25;
}

.office-cart-summary strong {
  color: var(--ink);
  font-size: 16px;
}

.office-cart-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.office-cart-list {
  width: 100%;
  max-height: 170px;
  overflow: auto;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  text-align: left;
}

.office-cart-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.office-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 6px;
  background: #fff;
}

.office-cart-item span {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
}

.office-cart-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.office-cart-item button {
  min-height: 30px;
  padding: 0 8px;
  background: #fff;
  color: var(--danger);
  border: 1px solid #f2c5c9;
  font-size: 12px;
}

.office-whatsapp {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--success);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.office-whatsapp.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.office-cart-clear {
  min-height: 40px;
  padding: 0 12px;
  background: #fff;
  color: var(--danger);
  border: 1px solid #f2c5c9;
  font-size: 13px;
}

.office-suggestion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.office-group {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfe;
}

.office-group-title {
  display: grid;
  gap: 4px;
}

.office-group-title strong {
  font-size: 18px;
}

.office-group-title small {
  color: var(--muted);
}

.office-products {
  display: grid;
  gap: 8px;
}

.office-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.office-product-image {
  width: 86px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 5px #f8fafc;
}

.office-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.office-product-image span {
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.office-product div {
  display: grid;
  gap: 3px;
}

.office-product strong {
  font-size: 14px;
  line-height: 1.25;
}

.office-product small {
  color: var(--muted);
  font-size: 12px;
}

.office-product button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
}

.office-product button.is-selected {
  background: var(--success);
}

.school-page {
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--brand-blue) 12%, transparent), transparent 32rem),
    #f8fbfd;
}

.school-shell {
  padding: clamp(22px, 5vw, 58px) clamp(14px, 5vw, 70px);
}

.school-assistant {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 22px;
  align-items: start;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31,49,75,0.08);
}

.school-copy {
  display: grid;
  gap: 14px;
}

.school-copy h1 {
  font-size: clamp(32px, 5vw, 56px);
}

.school-copy p {
  color: #435266;
  font-size: 18px;
  line-height: 1.5;
}

.school-form,
.school-order-form {
  display: grid;
  gap: 10px;
}

.school-form textarea,
.school-order-form textarea,
.school-order-form input,
.school-order-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-size: 16px;
}

.school-form textarea {
  min-height: 156px;
  resize: vertical;
}

.school-actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
}

.school-quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.school-quick button {
  min-height: 38px;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--brand-blue-border);
  font-size: 14px;
}

.school-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 16px;
  align-items: start;
}

.school-result,
.school-cart {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.school-cart {
  position: sticky;
  top: 88px;
}

.school-result > span,
.school-cart-list em {
  color: var(--muted);
  font-weight: 800;
  font-style: normal;
}

.school-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.school-cart-head span,
.school-price-box span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.school-cart-head strong {
  color: var(--ink);
  font-size: 15px;
  text-align: right;
}

.school-suggestion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.school-group {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.school-products,
.school-cart-list {
  display: grid;
  gap: 8px;
}

.school-cart-list {
  max-height: 320px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.school-product {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.school-product-image {
  width: 62px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-blue-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

.school-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.school-product-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.school-product-info strong {
  font-size: 14px;
  line-height: 1.25;
}

.school-product-info small {
  color: var(--muted);
  font-size: 12px;
}

.school-product button {
  min-height: 36px;
  padding: 0 10px;
  font-size: 13px;
}

.school-product button.is-selected {
  background: var(--brand-blue);
}

.school-price-box {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  background: var(--brand-blue-soft);
}

.school-price-box div,
.school-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.school-price-box strong {
  color: var(--ink);
}

.school-cart-item {
  padding: 9px;
  border-radius: 8px;
  background: #fff;
}

.school-cart-item div:first-child {
  min-width: 0;
}

.school-cart-item strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.school-cart-item small {
  color: var(--muted);
  font-size: 12px;
}

.school-qty {
  display: inline-grid;
  grid-template-columns: 28px 28px 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.school-qty button {
  min-height: 28px;
  padding: 0;
  border-radius: 0;
}

.school-qty span {
  text-align: center;
  font-weight: 900;
}

.school-remove {
  grid-column: 1 / -1;
  min-height: 30px;
  background: #fff;
  color: var(--danger);
  border: 1px solid #f2c5c9;
  font-size: 12px;
}

.school-order-form .office-whatsapp,
.school-order-form .office-cart-clear {
  width: 100%;
}

.liste-shell {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px) 20px 60px;
}

.liste-intro {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31,49,75,0.08);
}

.liste-intro h1 {
  font-size: clamp(28px, 4.5vw, 44px);
}

.liste-intro p {
  color: #435266;
  font-size: 17px;
  line-height: 1.5;
}

.liste-form {
  display: grid;
  gap: 10px;
}

.liste-form textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-size: 16px;
  resize: vertical;
}

.liste-actions {
  display: flex;
  gap: 10px;
}

.liste-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 16px;
  align-items: start;
}

.liste-result {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.liste-result > span {
  color: var(--muted);
  font-weight: 800;
}

.liste-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.liste-item-query {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.liste-not-found {
  color: var(--muted);
  font-size: 13px;
}

.liste-product-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.liste-product-card.is-alternative {
  background: #f8fafc;
}

.liste-product-image {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-blue-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

.liste-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.liste-product-info {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.liste-product-info strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.liste-product-info small {
  color: var(--muted);
  font-size: 10px;
}

.liste-product-card button {
  min-height: 28px;
  padding: 0 8px;
  font-size: 11px;
  white-space: nowrap;
}

.liste-alt-toggle {
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--brand-blue-border);
  font-size: 12px;
}

.liste-alternatives {
  display: grid;
  gap: 8px;
}

@media (max-width: 860px) {
  .liste-layout {
    grid-template-columns: 1fr;
  }
}

#ai-widget-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand-blue) 35%, transparent);
  z-index: 999;
}

#ai-widget-toggle.is-open {
  background: var(--accent-strong);
}

#ai-widget-panel {
  position: fixed;
  right: 20px;
  bottom: 88px;
  width: 340px;
  max-width: calc(100vw - 32px);
  max-height: min(70vh, 560px);
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(31,49,75,0.22);
  z-index: 999;
  overflow: hidden;
}

#ai-widget-panel:not([hidden]) {
  display: flex;
}

.ai-widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
}

.ai-widget-head button {
  min-height: 24px;
  padding: 0 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
}

.ai-widget-hint {
  margin: 10px 14px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

#ai-widget-form {
  display: grid;
  gap: 8px;
  padding: 10px 14px;
}

#ai-widget-form textarea {
  width: 100%;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

#ai-widget-form button {
  min-height: 32px;
  font-size: 13px;
}

.ai-widget-result {
  margin: 0 14px;
  padding: 10px;
  border-radius: 8px;
  background: #fbfcfe;
  overflow-y: auto;
  max-height: 260px;
  font-size: 13px;
}

.ai-widget-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  font-size: 12px;
}

.ai-widget-cart em {
  color: var(--muted);
  font-style: normal;
}

.ai-widget-cart a {
  color: var(--accent-strong);
  font-weight: 800;
}

@media (max-width: 480px) {
  #ai-widget-panel {
    right: 12px;
    left: 12px;
    width: auto;
  }

  #ai-widget-toggle {
    right: 16px;
  }
}

#sohbet-widget-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand-blue) 35%, transparent);
  z-index: 999;
}

#sohbet-widget-toggle.is-open {
  background: var(--accent-strong);
}

#sohbet-widget-panel {
  position: fixed;
  left: 20px;
  bottom: 88px;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: min(70vh, 560px);
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(31,49,75,0.22);
  z-index: 999;
  overflow: hidden;
}

#sohbet-widget-panel:not([hidden]) {
  display: flex;
}

.sohbet-widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
}

.sohbet-widget-head button {
  min-height: 24px;
  padding: 0 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
}

.sohbet-widget-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.sohbet-bubble {
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.45;
  white-space: pre-line;
  word-wrap: break-word;
}

.sohbet-bubble-user {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 3px;
}

.sohbet-bubble-assistant {
  align-self: flex-start;
  background: #f1f5f9;
  color: #1e293b;
  border-bottom-left-radius: 3px;
}

.sohbet-products {
  display: grid;
  gap: 8px;
  padding: 2px 0 6px;
}

.sohbet-product-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sohbet-product-image {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafc;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-strong);
}

.sohbet-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sohbet-product-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sohbet-product-info strong {
  font-size: 12px;
  line-height: 1.3;
}

.sohbet-product-info small {
  color: var(--muted);
  font-size: 10px;
  word-break: break-all;
}

.sohbet-product-card .shop-add-cart {
  font-size: 11px;
  min-height: 30px;
  padding: 0 10px;
}

#sohbet-widget-form {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
}

#sohbet-widget-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  font: inherit;
  font-size: 16px;
}

#sohbet-widget-form button {
  min-height: 36px;
  font-size: 13px;
}

@media (max-width: 480px) {
  #sohbet-widget-panel {
    left: 12px;
    right: 12px;
    width: auto;
  }

  #sohbet-widget-toggle {
    left: 16px;
  }
}

.catalog-page {
  padding: clamp(32px, 5vw, 62px) clamp(18px, 5vw, 70px);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(238,248,246,0.92)),
    #fff;
  box-shadow: 0 16px 42px rgba(31,49,75,0.08);
}

.catalog-hero div {
  display: grid;
  gap: 12px;
}

.catalog-hero p {
  max-width: 680px;
  color: #435266;
  font-size: 18px;
  line-height: 1.5;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.catalog-search input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 16px;
  background: #f8fafc;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

.catalog-meta a {
  color: var(--accent);
  text-decoration: none;
}

.catalog-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.catalog-categories a {
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-categories a:hover,
.catalog-categories a.is-active {
  border-color: var(--brand-blue-border);
  background: var(--brand-blue-soft);
  color: var(--accent);
}

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

.catalog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31,49,75,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.catalog-card:hover,
.catalog-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31,49,75,0.1);
}

.product-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-blue) 34%, transparent);
  outline-offset: 3px;
}

.catalog-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), transparent 34%),
    linear-gradient(135deg, #eef8f6, #f8fafc);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.product-dialog[hidden] {
  display: none !important;
}

body.product-dialog-open {
  overflow: hidden;
}

.product-dialog {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-dialog-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.product-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(92vh, 760px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
}

.product-dialog-media {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 36px);
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(145deg, #eef8f6, #f8fafc);
}

.product-dialog-image {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-dialog-image[hidden],
.product-dialog-placeholder[hidden] {
  display: none !important;
}

.product-dialog-placeholder {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff;
  color: var(--blue);
  font-size: 52px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(31, 49, 75, 0.1);
}

.product-dialog-content {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  overflow-y: auto;
  padding: clamp(26px, 5vw, 48px);
}

.product-dialog-eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-dialog-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-dialog-description {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
}

.product-dialog-meta {
  margin: 0;
}

.product-dialog-meta div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-dialog-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-dialog-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.product-dialog-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.product-dialog-footer > strong {
  color: var(--success);
  font-size: 25px;
}

.product-dialog-cart {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.product-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1f314b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.product-dialog-close:hover,
.product-dialog-close:focus-visible {
  background: #fff;
}

.catalog-image span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--accent);
  font-size: 34px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31,49,75,0.08);
}

.catalog-info {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.catalog-info strong {
  min-height: 44px;
  font-size: 15px;
  line-height: 1.25;
}

.catalog-info small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.catalog-description {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.product-card-detail i {
  font-size: 15px;
  font-style: normal;
  transition: transform 160ms ease;
}

.product-card:hover .product-card-detail i,
.product-card:focus-visible .product-card-detail i {
  transform: translateX(3px);
}

.catalog-info > span:not(.product-card-detail) {
  color: var(--success);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .product-dialog {
    align-items: end;
    padding: 12px;
  }

  .product-dialog-panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    border-radius: 18px;
  }

  .product-dialog-media {
    min-height: 0;
    height: min(42dvh, 330px);
    padding: 18px;
  }

  .product-dialog-content {
    overflow: visible;
    padding: 22px;
  }

  .product-dialog-content h2 {
    padding-right: 34px;
    font-size: 24px;
  }

  .product-dialog-footer {
    grid-template-columns: 1fr;
  }

  .product-dialog-cart {
    width: 100%;
  }
}

.catalog-cart-button {
  min-height: 38px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.catalog-cart-button:hover {
  background: var(--brand-blue);
}

.sale-page {
  background: #f6f7fb;
  overflow-x: hidden;
}

.sale-header {
  background: rgba(255, 255, 255, 0.96);
}

.sale-shell {
  display: grid;
  gap: 16px;
  max-width: 100%;
  min-width: 0;
  padding: clamp(22px, 4vw, 44px) clamp(14px, 5vw, 70px);
}

.sale-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 22px;
  align-items: end;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid #eceff5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 49, 75, 0.06);
}

.sale-hero div {
  display: grid;
  gap: 10px;
}

.sale-hero h1 {
  max-width: 720px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1;
}

.sale-hero p {
  max-width: 660px;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.5;
}

.sale-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}

.sale-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  padding: 0 12px;
  background: var(--brand-blue-soft);
  font-size: 15px;
}

.sale-search button,
.sale-buy,
.shop-whatsapp {
  background: var(--blue);
}

.sale-categories {
  display: flex;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0 8px;
}

.sale-categories a {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid #e6eaf0;
  border-radius: 999px;
  background: #fff;
  color: #384152;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.sale-categories a.is-active,
.sale-categories a:hover {
  border-color: var(--blue);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.sale-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #4b5563;
}

.sale-meta a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.sale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  max-width: 100%;
  min-width: 0;
}

.sale-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #e8edf3;
  border-radius: 8px;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.sale-card:hover,
.sale-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 49, 75, 0.11);
}

.sale-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #fafafa;
  text-decoration: none;
}

.sale-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.sale-image span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-blue-soft);
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.sale-info {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
}

.sale-info strong {
  min-height: 42px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.sale-info > small {
  color: #8a94a6;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.sale-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sale-price-row {
  display: grid;
  gap: 3px;
}

.sale-price-row span {
  color: var(--blue);
  font-size: 21px;
  font-weight: 950;
}

.sale-price-row small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.sale-buy {
  min-height: 38px;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.shop-cart-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 49, 75, 0.06);
}

.shop-cart-head,
.shop-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-cart-head div {
  display: grid;
  gap: 3px;
}

.shop-cart-head span,
.shop-cart-total span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-cart-head strong {
  color: var(--ink);
  font-size: 18px;
}

.shop-cart-head button {
  min-height: 34px;
  padding: 0 10px;
  background: #e2e8f0;
  color: var(--ink);
  font-size: 13px;
}

.shop-cart-list {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
}

.shop-cart-list em,
.shop-cart-panel > small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
}

.shop-cart-item div:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.shop-cart-item strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shop-cart-item small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.shop-qty {
  display: grid;
  grid-template-columns: 32px 28px 32px;
  gap: 6px;
  align-items: center;
  justify-items: center;
}

.shop-qty button {
  width: 32px;
  min-height: 32px;
  padding: 0;
  background: var(--blue);
  font-size: 14px;
}

.shop-qty span {
  font-weight: 900;
}

.shop-qty button[data-shop-remove] {
  grid-column: 1 / -1;
  width: 100%;
  background: #fee2e2;
  color: var(--danger);
  font-size: 12px;
}

.shop-cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.shop-cart-total strong {
  color: var(--success);
  font-size: 24px;
}

.shop-whatsapp {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.shop-whatsapp.is-disabled {
  pointer-events: none;
  background: #cbd5e1;
  color: #64748b;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.pager a,
.pager span {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-grid a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(203, 213, 225, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

.contact-grid a:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.contact-grid span {
  color: var(--brand-blue-border);
  font-size: 13px;
  font-weight: 800;
}

.contact-grid strong {
  font-size: 17px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.qr-page {
  background: #f3f6f9;
}

.qr-sheet {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  align-content: center;
  gap: 22px;
  padding: 24px;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.qr-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.qr-card h1,
.qr-card h2 {
  font-size: 34px;
}

.qr-card img {
  width: min(100%, 310px);
  height: auto;
  border: 1px solid var(--line);
}

.qr-card p {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.45;
}

.qr-card strong {
  color: var(--ink);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.qr-a5-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #e8edf3;
}

.qr-a5 {
  width: min(100%, 420px);
  aspect-ratio: 148 / 210;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 46px rgba(23, 37, 52, 0.16);
}

.qr-a5 span {
  width: 100%;
  padding: 14px 10px;
  border-radius: 6px;
  background: #163b35;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.qr-a5 h1 {
  margin-top: 8px;
  color: #163b35;
  font-size: 54px;
}

.qr-a5 p {
  max-width: 300px;
  color: #435266;
  font-size: 18px;
  line-height: 1.35;
}

.qr-a5 img {
  width: min(100%, 300px);
  height: auto;
  margin-top: 4px;
  border: 10px solid #f2eee7;
  border-radius: 8px;
}

.qr-a5 strong {
  color: #163b35;
  font-size: 20px;
  line-height: 1.25;
}

.qr-a5 small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

@page {
  size: A5 portrait;
  margin: 0;
}

@media print {
  .qr-a5-wrap {
    min-height: auto;
    padding: 0;
    background: #fff;
  }

  .qr-a5 {
    width: 148mm;
    height: 210mm;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

.muted-card {
  background: #fbfcfe;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.panel {
  width: min(100%, 520px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(23, 37, 52, 0.12);
}

.admin-page .panel {
  width: min(100%, 760px);
}

.admin-login-page .admin-layout {
  grid-template-columns: 190px minmax(0, 1fr);
}

.admin-login-page .admin-sidebar {
  min-height: 100svh;
  padding: 14px 12px;
}

.admin-login-page .admin-sidebar-nav {
  display: none;
}

.admin-login-page .admin-content {
  width: min(100%, 520px);
  padding: 18px;
}

.admin-login-page .admin-content-head .brand strong {
  font-size: 28px;
}

.admin-login-page .admin-content-head .brand small {
  font-size: 12px;
}

.admin-login-page .panel {
  width: min(100%, 420px);
  padding: 16px;
}

.admin-login-page .lookup-form {
  gap: 7px;
}

.admin-login-page .admin-login-row {
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 6px;
}

.admin-login-page input[type='password'],
.admin-login-page button[type='submit'] {
  min-height: 36px;
  font-size: 14px;
}

.price-page input[type='search'],
.price-page input[type='password'] {
  min-height: 46px;
  font-size: 16px;
}

.price-page .panel {
  max-width: 520px;
}

.price-admin-return {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.price-admin-return:hover {
  border-color: rgba(59, 130, 246, 0.45);
  color: var(--accent);
}

.brand {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.brand span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong {
  font-size: 30px;
  line-height: 1.1;
}

.brand strong em {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  margin-left: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--success);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  vertical-align: middle;
}

.lookup-form {
  display: grid;
  gap: 10px;
}

label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 8px;
}

.admin-login-row {
  grid-template-columns: 1fr auto;
}

input[type='text'],
input[type='password'],
input[type='date'],
input:not([type]),
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23555' d='M0 0l6 8 6-8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-blue) 1%, transparent);
}

textarea {
  min-height: 92px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.45;
}

input[type='file'] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #f9fbfc;
}

button,
.admin-link {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

button:hover,
.admin-link:hover {
  background: var(--accent-strong);
}

button:active,
.admin-link:active,
button[aria-pressed='true'],
.admin-link[aria-current='page'] {
  background: var(--brand-blue);
}

.scan-button {
  width: 48px;
  min-height: 48px;
  padding: 0;
  background: var(--accent);
}

.scan-button span {
  width: 26px;
  height: 22px;
  display: block;
  border-left: 3px solid #fff;
  border-right: 2px solid #fff;
  background:
    linear-gradient(90deg, #fff 0 2px, transparent 2px 5px, #fff 5px 8px, transparent 8px 12px, #fff 12px 14px, transparent 14px 18px, #fff 18px 21px, transparent 21px 24px, #fff 24px 26px);
}

.secondary {
  width: 100%;
  margin-top: 12px;
  background: var(--accent);
}

.camera-wrap {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100svh;
  padding: max(14px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.camera-wrap.is-open {
  display: grid;
}

.scanner-frame {
  --scanner-height: min(68dvh, 520px);
  --scanner-travel: calc(var(--scanner-height) - 92px);
  position: relative;
  overflow: hidden;
  width: min(86vw, 360px);
  height: var(--scanner-height);
  max-height: calc(100dvh - 92px);
  border-radius: 14px;
  background: #111827;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.scanner-frame::before {
  content: '';
  position: absolute;
  inset: 32px;
  z-index: 2;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  pointer-events: none;
}

.scanner-frame::after {
  content: '';
  position: absolute;
  inset: 32px;
  z-index: 3;
  border-radius: 10px;
  background:
    linear-gradient(#ffffff, #ffffff) left top / 76px 8px no-repeat,
    linear-gradient(#ffffff, #ffffff) left top / 8px 76px no-repeat,
    linear-gradient(#ffffff, #ffffff) right top / 76px 8px no-repeat,
    linear-gradient(#ffffff, #ffffff) right top / 8px 76px no-repeat,
    linear-gradient(#ffffff, #ffffff) left bottom / 76px 8px no-repeat,
    linear-gradient(#ffffff, #ffffff) left bottom / 8px 76px no-repeat,
    linear-gradient(#ffffff, #ffffff) right bottom / 76px 8px no-repeat,
    linear-gradient(#ffffff, #ffffff) right bottom / 8px 76px no-repeat;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 46px;
  z-index: 4;
  height: 3px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.95);
  animation: scan-line 1.8s ease-in-out infinite;
  pointer-events: none;
}

video {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  object-fit: cover;
}

.camera-close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  touch-action: manipulation;
}

.scanner-help {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 18px;
  z-index: 4;
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

@keyframes scan-line {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(var(--scanner-travel));
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .camera-wrap {
    align-items: center;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  }

  .scanner-frame {
    --scanner-height: min(60dvh, 430px);
    width: min(92vw, 340px);
    max-height: calc(100dvh - 96px);
    border-radius: 12px;
  }

  .scanner-frame::before,
  .scanner-frame::after {
    inset: 24px;
  }

  .scan-line {
    left: 32px;
    right: 32px;
    top: 38px;
  }

  .scanner-help {
    left: 24px;
    right: 24px;
    bottom: 14px;
    font-size: 12px;
  }

  .camera-close {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    width: 42px;
    min-height: 42px;
    font-size: 30px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .scanner-frame {
    --scanner-height: min(72dvh, 300px);
    width: min(70vw, 430px);
    max-height: calc(100dvh - 64px);
  }

  .camera-close {
    width: 40px;
    min-height: 40px;
  }
}

.result {
  min-height: 132px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.result span {
  font-size: 22px;
  font-weight: 700;
}

.result strong {
  font-size: 42px;
  line-height: 1;
  color: var(--success);
}

.result small {
  color: var(--muted);
  font-size: 14px;
}

.patron-status .is-cached {
  background: #d97706;
  box-shadow: 0 0 0 5px rgba(217, 119, 6, 0.12);
}

.stock-line {
  color: var(--brand-blue);
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.order-icon {
  width: 42px;
  min-height: 36px;
  padding: 0;
  border: 1px solid var(--brand-blue-soft-strong);
  background: var(--brand-blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.order-icon:hover {
  background: var(--brand-blue-soft-strong);
}

.order-icon::before {
  content: '+';
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.order-icon span {
  width: 14px;
  height: 16px;
  display: block;
  margin-left: -2px;
  border: 2px solid currentColor;
  border-radius: 3px;
  border-top-width: 4px;
}

.add-cart {
  width: 100%;
  margin-top: 6px;
  background: var(--warm);
  color: #1f2937;
}

.add-cart:hover {
  background: #d97706;
  color: #fff;
}

.list-result {
  align-content: start;
}

.product-list {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  max-height: 360px;
  overflow: auto;
}

.product-hit {
  min-height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.product-hit:hover {
  background: #f8fafc;
}

.product-hit span {
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.product-hit strong {
  grid-row: span 2;
  align-self: center;
  color: var(--success);
  font-size: 20px;
  white-space: nowrap;
}

.product-hit small {
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-hit .stock-line {
  grid-column: 1;
  font-size: 13px;
}

.idle,
.loading {
  background: #f8fafc;
}

.found {
  background: #f0fdf4;
  border-color: #b7e4c7;
}

.not-found,
.error {
  background: #fff5f5;
  border-color: #f1b8b4;
  color: var(--danger);
}

.access-gate {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.access-gate > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.access-gate > strong {
  font-size: 24px;
  line-height: 1.15;
}

.access-gate p {
  color: var(--muted);
  line-height: 1.5;
}

.admin-access-form {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.product-edit-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  resize: vertical;
}

.admin-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
}

.manual-admin {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.manual-admin h2,
.makrocell-admin h2,
.invoice-admin h2 {
  font-size: 22px;
  line-height: 1.15;
}

.makrocell-admin,
.invoice-admin,
.product-list-admin {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

details > summary::marker {
  content: '';
  font-size: 0;
}

.collapsible-admin {
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  padding: 0;
  background: #f8fcff;
}

.collapsible-admin summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--brand-blue) 2%, transparent);
}

.collapsible-admin summary::-webkit-details-marker {
  display: none;
}

.collapsible-admin summary span {
  font-size: 18px;
}

.collapsible-admin summary strong {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.collapsible-admin[open] summary {
  border-radius: 8px 8px 0 0;
  background: var(--brand-blue);
}

.collapsible-admin > form,
.collapsible-admin > p {
  margin: 12px;
}

.product-list-collapsible {
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  padding: 0;
  background: #f8fcff;
}

.product-list-summary,
.invoice-info-menu > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--brand-blue) 18%, transparent);
}

.product-list-summary span,
.invoice-info-menu > summary span {
  min-width: 0;
  font-size: 18px;
  font-weight: 900;
}

.product-list-summary strong,
.invoice-info-menu > summary strong {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.product-list-summary small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.product-list-collapsible[open] > .product-list-summary,
.invoice-info-menu[open] > summary {
  border-radius: 8px 8px 0 0;
  background: var(--brand-blue);
}

.product-list-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.product-list-panel .lookup-form {
  margin: 0;
}

.admin-product-accordion {
  display: grid;
  gap: 8px;
}

.admin-product-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.admin-product-row summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 5px 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
}

.admin-product-row summary::-webkit-details-marker {
  display: none;
}

.admin-product-row summary:hover,
.admin-product-row[open] summary {
  background: var(--brand-blue-soft);
}

.admin-product-row summary::after {
  content: 'Ac';
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  min-width: 54px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.admin-product-row[open] summary::after {
  content: 'Kapat';
  background: var(--brand-blue);
}

.admin-product-row summary .photo-status {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.admin-product-row summary strong {
  grid-column: 1;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-product-row summary small {
  grid-column: 1;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  padding: 6px 2px 10px;
}

.product-list-meta > span {
  font-weight: 800;
  color: var(--ink);
}

.product-list-meta > small {
  color: var(--muted);
  font-weight: 800;
}

.product-list-meta .remove-selected-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #fecaca;
  border-radius: 7px;
  background: #fff5f5;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.admin-product-row summary .product-row-remove-check-label {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-product-row summary .product-row-remove-check {
  width: 24px;
  height: 24px;
  accent-color: #b91c1c;
  cursor: pointer;
}

.admin-product-row-body {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.admin-product-row-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-product-row-meta span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-product-row-meta strong {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.admin-product-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-product-row-actions .table-link,
.admin-product-row-actions button {
  min-height: 32px;
  min-width: 120px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 7px;
  background: var(--brand-blue-soft);
  justify-content: center;
  text-align: center;
}

.admin-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.photo-admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  background: var(--brand-blue-soft);
}

.photo-admin-card h2 {
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-size: 22px;
  line-height: 1.15;
}

.photo-admin-card p {
  color: var(--accent);
  line-height: 1.45;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.check-row span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.invoice-preview-form {
  display: grid;
  gap: 12px;
}

.invoice-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 14px;
  align-items: start;
}

.invoice-main,
.invoice-side {
  display: grid;
  gap: 10px;
}

.invoice-info-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}

.invoice-info-grid {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.invoice-info-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.invoice-info-grid h3 {
  margin: 0;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  color: var(--ink);
  font-size: 15px;
}

.invoice-info-grid section > div {
  display: grid;
  grid-template-columns: minmax(96px, 0.82fr) minmax(0, 1.18fr);
  gap: 12px;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.invoice-side span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.invoice-side strong {
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.invoice-table-wrap {
  overflow-x: auto;
  max-height: 68vh;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.invoice-table {
  width: 100%;
  min-width: 1480px;
  border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
  padding: 2px 4px !important;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  line-height: 1.1;
}

.invoice-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.invoice-table td:nth-child(1) input {
  min-width: 108px;
}

.invoice-table td:nth-child(2) input {
  min-width: 230px;
}

.invoice-table td:nth-child(n+3) input {
  min-width: 56px;
}

.invoice-table td:nth-child(14) {
  min-width: 190px;
}

.invoice-table input[type='text'] {
  min-height: 24px !important;
  height: 24px !important;
  padding: 0 5px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.invoice-match {
  width: fit-content;
  min-height: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
}

.invoice-match.barcode {
  background: var(--brand-blue-soft);
  color: var(--success);
}

.invoice-match.name {
  background: var(--brand-blue-soft);
  color: var(--blue);
}

.invoice-match.new {
  background: #fff7ed;
  color: #b45309;
}

.invoice-table small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.1;
  max-height: 22px;
  overflow: hidden;
}

.invoice-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
}

.invoice-debug {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
}

.invoice-debug summary {
  cursor: pointer;
  font-weight: 800;
}

.invoice-debug textarea {
  width: 100%;
  min-height: 240px;
  margin-top: 10px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.45;
}

.secondary-button {
  background: var(--accent);
}

.secondary-button:hover {
  background: var(--brand-blue);
}

button:disabled,
.secondary-button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.manual-results {
  display: grid;
  gap: 8px;
  max-height: 330px;
  overflow: auto;
}

.manual-result-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.manual-result-row:hover {
  background: #f8fafc;
  border-color: #b9c4d0;
}

.manual-result-name {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
  line-height: 1.25;
}

.manual-result-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
  line-height: 1.25;
}

.manual-result-meta small {
  color: var(--muted);
}

.manual-edit-panel {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--brand-blue-soft-strong);
  border-radius: 8px;
  background: var(--brand-blue-soft);
}

.manual-edit-actionbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 2px;
  background: var(--brand-blue-soft);
}

.manual-edit-actionbar button {
  width: 100%;
  min-height: 44px;
}

.product-edit-form {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.admin-image-upload-box {
  display: grid;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--brand-blue-border);
  border-radius: 8px;
  background: var(--brand-blue-soft);
}

.admin-image-upload-box summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  color: var(--brand-blue);
}

.admin-image-upload-box strong {
  color: var(--brand-blue);
  font-size: 20px;
  line-height: 1.2;
}

.admin-image-upload-box small {
  color: var(--accent);
  line-height: 1.35;
}

.admin-image-upload-box input[type='file'] {
  min-height: 44px;
  padding: 9px;
  border: 1px dashed var(--brand-blue-border);
  border-radius: 8px;
  background: #fff;
}

.edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.edit-grid > div {
  display: grid;
  gap: 8px;
}

.admin-product-image {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.admin-product-image.mini {
  width: 42px;
  height: 42px;
  padding: 3px;
}

.delete-form {
  display: grid;
}

.delete-form button {
  width: 100%;
  background: var(--danger);
}

.delete-form button:hover {
  background: #7f1d1d;
}

.restore-form button {
  background: var(--blue);
}

.restore-form button:hover {
  background: var(--brand-blue);
}

.new-product-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.new-product-box summary {
  padding: 14px;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
}

.new-product-box .product-edit-form {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
}

.cart-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.cart-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-head strong {
  font-size: 20px;
}

.cart-clear {
  min-height: 34px;
  padding: 0 10px;
  background: #e2e8f0;
  color: var(--ink);
  font-size: 13px;
}

.cart-clear:hover {
  background: #cbd5e1;
}

.cart-items {
  display: grid;
  gap: 8px;
  max-height: 320px;
  overflow: auto;
}

.cart-items > span {
  color: var(--muted);
  font-size: 14px;
}

.order-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.order-actions button,
.order-actions a {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.order-actions button {
  background: var(--blue);
}

.order-actions button:hover {
  background: var(--brand-blue);
}

.order-actions a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.order-actions a:hover {
  border-color: #b9c4d0;
  background: #f8fafc;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
}

.cart-item div:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cart-item strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cart-item small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.qty-controls {
  display: grid;
  grid-template-columns: 34px 28px 34px;
  gap: 6px;
  align-items: center;
  justify-items: center;
}

.qty-controls button {
  width: 34px;
  min-height: 34px;
  padding: 0;
  background: var(--accent);
  font-size: 15px;
}

.qty-controls button:hover,
.qty-controls button:active {
  background: var(--brand-blue);
}

.qty-controls button[data-action='remove'] {
  grid-column: 1 / -1;
  width: 100%;
  background: #fee2e2;
  color: var(--danger);
  font-size: 13px;
}

.qty-controls span {
  font-weight: 800;
}

.cart-total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  color: var(--success);
  font-size: 28px;
}

.alert {
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.success {
  background: #f0fdf4;
  border: 1px solid #b7e4c7;
  color: var(--success);
}

.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .site-header-search {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    max-width: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .brand-showcase {
    min-height: 430px;
  }

  .category-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-band,
  .feature-grid,
  .panel-hub-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .store-visual {
    order: 2;
  }

  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .office-assistant,
  .office-suggestion-grid {
    grid-template-columns: 1fr;
  }

  .office-actions {
    grid-template-columns: 1fr;
  }

  .office-result-head {
    flex-direction: column;
  }

  .office-cart-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .office-cart-item small {
    grid-column: 1;
  }

  .office-cart-item button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .office-product {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .office-product-image {
    width: 78px;
  }

  .office-product button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-hit {
    grid-template-columns: 1fr;
  }

  .product-hit strong {
    grid-row: auto;
    justify-self: start;
    font-size: 19px;
  }

  .product-hit .stock-line {
    grid-column: auto;
  }

  .invoice-workspace {
    grid-template-columns: 1fr;
  }

  .photo-admin-card {
    grid-template-columns: 1fr;
  }

  .photo-card {
    grid-template-columns: 160px 1fr;
  }

  .photo-upload-form {
    grid-column: 1 / -1;
    margin-top: 0;
  }

}

@media (max-width: 420px) {
  .site-header-search {
    grid-template-columns: 1fr auto;
  }

  .sale-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .shop-cart-head,
  .shop-cart-total,
  .shop-cart-item {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .shop-cart-head,
  .shop-cart-total {
    display: grid;
  }

  .shop-cart-head button,
  .shop-whatsapp {
    width: 100%;
  }

  .shop-qty {
    grid-template-columns: 36px 1fr 36px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .brand-showcase {
    min-height: auto;
    padding: 20px;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 320px;
  }

  .brand-chip {
    min-height: 50px;
    font-size: 13px;
    padding: 7px 8px;
  }

  .brand-showcase-note {
    justify-self: stretch;
  }

  .category-band,
  .store-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .category-band {
    gap: 12px;
  }

  .category-band article,
  .category-band a {
    min-height: auto;
  }

  .store-visual {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-band {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero,
  .catalog-search {
    grid-template-columns: 1fr;
  }

  .qr-sheet {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }

  .price-page .app-shell {
    padding: 10px;
  }

  .price-page .panel {
    padding: 14px;
  }

  .price-page .brand {
    margin-bottom: 14px;
  }

  .price-page .brand strong {
    font-size: 24px;
  }

  .price-page .lookup-form {
    gap: 7px;
  }

  .input-row {
    grid-template-columns: 48px 1fr;
  }

  .price-page .input-row {
    grid-template-columns: 42px minmax(0, 1fr) 56px;
    gap: 6px;
  }

  .price-page .input-row button[type='submit'] {
    grid-column: auto;
  }

  .price-page .scan-button {
    width: 42px;
    min-height: 42px;
  }

  .price-page input[type='search'] {
    min-height: 42px;
    padding: 0 10px;
  }

  .input-row button[type='submit'] {
    grid-column: 1 / -1;
  }

  .admin-login-row {
    grid-template-columns: 1fr auto;
  }

  .admin-login-row button[type='submit'] {
    grid-column: auto;
  }

  .admin-input-row {
    grid-template-columns: 1fr;
  }

  .manual-result-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .manual-result-name {
    white-space: normal;
  }

  .manual-result-meta {
    flex-wrap: wrap;
    white-space: normal;
  }

  .admin-image-upload-box {
    grid-template-columns: 1fr;
  }

  .photo-barcode-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .photo-barcode-row button[type='submit'] {
    grid-column: 1 / -1;
  }

  .photo-card {
    grid-template-columns: 1fr;
  }

  .photo-result-row {
    grid-template-columns: 1fr;
  }

  .photo-status {
    justify-self: start;
  }

  .admin-product-row summary {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .admin-product-row summary .photo-status {
    grid-row: auto;
  }

  .admin-product-row summary strong,
  .admin-product-row summary small {
    grid-column: 1;
    white-space: normal;
  }

  .admin-product-row summary::after {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .admin-product-row summary .product-row-remove-check-label {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .admin-product-row-meta {
    grid-template-columns: 1fr 1fr;
  }

  .admin-product-row-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-preview {
    max-width: 260px;
    justify-self: center;
  }

  .photo-upload-form {
    grid-column: auto;
  }

  .edit-grid {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 26px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .order-actions {
    grid-template-columns: 1fr;
  }

  .qty-controls {
    grid-template-columns: 40px 32px 40px 1fr;
    justify-items: stretch;
  }

  .qty-controls button,
  .qty-controls button[data-action='remove'] {
    width: 100%;
  }

  .qty-controls button[data-action='remove'] {
    grid-column: auto;
  }

  .school-assistant,
  .school-layout,
  .school-suggestion-grid {
    grid-template-columns: 1fr;
  }

  .school-actions {
    grid-template-columns: 1fr;
  }

  .school-cart {
    position: static;
  }

  .school-product {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .school-product button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .school-cart-item {
    grid-template-columns: 1fr;
  }

  .school-qty {
    width: 100%;
    grid-template-columns: 1fr 44px 1fr;
  }

  .depo-shell {
    padding: 10px;
  }

  .depo-panel {
    border-radius: 12px;
    padding: 12px;
  }

  .depo-topbar {
    align-items: flex-start;
  }

  .depo-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .depo-stats div {
    min-height: 64px;
    padding: 10px 8px;
  }

  .depo-stats strong {
    font-size: 20px;
  }

  .depo-search-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .depo-search-row button[type='submit'] {
    grid-column: 1 / -1;
  }

  .depo-form-grid,
  .depo-barkodsis-box,
  .depo-negative-card,
  .depo-negative-row,
  .depo-result-card,
  .depo-selection-bar,
  .depo-editor-actions,
  .depo-photo-row,
  .depo-bulk-form,
  .depo-bulk-actions {
    grid-template-columns: 1fr;
  }

  .depo-row-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .depo-live-row,
  .depo-page .depo-live-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .depo-live-row .depo-result-row,
  .depo-page .depo-live-row .depo-result-row {
    grid-template-columns: 50px minmax(0, 1fr);
    min-width: 0;
  }

  .depo-live-prices,
  .depo-page .depo-live-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .depo-live-prices label,
  .depo-page .depo-live-prices label {
    min-width: 0;
  }

  .depo-live-prices input,
  .depo-page .depo-live-prices input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .depo-live-row .depo-row-actions,
  .depo-page .depo-live-row .depo-row-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .depo-row-select {
    min-height: 36px;
  }

  .depo-selected-actions {
    justify-content: stretch;
  }

  .depo-selected-actions button {
    flex: 1 1 120px;
  }

  .depo-stock-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-shop-header {
    padding-top: 0;
  }

  .home-search-row {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px;
  }

  .home-shop-logo {
    justify-self: start;
  }

  .home-main-search {
    width: 100%;
  }

  .home-shop-actions {
    justify-content: flex-start;
  }

  .home-page .site-header {
    min-height: 86px;
    padding: 0 16px;
  }

  .home-page .home-category-strip nav {
    justify-content: flex-start;
    min-height: 86px;
    gap: 26px;
  }

  .home-page .home-category-strip nav a {
    font-size: 16px;
  }

  .home-mega-left {
    max-height: 280px;
    border-right: 0;
    padding-right: 0;
  }

  .home-mega-left a {
    min-height: 48px;
    font-size: 13px;
  }

  .home-mega-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-mega-columns a {
    font-size: 13px;
  }

  .home-banner {
    min-height: 430px;
    margin-top: 24px;
  }

  .home-banner-brand {
    left: 22px;
    bottom: 70px;
  }

  .home-banner-brand strong {
    font-size: 48px;
  }

  .home-banner-brand small {
    margin-left: 80px;
    font-size: 34px;
    letter-spacing: 10px;
  }

  .banner-mark {
    margin-left: 72px;
    width: 68px;
    height: 54px;
  }

  .mock-book {
    width: 140px;
    height: 170px;
    font-size: 10px;
  }

  .mock-book-one {
    left: 255px;
    top: 145px;
  }

  .mock-book-two {
    left: 425px;
    top: 138px;
  }

  .mock-book-three {
    left: 595px;
    top: 145px;
  }

  .mock-box-one {
    right: 70px;
    top: 95px;
  }

  .mock-paper {
    right: 130px;
    top: 275px;
  }

  .home-page .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 20px 56px;
  }

  .home-page .hero-copy,
  .home-page .hero h1,
  .home-page .hero p {
    max-width: 520px;
  }

  .home-page .hero-showcase {
    justify-items: start;
  }

  .home-hero-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .home-page .home-category-strip nav a {
    font-size: 14px;
  }

  .home-main-search {
    height: 54px;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .home-main-search input {
    height: 52px;
    font-size: 16px;
  }

  .home-main-search button {
    font-size: 38px;
  }

  .home-banner {
    min-height: 360px;
    overflow-x: hidden;
  }

  .home-banner-brand strong {
    font-size: 38px;
  }

  .home-banner-brand small {
    font-size: 26px;
    letter-spacing: 7px;
  }

  .mock-book-one {
    left: 190px;
    top: 130px;
  }

  .mock-book-two {
    left: 340px;
    top: 124px;
  }

  .mock-book-three,
  .mock-box-one,
  .mock-paper {
    display: none;
  }

  .home-page .hero {
    padding-top: 36px;
  }

  .home-page .hero h1 {
    font-size: 38px;
    line-height: 44px;
  }

  .home-login-card {
    padding: 28px 24px 24px;
  }

  .home-login-card h2 {
    font-size: 26px;
  }

  .home-card-links a {
    font-size: 16px;
  }
}

/* Ana sayfa: Codex esintili yan menü ve merkezi kampanya alanı */
.home-page {
  background: #f6f8fb;
}

.home-shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e6ebf1;
}

.home-search-row {
  display: grid;
  width: min(1440px, 100%);
  min-height: 104px;
  grid-template-columns: 48px 170px minmax(280px, 620px) auto;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 56px);
  background: #fff;
}

.home-sidebar-toggle {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
  color: #344054;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  box-shadow: 0 4px 12px rgba(15,23,42,0.06);
}

.home-sidebar-toggle:hover {
  border-color: #cbd5e1;
  background: #f4f7fa;
  transform: translateY(-1px);
}

.home-sidebar-toggle span,
.home-sidebar-toggle span::before,
.home-sidebar-toggle span::after,
.home-category-toggle span,
.home-category-toggle span::before,
.home-category-toggle span::after {
  content: '';
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.18s ease;
}

.home-sidebar-toggle span::before {
  transform: translateY(-7px);
}

.home-sidebar-toggle span::after {
  transform: translateY(7px);
}

/* Hamburger -> X animation when menu is open */
.home-menu-open .home-sidebar-toggle {
  background: rgba(0,0,0,0.03);
  border-color: rgba(15,23,42,0.08);
}
.home-menu-open .home-sidebar-toggle span {
  background: transparent;
}
.home-menu-open .home-sidebar-toggle span::before {
  transform: rotate(45deg);
  width: 18px;
  height: 2px;
  background: #0f1724;
}
.home-menu-open .home-sidebar-toggle span::after {
  transform: rotate(-45deg);
  width: 18px;
  height: 2px;
  background: #0f1724;
}

/* slightly shift header and dim search when menu open */
.home-menu-open .home-shop-header {
  transform: none;
  transition: transform 0.24s ease;
}
.home-menu-open .home-main-search {
  opacity: 0.9;
  filter: blur(0.2px) saturate(95%);
}


.home-shop-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.home-shop-logo-mark {
  width: 44px;
  height: 44px;
}

.home-main-search {
  height: 52px;
  grid-template-columns: minmax(0, 1fr) 52px;
  border-color: #dce3ea;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(24, 33, 47, 0.05);
}

.home-main-search:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(35, 137, 220, 0.12);
}

.home-main-search input {
  height: 50px;
  padding: 0 18px;
  font-size: 16px;
}

.home-main-search button {
  width: 52px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  font-size: 35px;
}

.home-shop-actions {
  gap: 12px;
}

.home-list-link {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-list-link:hover {
  color: var(--brand-blue);
}

.home-cart-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  box-shadow: none;
}

.home-cart-icon::before {
  content: '';
  width: 20px;
  height: 15px;
  border: 2px solid var(--brand-blue);
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  transform: skew(-7deg);
}

.home-cart-icon::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 11px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--brand-blue);
  border-left: 2px solid var(--brand-blue);
  transform: rotate(-12deg);
}

.home-cart-icon {
  color: var(--brand-blue);
}

.site-header.home-category-strip {
  min-height: 60px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue));
  box-shadow: 0 8px 22px rgba(18, 110, 176, 0.17);
}

.home-category-strip nav {
  width: min(1328px, 100%);
  min-height: 60px;
  justify-content: flex-start;
  gap: clamp(22px, 2.6vw, 42px);
  margin: 0 auto;
}

.home-category-strip nav a {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.home-category-strip nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #fff;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home-category-strip nav a:hover {
  color: #fff;
  opacity: 1;
}

.home-category-strip nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-category-toggle {
  min-height: 38px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  border: 0;
  border-radius: 9px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.home-category-toggle span,
.home-category-toggle span::before,
.home-category-toggle span::after {
  width: 17px;
}

.home-category-strip .home-season-link {
  margin-left: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.home-category-strip .home-season-link.is-active,
.home-category-strip .home-season-link:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.home-category-strip .home-season-link::after {
  display: none;
}

.home-page .home-category-strip .home-price-link {
  margin-left: 12px;
  padding: 0 15px;
  font-weight: 800;
}

.home-page .home-category-strip .home-price-link::before {
  content: '₺';
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-right: 7px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 13px;
}

.home-side-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: min(372px, calc(100vw - 24px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  padding: 18px;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0 28px 28px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 189, 248, 0.1), transparent 240px),
    rgba(248, 250, 252, 0.98);
  box-shadow: 28px 0 80px rgba(15, 23, 42, 0.2);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-104%);
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.26s ease, box-shadow 0.26s ease;
  backdrop-filter: saturate(180%) blur(16px);
}

.home-side-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.home-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.home-menu-open {
  overflow: hidden;
}

.home-menu-open .home-shop-header {
  z-index: 1180;
}

.home-menu-open .home-menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-side-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.home-side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #0f172a;
  text-decoration: none;
}

.home-side-brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand-blue) 16%, transparent);
}

.home-side-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.home-side-brand-copy strong {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.home-side-brand-copy small {
  color: #64748b;
  font-size: 11px;
  font-weight: 650;
}

.home-side-head button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #64748b;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.home-side-head button:hover {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.home-side-menu .home-side-nav {
  width: 100%;
  min-height: 0;
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  overflow: visible;
  flex-wrap: unset;
  justify-content: unset;
}

.home-side-menu .home-side-nav a {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 10px 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  white-space: normal;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.home-side-menu .home-side-nav a:hover,
.home-side-menu .home-side-nav a.is-active {
  border-color: color-mix(in srgb, var(--brand-blue) 18%, transparent);
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-blue-soft));
  color: #0f172a;
  opacity: 1;
  transform: translateX(2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-blue) 09%, transparent);
}

.home-side-icon {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
  background: #f1f5f9;
  color: #64748b;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.home-side-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-side-nav a:hover .home-side-icon,
.home-side-nav a.is-active .home-side-icon {
  background: var(--brand-blue-soft-strong);
  color: var(--brand-blue);
  transform: scale(1.03);
}

.home-side-link-copy {
  min-width: 0;
  display: grid;
  flex: 1;
  gap: 2px;
}

.home-side-link-copy strong {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.home-side-link-copy small {
  overflow: hidden;
  color: #64748b;
  font-size: 11px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-side-arrow {
  width: auto !important;
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease, color 0.18s ease;
}

.home-side-nav a:hover .home-side-arrow,
.home-side-nav a.is-active .home-side-arrow {
  color: var(--brand-blue);
  transform: translateX(2px);
}

.home-side-group {
  display: grid;
  gap: 6px;
  margin: 2px 0;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}

.home-side-group.is-active-group .home-side-group-label {
  color: var(--brand-blue);
}

.home-side-group-label {
  padding: 3px 10px 5px;
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-side-sub-link {
  background: transparent !important;
  box-shadow: none !important;
}

.home-side-sub-link:hover,
.home-side-sub-link.is-active {
  background: linear-gradient(135deg, var(--brand-blue-soft), #fff) !important;
}

.assistant-mode-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  width: fit-content;
  max-width: 100%;
}

.assistant-mode-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.assistant-mode-link:hover {
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.assistant-mode-link.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-blue) 22%, transparent);
}

.office-mode-nav-wrap {
  padding-top: 1.5rem;
}

.panel-hub-featured {
  grid-column: 1 / -1;
}

.panel-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.panel-hub-links em {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-blue) 1%, transparent);
  color: var(--brand-blue);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
}

.home-side-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.home-side-section > span {
  grid-column: 1 / -1;
  padding: 0 4px 5px;
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-side-section a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 11px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.68);
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.home-side-section a:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 18%, transparent);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.home-side-contact {
  display: grid;
  gap: 5px;
  margin-top: auto;
  border: 1px solid color-mix(in srgb, var(--brand-blue) 14%, transparent);
  border-radius: 16px;
  padding: 15px 16px;
  background: linear-gradient(135deg, var(--brand-blue-soft), #f8fafc);
  color: var(--brand-blue);
  text-decoration: none;
}

.home-side-contact small {
  color: #64748b;
  font-size: 11px;
  font-weight: 650;
}

.home-side-contact strong {
  font-size: 13px;
  font-weight: 850;
}

.home-page main {
  padding-top: 38px;
}

.home-banner {
  width: min(1180px, calc(100% - 48px));
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 42px;
  margin: 0 auto 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  padding: clamp(38px, 5vw, 68px);
  background:
    radial-gradient(circle at 82% 18%, rgba(83, 196, 255, 0.34), transparent 26%),
    radial-gradient(circle at 72% 104%, rgba(250, 191, 75, 0.23), transparent 34%),
    linear-gradient(125deg, var(--brand-blue) 0%, var(--brand-blue) 51%, var(--brand-blue) 100%);
  box-shadow: 0 28px 70px rgba(20, 89, 140, 0.2);
  isolation: isolate;
}

.home-banner::after {
  background:
    linear-gradient(112deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62.2% 62.7%, transparent 63%),
    radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.09), transparent 23%);
}

.home-banner-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: start;
  gap: 20px;
}

.home-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-blue-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-banner-kicker::before {
  content: '';
  width: 25px;
  height: 2px;
  border-radius: 99px;
  background: #f4b23f;
}

.home-banner h1 {
  color: #fff;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 750;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.home-banner h1 em {
  color: #f8c35f;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.home-banner-copy p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 17px;
  line-height: 1.6;
}

.home-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.home-banner-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.home-banner-primary {
  gap: 14px;
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 12px 25px rgba(2, 35, 59, 0.16);
}

.home-banner-primary span {
  font-size: 19px;
  transition: transform 0.18s ease;
}

.home-banner-primary:hover span {
  transform: translateX(3px);
}

.home-banner-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.home-banner-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-banner-visual {
  position: relative;
  z-index: 2;
  min-height: 340px;
}

.home-banner-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.home-banner-orbit-one {
  width: 310px;
  height: 310px;
  top: 12px;
  right: 4px;
}

.home-banner-orbit-two {
  width: 230px;
  height: 230px;
  top: 52px;
  right: 44px;
  border-style: dashed;
}

.home-product-card {
  position: absolute;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border-radius: 13px;
  padding: 22px;
  box-shadow: 0 22px 42px rgba(4, 38, 64, 0.25);
}

.home-product-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-product-card strong {
  font-size: 23px;
  line-height: 1.05;
}

.home-product-card small {
  font-size: 10px;
  font-weight: 700;
}

.home-product-card-paper {
  width: 195px;
  height: 265px;
  top: 34px;
  left: 6px;
  background:
    linear-gradient(135deg, transparent 0 72%, color-mix(in srgb, var(--brand-blue) 08%, transparent) 72%),
    #fff;
  color: var(--brand-blue);
  transform: rotate(-7deg);
}

.home-product-card-school {
  width: 176px;
  height: 230px;
  right: 8px;
  bottom: 7px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.35) 0 11%, transparent 11.5%),
    linear-gradient(145deg, #f5bd4d, #ed8b45);
  color: #fff;
  transform: rotate(8deg);
}

.home-banner-badge {
  position: absolute;
  z-index: 3;
  right: 118px;
  bottom: 20px;
  width: 92px;
  height: 92px;
  display: grid;
  align-content: center;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(4, 38, 64, 0.25);
  transform: rotate(-8deg);
}

.home-banner-badge strong {
  font-size: 16px;
}

.home-banner-badge span {
  font-size: 10px;
}

.home-page .category-band,
.home-page .home-price-spotlight,
.home-page .store-band,
.home-page .content-band,
.home-page .panel-hub,
.home-page .contact-band {
  padding-right: max(clamp(18px, 5vw, 70px), calc((100% - 1180px) / 2));
  padding-left: max(clamp(18px, 5vw, 70px), calc((100% - 1180px) / 2));
}

.home-price-spotlight {
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: clamp(48px, 8vw, 88px);
}

.home-price-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--brand-blue) 16%, transparent), transparent 42%),
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue) 52%, var(--brand-blue) 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(11, 79, 122, 0.22);
}

.home-price-spotlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-price-spotlight-copy h2 {
  margin: 1rem 0 0.875rem;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.08;
}

.home-price-spotlight-copy h2 em {
  font-style: normal;
  color: var(--brand-blue-soft-strong);
}

.home-price-spotlight-copy > p {
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.home-price-steps {
  list-style: none;
  display: grid;
  gap: 0.875rem;
  margin: 1.75rem 0 1.25rem;
  padding: 0;
}

.home-price-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.home-price-step-no {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.home-price-steps strong {
  display: block;
  margin-bottom: 0.15rem;
}

.home-price-steps small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.home-price-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.home-price-note a {
  color: #fff;
  font-weight: 700;
  text-underline-offset: 0.15em;
}

.home-price-spotlight-visual {
  position: relative;
  min-height: 360px;
}

.home-price-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 280px);
  margin: 0 auto;
  padding: 12px 10px 16px;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.35);
}

.home-price-phone-notch {
  width: 84px;
  height: 8px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #334155;
}

.home-price-phone-screen {
  border-radius: 20px;
  background: #f8fbfd;
  color: #1f314b;
  padding: 16px 14px;
}

.home-price-phone-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.home-price-phone-scan {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 18px 12px;
  margin-bottom: 12px;
  border: 1px dashed color-mix(in srgb, var(--brand-blue) 35%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand-blue) 08%, transparent);
}

.home-price-phone-scan span {
  width: 54px;
  height: 54px;
  border: 2px solid var(--brand-blue);
  border-radius: 10px;
  position: relative;
}

.home-price-phone-scan span::before,
.home-price-phone-scan span::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-top: 2px solid var(--brand-blue);
  animation: home-price-scan 1.8s ease-in-out infinite;
}

.home-price-phone-scan small {
  font-size: 0.75rem;
  color: #5b6b7f;
}

.home-price-phone-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #e6ebf1;
  font-size: 0.8125rem;
}

.home-price-phone-item em {
  font-style: normal;
  font-weight: 800;
  color: var(--brand-blue);
  white-space: nowrap;
}

.home-price-phone-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 0.875rem;
}

.home-price-phone-total strong {
  font-size: 1.125rem;
  color: var(--brand-blue);
}

.home-price-qr-card {
  position: absolute;
  right: 0;
  top: 18px;
  width: 118px;
  padding: 14px 12px;
  border-radius: 16px;
  background: #fff;
  color: var(--brand-blue);
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
  transform: rotate(8deg);
}

.home-price-qr-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand-blue) 12%, transparent);
  font-size: 1.25rem;
}

.home-price-qr-card strong {
  display: block;
  font-size: 0.9375rem;
}

.home-price-qr-card small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  color: #5b6b7f;
}

@keyframes home-price-scan {
  0%, 100% { transform: translateY(-8px); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 1; }
}

@media (max-width: 980px) {
  .home-price-spotlight-inner {
    grid-template-columns: 1fr;
  }

  .home-price-spotlight-visual {
    min-height: 320px;
  }

  .home-price-qr-card {
    right: 12px;
  }

  .home-search-row {
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
    padding: 16px 18px;
  }

  .home-shop-logo {
    justify-self: start;
  }

  .home-main-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .home-shop-actions {
    justify-content: flex-end;
  }

  .site-header.home-category-strip {
    min-height: 56px;
    padding: 0 18px;
  }

  .home-category-strip nav {
    min-height: 56px;
    gap: 25px;
  }

  .home-category-strip nav a {
    min-height: 56px;
    font-size: 14px;
  }

  .home-side-menu {
    top: 0;
    width: min(348px, calc(100vw - 18px));
    min-height: 100vh;
    grid-template-columns: none;
    margin: 0;
    padding: 16px;
    transform: translateX(-102%);
  }

  .home-side-menu.is-open {
    transform: translateX(0);
  }

  .home-page main {
    padding-top: 26px;
  }

  .home-banner {
    width: min(720px, calc(100% - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    border-radius: 22px;
    padding: 42px;
  }

  .home-banner-copy {
    max-width: 620px;
  }

  .home-banner-visual {
    width: min(100%, 430px);
    min-height: 305px;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .home-search-row {
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    padding: 13px 14px;
  }

  .home-shop-logo-mark {
    width: 40px;
    height: 40px;
  }

  .home-list-link {
    display: none;
  }

  .home-category-strip nav {
    gap: 22px;
  }

  .home-category-toggle {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 8px 0 12px var(--brand-blue);
  }

  .home-page .home-category-strip .home-price-link {
    margin-left: 0;
  }

  .home-page main {
    padding-top: 18px;
  }

  .home-banner {
    width: calc(100% - 24px);
    gap: 22px;
    border-radius: 18px;
    padding: 30px 24px;
  }

  .home-banner h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .home-banner-copy p {
    font-size: 15px;
  }

  .home-banner-actions {
    width: 100%;
  }

  .home-banner-actions a {
    width: 100%;
  }

  .home-banner-visual {
    min-height: 250px;
  }

  .home-banner-orbit-one {
    width: 240px;
    height: 240px;
  }

  .home-banner-orbit-two {
    width: 180px;
    height: 180px;
  }

  .home-product-card-paper {
    width: 150px;
    height: 205px;
    padding: 16px;
  }

  .home-product-card-school {
    width: 136px;
    height: 180px;
    padding: 16px;
  }

  .home-product-card strong {
    font-size: 18px;
  }

  .home-banner-badge {
    right: 88px;
    bottom: 2px;
    width: 76px;
    height: 76px;
    border-width: 4px;
  }
}

/* Ürün kataloğu: sakin marka ve arama başlığı */
.catalog-body {
  background: #f6f8fb;
}

.catalog-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(280px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 12px clamp(18px, 3.5vw, 50px);
  border-bottom: 1px solid #e7ecf1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(31, 49, 75, 0.06);
  backdrop-filter: blur(16px);
}

.catalog-site-header .site-mark {
  gap: 9px;
  color: #24364a;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.catalog-site-header .site-mark::before {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  box-shadow: 0 6px 14px rgba(0, 126, 190, 0.18);
}

.catalog-site-header .site-header-search {
  width: 100%;
  max-width: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  order: 0;
  padding: 4px;
  border: 1px solid #dce4ec;
  border-radius: 11px;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.catalog-site-header .site-header-search:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 143, 213, 0.09);
}

.catalog-site-header .site-header-search input {
  height: 38px;
  padding: 0 11px;
  border-radius: 8px;
  background: #f7f9fb;
  color: #24364a;
  font-size: 15px;
}

.catalog-site-header .site-header-search input::placeholder {
  color: #8a98a8;
}

.catalog-site-header .site-header-search button {
  height: 38px;
  border-radius: 8px;
  padding: 0 15px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.catalog-site-header .site-header-search button:hover {
  background: var(--brand-blue);
}

.catalog-site-header > nav {
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(10px, 1.2vw, 17px);
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-site-header > nav::-webkit-scrollbar {
  display: none;
}

.catalog-site-header > nav a {
  flex: 0 0 auto;
  color: #5b6979;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.catalog-site-header > nav a:hover,
.catalog-site-header > nav a.is-active {
  color: var(--brand-blue);
}

.catalog-site-header > nav .nav-action {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 9px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  box-shadow: none;
}

.catalog-site-header > nav .nav-action:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.catalog-body .catalog-page {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.catalog-body .catalog-hero {
  margin-bottom: 20px;
  padding: clamp(24px, 3.5vw, 36px);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.95)),
    #fff;
  box-shadow: 0 12px 32px rgba(31, 49, 75, 0.06);
}

.catalog-body .catalog-hero .eyebrow {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: none;
}

.catalog-body .catalog-hero h1 {
  color: #1f2d3d;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.catalog-body .catalog-hero p {
  max-width: 650px;
  color: #627184;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .catalog-site-header {
    grid-template-columns: auto minmax(280px, 1fr);
    gap: 10px 18px;
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .catalog-site-header > nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 8px;
    border-top: 1px solid #eef1f4;
  }
}

@media (max-width: 620px) {
  .catalog-site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px 12px;
    padding: 9px 12px 8px;
  }

  .catalog-site-header .site-mark {
    gap: 7px;
    font-size: 14px;
  }

  .catalog-site-header .site-mark::before {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }

  .catalog-site-header .site-header-search {
    min-width: 0;
    max-width: none;
    flex-basis: auto;
  }

  .catalog-site-header .site-header-search input {
    min-width: 0;
    height: 36px;
    font-size: 16px;
  }

  .catalog-site-header .site-header-search button {
    height: 36px;
    padding: 0 11px;
  }

  .catalog-site-header > nav {
    gap: 19px;
    padding-top: 7px;
  }

  .catalog-site-header > nav a {
    font-size: 12px;
  }

  .catalog-body .catalog-page {
    padding-top: 24px;
  }

  .catalog-body .catalog-hero {
    padding: 22px;
  }

  .catalog-body .catalog-hero h1 {
    font-size: 38px;
  }

  .catalog-body .catalog-hero p {
    font-size: 15px;
  }
}

/* Okul sezonu landing page */
.season-page {
  background: var(--page);
}

.season-container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.season-shell {
  padding-top: 0;
}

.season-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.season-btn:hover {
  transform: translateY(-2px);
}

.season-btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.season-btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.season-btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.season-btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}

.season-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.season-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--brand-blue) 35%, transparent);
}

.season-btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.season-btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.season-hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.season-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, color-mix(in srgb, var(--brand-blue) 14%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(244, 178, 63, 0.12) 0%, transparent 50%),
    var(--page);
  z-index: 0;
}

.season-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.season-hero-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--brand-blue) 12%, transparent);
  color: var(--accent-strong);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.season-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.season-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.season-hero-desc {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.season-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.season-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.season-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.season-stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

.season-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.season-section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.season-section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.season-section-header p {
  color: var(--muted);
  font-size: 1.0625rem;
}

.season-tabs,
.assistant-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  width: fit-content;
  max-width: 100%;
}

.season-tab,
.assistant-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.season-tab.is-active,
.assistant-tab.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-blue) 22%, transparent);
}

.season-tab-panel[hidden],
.assistant-panel[hidden] {
  display: none !important;
}

.assistant-page {
  background: var(--page);
}

.assistant-page #sohbet-widget-toggle,
.assistant-page #sohbet-widget-panel,
.assistant-page #ai-widget-toggle,
.assistant-page #ai-widget-panel {
  display: none !important;
}

.assistant-shell {
  padding-top: 0;
}

.assistant-container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.assistant-hero {
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--brand-blue) 14%, transparent), transparent 40%),
    linear-gradient(180deg, var(--brand-blue-soft) 0%, #f8fbfd 100%);
}

.assistant-hero-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.assistant-badge,
.season-hero-badge.assistant-badge,
.eyebrow.assistant-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-blue) 12%, transparent);
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--brand-blue) 22%, transparent);
}

.assistant-hero-copy h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
}

.assistant-hero-copy p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.assistant-hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.assistant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.assistant-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-blue) 24%, transparent);
}

.assistant-btn-secondary {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--brand-blue) 35%, transparent);
}

.assistant-panel {
  padding: 0 0 72px;
}

.assistant-panel-head {
  margin-bottom: 1.5rem;
}

.assistant-panel-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

.assistant-panel-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.assistant-panel-head p {
  color: var(--muted);
  max-width: 42rem;
}

.product-ai-panel {
  padding-top: 0;
}

.product-ai-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.product-ai-intro {
  position: sticky;
  top: 118px;
  padding-top: 1rem;
}

.product-ai-intro h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.product-ai-intro > p {
  color: var(--muted);
  line-height: 1.65;
}

.product-ai-prompts {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.product-ai-prompts button {
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.product-ai-prompts button:hover,
.product-ai-prompts button:focus-visible {
  border-color: var(--brand-blue-border);
  background: var(--brand-blue-soft);
}

.product-ai-chat {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 49, 75, 0.12);
}

.product-ai-status {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 0.7rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.product-ai-status > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.1rem;
}

.product-ai-status strong {
  font-size: 0.92rem;
}

.product-ai-status small,
.product-ai-note {
  color: var(--muted);
  font-size: 0.75rem;
}

.product-ai-messages {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 330px;
  max-height: 520px;
  overflow-y: auto;
  padding: 1.1rem;
  background: linear-gradient(180deg, var(--brand-blue-soft) 0, #fff 110px);
}

.product-ai-bubble {
  width: fit-content;
  max-width: 88%;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-line;
}

.product-ai-bubble.is-assistant {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.product-ai-bubble.is-user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--brand-blue);
  color: #fff;
}

.product-ai-products {
  display: grid;
  gap: 0.65rem;
}

.product-ai-product {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.product-ai-product:hover,
.product-ai-product:focus-visible {
  border-color: var(--brand-blue-border);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-blue) 12%, transparent);
  outline: none;
}

.product-ai-product-image {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 9px;
  background: #f8fafc;
  color: var(--brand-blue);
  font-weight: 800;
}

.product-ai-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-ai-product-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.product-ai-product-copy strong {
  font-size: 0.84rem;
  line-height: 1.35;
}

.product-ai-product-copy small {
  color: var(--ink);
  font-weight: 800;
}

.product-ai-product-copy span {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-ai-product .shop-add-cart {
  min-height: 34px;
  padding-inline: 0.75rem;
  font-size: 0.75rem;
}

.product-ai-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.6rem;
  border-top: 1px solid var(--line);
}

.product-ai-form textarea {
  width: 100%;
  min-height: 88px;
  resize: vertical;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.product-ai-form textarea:focus {
  border-color: var(--brand-blue);
  outline: 3px solid color-mix(in srgb, var(--brand-blue) 18%, transparent);
}

.product-ai-form button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-blue);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.product-ai-form button:hover {
  filter: brightness(0.94);
}

.product-ai-note {
  display: block;
  padding: 0 1.1rem 1rem;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .product-ai-shell {
    grid-template-columns: 1fr;
  }

  .product-ai-intro {
    position: static;
  }
}

@media (max-width: 520px) {
  .product-ai-messages {
    min-height: 300px;
    max-height: 62vh;
    padding: 0.8rem;
  }

  .product-ai-product {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .product-ai-product-image {
    width: 54px;
    height: 54px;
  }

  .product-ai-product .shop-add-cart {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.liste-shell-embedded {
  padding: 0;
}

.season-list-panel {
  padding: 0 0 80px;
  background: #f8fbfe;
}

.season-list-panel .school-shell-embedded {
  padding: 0;
}

.season-list-panel .school-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.season-packages {
  padding: 80px 0;
  background: #fff;
}

.season-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.season-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

.season-price-block small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.season-package-link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent-strong);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.season-editor {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--page);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
}

.season-editor-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.season-editor-close {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.season-editor-lines {
  display: grid;
  gap: 1rem;
}

.season-line {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.season-line.is-open {
  border-color: color-mix(in srgb, var(--brand-blue) 45%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-blue) 08%, transparent);
}

.season-line-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto auto;
  gap: 0.875rem;
  align-items: center;
  padding: 0.875rem 1rem;
}

.season-line-main {
  min-width: 0;
}

.season-line-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.season-line-title strong {
  font-size: 0.9375rem;
}

.season-line-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--page);
  cursor: pointer;
  flex-shrink: 0;
}

.season-line-toggle-icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent-strong);
  transition: transform 0.2s ease;
}

.season-line-toggle.is-open .season-line-toggle-icon {
  transform: rotate(180deg);
}

.season-line-product {
  display: block;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.35;
}

.season-line-price {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.season-line-remove {
  border: 1px solid #f3d0cd;
  background: #fff5f5;
  color: #b42318;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

.season-line-dropdown {
  border-top: 1px solid var(--line);
  background: #f8fbfe;
  padding: 0.75rem 1rem 1rem;
}

.season-line-dropdown-head {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.625rem;
}

.season-line-image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--page);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.season-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.season-qty button,
.season-qty input {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  min-height: 34px;
}

.season-qty button {
  width: 34px;
  cursor: pointer;
}

.season-qty input {
  width: 52px;
  text-align: center;
  font-size: 16px;
}

.season-alt-list {
  display: grid;
  gap: 0.5rem;
}

.season-alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.875rem;
}

.season-alt.is-selected {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--brand-blue) 08%, transparent);
}

.season-alt-info strong {
  display: block;
  font-size: 0.875rem;
}

.season-alt-info small {
  color: var(--muted);
  font-size: 0.8125rem;
}

.season-alt-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
}

.season-alt-add {
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.season-alt-add:hover {
  background: var(--accent);
  color: #fff;
}

.season-editor-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  align-self: start;
  position: sticky;
  top: 1rem;
}

.season-pay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.season-pay-tab {
  border: 1px solid var(--line);
  background: var(--page);
  border-radius: 999px;
  padding: 0.625rem 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.season-pay-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.season-total-rows {
  display: grid;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.season-total-rows div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.season-total-final {
  padding-top: 0.625rem;
  border-top: 1px solid var(--line);
  font-size: 1.0625rem;
}

.season-editor-wa {
  width: 100%;
  margin-bottom: 0.75rem;
}

.season-package-card {
  position: relative;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.season-package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.season-package-card.is-featured {
  background: linear-gradient(160deg, color-mix(in srgb, var(--brand-blue) 08%, transparent) 0%, var(--page) 100%);
  border-color: var(--accent);
}

.season-package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #fff;
  color: var(--muted);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.season-package-badge.is-popular {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.season-package-icon {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
}

.season-package-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.season-package-card > p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.season-package-list {
  flex: 1;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.season-package-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.35rem 0 0.35rem 1.125rem;
  position: relative;
}

.season-package-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
  font-size: 0.75rem;
}

.season-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.season-price {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--ink);
}

.season-custom-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent-strong) 100%);
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 18px;
}

.season-custom-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.season-custom-banner p {
  font-size: 0.9375rem;
  opacity: 0.85;
  max-width: 480px;
}

.season-features {
  padding: 64px 0;
}

.season-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.season-feature {
  text-align: center;
  padding: 1rem;
}

.season-feature-icon {
  display: inline-block;
  font-size: 1.75rem;
  margin-bottom: 0.625rem;
}

.season-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.season-feature p {
  font-size: 0.875rem;
  color: var(--muted);
}

.season-location {
  padding: 80px 0;
  background: #fff;
}

.season-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.season-location-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.season-location-info > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.season-location-address-full {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--brand-blue) 08%, transparent);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
}

.season-address-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  font-style: normal;
}

.season-address-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.season-address-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.season-address-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.season-address-item p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink);
}

.season-address-item a {
  color: var(--accent-strong);
}

.season-map-wrapper {
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.season-wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}

.season-wa-float svg {
  width: 28px;
  height: 28px;
}

.season-wa-float:hover {
  transform: scale(1.08);
  color: #fff;
}

@media (max-width: 960px) {
  .season-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .season-editor {
    grid-template-columns: 1fr;
  }

  .season-editor-summary {
    position: static;
  }

  .season-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .season-location-grid {
    grid-template-columns: 1fr;
  }

  .season-map-wrapper {
    height: 300px;
  }

  .season-custom-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }
}

@media (max-width: 640px) {
  .season-package-grid {
    grid-template-columns: 1fr;
  }

  .season-hero {
    padding: 32px 0 56px;
  }

  .season-hero-actions {
    flex-direction: column;
  }

  .season-hero-actions .season-btn {
    width: 100%;
  }

  .season-hero-stats {
    flex-direction: column;
    gap: 0.875rem;
  }

  .season-features-grid {
    grid-template-columns: 1fr;
  }

  .season-packages,
  .season-location {
    padding: 56px 0;
  }

  .season-line-row {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "image main"
      "qty remove";
  }

  .season-line-image {
    grid-area: image;
    width: 48px;
    height: 48px;
  }

  .season-line-main {
    grid-area: main;
  }

  .season-qty {
    grid-area: qty;
    justify-self: start;
  }

  .season-line-remove {
    grid-area: remove;
    justify-self: end;
  }
}
