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

:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #68768a;
  --line: #dce5ef;
  --surface: #ffffff;
  --page: #f3f7fb;
  --accent: #00aeef;
  --accent-strong: #0284c7;
  --warm: #f4b23f;
  --blue: #2563eb;
  --coral: #ef6f5e;
  --leaf: #38bdf8;
  --danger: #b42318;
  --success: #0369a1;
  --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: #0075de;
  --notion-primary-hover: #005bab;
}

* {
  box-sizing: border-box;
}

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: 50%;
}

.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: #3d95ee;
  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 rgba(0, 174, 239, 0.25);
}

.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 rgba(0, 174, 239, 0.24);
}

.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, rgba(0, 174, 239, 0.08), 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 rgba(0, 174, 239, 0.22);
}

.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 #3d95ee;
  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: #3d95ee;
  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: #3d95ee;
  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: #3d95ee;
  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%, rgba(0,174,239,0.14), 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, rgba(0,174,239,0.14), 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: rgba(0,174,239,0.55) 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: rgba(0,174,239,0.58);
  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, #0f3471 0%, #0b58aa 100%);
  color: #fff;
  border-color: #0f3471;
  font-size: clamp(17px, 2vw, 24px);
  text-transform: uppercase;
}

.brand-sudor {
  background:
    linear-gradient(90deg, #d71920 0 18%, #9b5de5 18% 36%, #00a6fb 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: #1954a6;
  border-color: #1954a6;
  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: #1f67b1;
  border-color: #cadcf3;
  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: #1556a7;
  border-color: #f1c232;
  text-transform: uppercase;
}

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

.brand-cassa {
  background: #0d5fb7;
  color: #fff;
  border-color: #0d5fb7;
  text-transform: uppercase;
}

.brand-pensan {
  background: #fff;
  color: #123b86;
  border-color: #123b86;
  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, #f7fbff);
  color: #183b74;
  border-color: #183b74;
  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: #123b86;
  border-color: #c8d5ea;
  text-transform: uppercase;
  font-size: clamp(18px, 2.1vw, 26px);
}

.brand-varta {
  background: #0b4aa2;
  color: #fff;
  border-color: #f5c400;
  border-bottom: 5px solid #f5c400;
  text-transform: uppercase;
}

.brand-philips {
  background: #fff;
  color: #1554a3;
  border-color: #1554a3;
  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 {
  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);
}

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

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

.category-band article 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, rgba(0, 174, 239, 0.08), 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: #7dd3fc;
  transform: translateY(-1px);
}

.panel-hub-grid span {
  width: 38px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e0f2fe;
  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: #193a8a;
}

.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 #7dd3fc;
  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 #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
}

.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: #075985;
  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 #bfdbfe;
  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 #bfdbfe;
  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, rgba(0, 174, 239, 0.12), 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 #93c5fd;
  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: #e0f2fe;
  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: #075985;
}

.school-price-box {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  background: #eff6ff;
}

.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: #e0f2fe;
  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 #93c5fd;
  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 rgba(2,132,199,0.35);
  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;
  }
}

.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: #075985;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-categories a:hover,
.catalog-categories a.is-active {
  border-color: #7dd3fc;
  background: #e0f2fe;
  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;
}

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

.catalog-image {
  position: relative;
  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;
}

.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-photo-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  z-index: 1;
}

.catalog-photo-badge.has-photo {
  background: rgba(22, 113, 58, 0.92);
  color: #fff;
}

.catalog-photo-badge.no-photo {
  background: rgba(161, 40, 40, 0.92);
  color: #fff;
}

.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-info span {
  color: var(--success);
  font-size: 20px;
  font-weight: 800;
}

.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: #1d4ed8;
}

.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: #eff6ff;
  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: #eff6ff;
  color: #1d4ed8;
}

.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;
}

.sale-card:hover {
  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: #eff6ff;
  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-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 #bfdbfe;
  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: #93c5fd;
  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;
}

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

.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);
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr);
  background: var(--notion-soft);
  color: var(--notion-ink);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  align-self: start;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px 10px;
  border-right: 1px solid var(--notion-line);
  background: #fff;
}

.admin-sidebar-mark {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 0;
  border-radius: 5px;
  color: var(--notion-ink);
  text-decoration: none;
}

.admin-sidebar-mark span {
  color: var(--notion-muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-sidebar-mark strong {
  font-size: 19px;
  line-height: 1.1;
}

.admin-sidebar-nav {
  display: grid;
  gap: 2px;
}

.admin-sidebar-nav a {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--notion-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.is-active {
  background: var(--notion-hover);
  color: var(--notion-ink);
}

.admin-sidebar-nav a.is-active {
  box-shadow: inset 3px 0 0 var(--notion-primary);
}

.admin-content {
  min-width: 0;
  width: min(100%, 1160px);
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 3vw, 34px);
}

.admin-content > .panel,
.admin-content > .depo-panel,
.admin-content > .photo-panel {
  width: 100%;
}

.admin-content-head .brand {
  margin-bottom: 0;
}

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

.admin-content-head .brand small {
  color: var(--notion-muted);
  font-size: 14px;
  font-weight: 650;
}

.admin-return-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid var(--notion-line);
  border-radius: 6px;
  background: #fff;
  color: var(--notion-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

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

.admin-layout .panel,
.admin-layout .depo-panel,
.admin-layout .photo-panel,
.admin-layout .patron-panel,
.admin-layout .payment-panel {
  border-color: var(--notion-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.admin-layout .brand span {
  color: var(--notion-muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-layout .brand strong {
  color: var(--notion-ink);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.admin-layout h2 {
  font-size: 24px;
}

.admin-layout .result,
.admin-layout .alert,
.admin-layout .makrocell-admin,
.admin-layout .invoice-admin,
.admin-layout .manual-admin,
.admin-layout .product-list-admin,
.admin-layout .payment-accordion,
.admin-layout .patron-section {
  border-color: var(--notion-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.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: #e0f2fe;
  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]),
select,
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;
}

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;
}

.admin-layout input[type='text'],
.admin-layout input[type='password'],
.admin-layout input[type='date'],
.admin-layout input[type='search'],
.admin-layout input:not([type]),
.admin-layout select,
.admin-layout textarea {
  min-height: 38px;
  border-color: var(--notion-line);
  border-radius: 4px;
  background: #fff;
  color: var(--notion-ink);
  font-size: 15px;
}

.admin-layout input[type='file'] {
  min-height: 40px;
  border-color: var(--notion-line);
  border-radius: 8px;
  background: var(--notion-soft);
  font-size: 14px;
}

.admin-layout input:focus,
.admin-layout textarea:focus,
.admin-layout select:focus {
  outline: 2px solid rgba(0, 117, 222, 0.18);
  border-color: #82bdf0;
}

.admin-layout label {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 600;
}

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;
}

.admin-layout button,
.admin-layout .admin-link {
  min-height: 38px;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--notion-ink);
  font-size: 15px;
  font-weight: 500;
  box-shadow: none;
}

.admin-layout button[type='submit'],
.admin-layout .admin-link:not(.secondary-button):not(.table-link),
.admin-layout .depo-real-stock-button {
  border-color: var(--notion-primary);
  background: var(--notion-primary);
  color: #fff;
}

.admin-layout button:hover,
.admin-layout .admin-link:hover,
.admin-layout .secondary-button:hover {
  border-color: #d6d2cc;
  background: var(--notion-hover);
  color: var(--notion-ink);
}

.admin-layout button[type='submit']:hover,
.admin-layout .admin-link:not(.secondary-button):not(.table-link):hover,
.admin-layout .depo-real-stock-button:hover {
  border-color: var(--notion-primary-hover);
  background: var(--notion-primary-hover);
  color: #fff;
}

.admin-layout .danger-button,
.admin-layout .mini-danger {
  border-color: #f0d1c6;
  background: #fff4ef;
  color: #dd5b00;
}

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

button:active,
.admin-link:active,
button[aria-pressed='true'],
.admin-link[aria-current='page'] {
  background: #075985;
}

.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;
}

.admin-shortcuts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.admin-icon-shortcuts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.admin-icon-shortcuts .admin-link {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
}

.patron-page .app-shell {
  align-items: start;
  padding: clamp(14px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.09), transparent 34rem),
    linear-gradient(135deg, transparent 42%, rgba(244, 178, 63, 0.14)),
    #f5f8fb;
}

.payment-page .app-shell {
  align-items: start;
  padding: clamp(14px, 3vw, 34px);
}

.patron-panel {
  border-color: #d7e1ec;
  box-shadow: 0 24px 70px rgba(23, 37, 52, 0.13);
}

.payment-panel {
  display: grid;
  gap: 14px;
  width: min(100%, 1040px);
  border-color: #d7e1ec;
  box-shadow: 0 24px 70px rgba(23, 37, 52, 0.13);
}

.payment-accordion {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.payment-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 16px;
  cursor: pointer;
  color: #075985;
  font-weight: 900;
  list-style: none;
}

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

.payment-accordion > summary::before {
  content: '▸';
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0284c7;
}

.payment-accordion[open] > summary::before {
  content: '▾';
  background: #0ea5e9;
  color: #fff;
}

.payment-accordion > summary span {
  flex: 1;
  min-width: 0;
  font-size: 18px;
}

.payment-accordion > summary strong {
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.payment-accordion > :not(summary) {
  margin-left: 14px;
  margin-right: 14px;
}

.payment-accordion > :last-child {
  margin-bottom: 14px;
}

.payment-accordion-toolbar {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.patron-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
}

.patron-header .brand {
  margin-bottom: 0;
}

.patron-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.patron-report-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f1f5f9;
}

.patron-report-switch > span {
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.patron-report-switch a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border-radius: 7px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.patron-report-switch a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.patron-report-switch a.is-active {
  background: #fff;
  color: #075985;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.patron-inline-filter {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 12px;
  border-radius: 9px;
  background: #f8fafc;
}

.patron-inline-filter label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.patron-inline-filter input {
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
}

.patron-inline-filter button {
  min-height: 42px;
}

.patron-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.patron-status span {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.patron-status .is-online {
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(21, 115, 71, 0.12);
}

.patron-status .is-offline {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(180, 35, 24, 0.12);
}

.patron-status .is-ready {
  background: #0284c7;
  box-shadow: 0 0 0 5px rgba(2, 132, 199, 0.12);
}

.patron-status strong {
  font-size: 14px;
}

.patron-status small {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.patron-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.patron-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  box-shadow: 0 12px 26px rgba(31, 49, 75, 0.06);
}

.patron-grid .primary-metric {
  grid-column: span 2;
  background:
    linear-gradient(135deg, #00aeef, var(--accent));
  color: #fff;
}

.patron-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.patron-grid strong {
  color: var(--accent);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1;
}

.patron-grid small {
  color: var(--muted);
  line-height: 1.35;
}

.patron-grid .primary-metric span,
.patron-grid .primary-metric small {
  color: rgba(255, 255, 255, 0.74);
}

.patron-grid .primary-metric strong {
  color: #fff;
  font-size: clamp(31px, 4vw, 44px);
}

.patron-section {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.patron-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.patron-section-title div {
  display: grid;
  gap: 8px;
}

.section-pill {
  width: fit-content;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid #7dd3fc;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.patron-section-title h2 {
  font-size: 22px;
  line-height: 1.15;
}

.section-meta {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #075985;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.patron-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.patron-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.patron-table th,
.patron-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.patron-table th {
  background: #f6f9fc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.patron-table tbody tr:hover {
  background: #f8fbfd;
}

.patron-table td:last-child {
  color: var(--success);
  font-weight: 900;
  text-align: right;
}

.patron-table tfoot td {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 900;
}

.stock-badge {
  display: inline-grid;
  min-width: 44px;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #fff7ed;
  color: #b45309;
  font-weight: 900;
}

.table-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.table-link:hover {
  text-decoration: underline;
}

.patron-footnote {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.patron-sales-report {
  gap: 18px;
}

.patron-sales-report [hidden] {
  display: none !important;
}

.patron-sales-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 10px;
  background: #f6f9fc;
}

.patron-sales-intro p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.patron-sales-intro button {
  flex: 0 0 auto;
}

.sales-report-progress {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #f8fafc;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
}

.sales-report-progress.is-loading {
  border-color: #7dd3fc;
  background: #f0f9ff;
  color: #075985;
}

.sales-report-progress.is-success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.sales-report-progress.is-error {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
}

.sales-report-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sales-report-metrics article {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.sales-report-metrics span,
.sales-report-metrics small {
  color: var(--muted);
}

.sales-report-metrics span {
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.sales-report-metrics strong {
  color: var(--accent);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.1;
}

.sales-report-metrics .sales-leader-card {
  background: linear-gradient(135deg, #075985, #0284c7);
}

.sales-report-metrics .sales-leader-card span,
.sales-report-metrics .sales-leader-card small {
  color: rgba(255, 255, 255, 0.76);
}

.sales-report-metrics .sales-leader-card strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.sales-month-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.sales-month-grid article {
  display: grid;
  gap: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.sales-month-grid article > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}

.sales-month-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.sales-month-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.sales-month-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00aeef, #075985);
}

.sales-product-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.sales-product-toolbar h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.sales-product-toolbar small,
.sales-product-toolbar label span {
  color: var(--muted);
}

.sales-product-toolbar label {
  display: grid;
  width: min(100%, 330px);
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.sales-product-toolbar input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.sales-product-table td:nth-child(n + 4) {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.sales-product-table td:last-child {
  color: var(--success);
}

.sales-empty-cell {
  padding: 28px !important;
  color: var(--muted) !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .sales-report-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .patron-report-switch > span {
    display: none;
  }

  .patron-inline-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .patron-sales-intro,
  .sales-product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .patron-sales-intro button,
  .sales-product-toolbar label {
    width: 100%;
  }

  .sales-report-metrics {
    grid-template-columns: 1fr;
  }

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

.payment-voice-box,
.payment-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.payment-command-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.payment-command-row button {
  min-width: 118px;
}

.payment-command-row button.is-listening {
  background: var(--danger);
}

.payment-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-quick button {
  min-height: 38px;
  padding: 0 12px;
  background: #e0f2fe;
  color: #075985;
  font-size: 14px;
}

.payment-quick button:hover {
  background: #bae6fd;
}

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

.payment-form label {
  display: grid;
  gap: 7px;
}

.payment-note-toggle {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.payment-note-toggle summary {
  min-height: 42px;
  padding: 10px 12px;
  cursor: pointer;
  color: #075985;
  font-weight: 900;
  list-style: none;
}

.payment-note-toggle summary::-webkit-details-marker {
  display: none;
}

.payment-note-toggle summary::before {
  content: '+ ';
}

.payment-note-toggle[open] summary::before {
  content: '- ';
}

.payment-note-toggle label {
  padding: 0 12px 12px;
}

.mini-danger {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 800;
}

.mini-secondary {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  background: #e0f2fe;
  color: #075985;
  font-weight: 800;
}

.inline-report-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-report-form input,
.inline-report-form button {
  min-height: 38px;
  font-size: 16px;
}

.report-cards,
.expense-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.report-cards div,
.expense-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.report-cards small,
.expense-grid small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
}

.report-cards strong,
.expense-grid strong {
  font-size: 18px;
}

.expense-breakdown {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.expense-breakdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 900;
  color: #075985;
}

.expense-breakdown summary strong {
  white-space: nowrap;
  color: var(--ink);
}

.expense-breakdown .expense-grid {
  margin: 0;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.compact-report {
  min-width: 0;
}

.compact-report td,
.compact-report th {
  white-space: normal;
}

.payment-day-detail summary {
  cursor: pointer;
  color: #075985;
  font-weight: 900;
}

.payment-day-entries {
  display: grid;
  gap: 8px;
  min-width: min(560px, 82vw);
  margin-top: 10px;
}

.payment-day-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.payment-day-entry div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-day-entry span {
  color: var(--muted);
  font-size: 13px;
}

.payment-history-list {
  display: grid;
  gap: 9px;
}

.payment-history-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.payment-history-item summary {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
}

.payment-history-item summary span {
  color: var(--muted);
  font-weight: 800;
}

.payment-history-item summary strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-history-item summary b {
  color: #075985;
  white-space: nowrap;
}

.payment-history-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #f8fbfd;
}

.payment-history-detail small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 800;
}

.payment-history-detail strong {
  overflow-wrap: anywhere;
}

.payment-history-actions {
  display: flex;
  align-items: end;
  gap: 8px;
  flex-wrap: wrap;
}

.stock-line {
  color: #075985;
  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 #bfdbfe;
  background: #eff6ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.order-icon:hover {
  background: #dbeafe;
}

.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);
}

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

.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 #bfdbfe;
  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: #00aeef;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  box-shadow: 0 10px 22px rgba(0, 174, 239, 0.2);
}

.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: #075985;
}

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

.product-list-collapsible {
  border: 1px solid #bfdbfe;
  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: #00aeef;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 174, 239, 0.18);
}

.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: #075985;
}

.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;
  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: #eff6ff;
}

.admin-product-row summary::after {
  content: 'Ac';
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  min-width: 54px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #00aeef;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.admin-product-row[open] summary::after {
  content: 'Kapat';
  background: #075985;
}

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

.admin-product-row summary strong {
  grid-column: 1 / -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 / -1;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.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 #bfdbfe;
  border-radius: 7px;
  background: #eff6ff;
  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 #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
}

.photo-admin-card h2 {
  margin-bottom: 6px;
  color: #1d4ed8;
  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: #eef2ff;
  color: #3730a3;
  font-size: 10px;
  font-weight: 900;
}

.invoice-match.barcode {
  background: #e0f2fe;
  color: var(--success);
}

.invoice-match.name {
  background: #eff6ff;
  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: #075985;
}

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 #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
}

.manual-edit-actionbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 2px;
  background: #eff6ff;
}

.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 #93c5fd;
  border-radius: 8px;
  background: #eff6ff;
}

.admin-image-upload-box summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  color: #1d4ed8;
}

.admin-image-upload-box strong {
  color: #1d4ed8;
  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 #93c5fd;
  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: #1d4ed8;
}

.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: #1e40af;
}

.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: #075985;
}

.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;
}

.photo-page {
  background: #eef5ff;
}

.photo-panel {
  max-width: 760px;
}

.photo-search-form {
  margin-top: 14px;
}

.photo-help {
  margin-top: 12px;
}

.photo-bulk-card,
.photo-unified-card {
  display: grid;
  gap: 0;
  margin-top: 12px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.photo-bulk-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  color: var(--notion-ink);
  cursor: pointer;
}

.photo-bulk-card summary::after {
  content: 'Aç';
  grid-row: 1 / span 2;
  grid-column: 2;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  color: var(--notion-ink);
  font-size: 13px;
  font-weight: 700;
}

.photo-bulk-card[open] summary::after {
  content: 'Kapat';
}

.photo-bulk-card summary strong {
  color: var(--notion-ink);
  font-size: 17px;
}

.photo-bulk-card summary span {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.photo-bulk-body {
  display: grid;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--notion-line);
  background: var(--notion-soft);
}

.photo-bulk-body small {
  color: var(--muted);
  line-height: 1.4;
}

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

.photo-bulk-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.photo-bulk-form input[type='file'] {
  min-height: 54px;
  padding: 12px;
  border: 1px dashed #93c5fd;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 16px;
}

.photo-bulk-form button {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}

.photo-unified-card {
  gap: 14px;
  padding: 14px;
}

.photo-unified-card .photo-upload-form {
  margin-top: 0;
}

.photo-unified-intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 2px 0;
}

.photo-unified-intro strong {
  color: var(--notion-ink);
  font-size: 20px;
  line-height: 1.2;
}

.photo-unified-intro small {
  color: var(--notion-muted);
  font-weight: 600;
  line-height: 1.4;
}

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

.visually-hidden-file {
  position: fixed;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-results {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.photo-result-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

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

.photo-result-main {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.photo-result-thumb-button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.photo-result-thumb-button:hover .photo-result-thumb {
  border-color: #2383e2;
  box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.12);
}

.photo-result-thumb-button:focus-visible {
  outline: 3px solid rgba(35, 131, 226, 0.28);
  outline-offset: 2px;
}

.photo-result-main:hover .photo-result-name {
  color: #2383e2;
}

.photo-result-main,
.photo-result-copy {
  display: grid;
  min-width: 0;
}

.photo-result-thumb {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 3px;
}

.photo-result-thumb.empty {
  display: grid;
  place-items: center;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
}

.photo-result-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.photo-result-name {
  overflow-wrap: anywhere;
  font-weight: 800;
  line-height: 1.25;
}

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

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

.photo-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.photo-status.has-photo {
  background: #e0f2fe;
  color: #0369a1;
}

.photo-status.no-photo {
  background: #fef3c7;
  color: #92400e;
}

.photo-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.photo-preview {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  overflow: hidden;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-preview span {
  color: var(--blue);
  font-size: 72px;
  font-weight: 900;
}

.photo-product {
  display: grid;
  gap: 6px;
}

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

.photo-product small {
  color: var(--muted);
  line-height: 1.4;
}

.photo-upload-form {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 14px;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  background: #eff6ff;
}

.photo-upload-form strong {
  color: #1d4ed8;
  font-size: 20px;
  line-height: 1.2;
}

.photo-upload-form small {
  color: var(--accent);
  line-height: 1.35;
}

.photo-upload-form input[type='file'] {
  min-height: 58px;
  padding: 14px;
  border: 1px dashed #93c5fd;
  border-radius: 8px;
  background: #fff;
}

.photo-upload-form button {
  min-height: 52px;
  font-size: 16px;
}

.photo-upload-open-button {
  grid-column: 1 / -1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.photo-upload-open-button:hover {
  background: var(--accent-strong);
}

.admin-layout .photo-upload-open-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.admin-layout .photo-upload-open-button:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #fff;
}

.photo-quick-modal[hidden] {
  display: none;
}

.photo-quick-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.photo-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
}

.photo-quick-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.photo-quick-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--notion-line);
  border-radius: 8px;
  background: #fff;
  color: var(--notion-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.photo-quick-panel > strong {
  padding-right: 42px;
  color: var(--notion-ink);
  font-size: 22px;
  line-height: 1.2;
}

.photo-quick-product {
  color: var(--notion-muted);
  font-weight: 700;
  line-height: 1.35;
}

.photo-quick-form {
  display: grid;
  gap: 12px;
}

.photo-dropzone {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 2px dashed #93c5fd;
  border-radius: 12px;
  background: #f8fbff;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.photo-dropzone.is-dragover {
  border-color: #2383e2;
  background: #eff6ff;
}

.photo-quick-form button {
  min-height: 48px;
  font-size: 16px;
}

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

.depo-page {
  background: var(--notion-soft);
}

.depo-shell {
  min-height: 100vh;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(12px, 3vw, 28px);
}

.depo-panel {
  width: min(100%, 980px);
  display: grid;
  gap: 16px;
  padding: clamp(14px, 3vw, 24px);
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.depo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.depo-logout {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  background: #fff;
  color: var(--notion-ink);
  font-weight: 500;
  text-decoration: none;
}

.depo-login {
  margin-top: 6px;
}

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

.depo-stats div {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: var(--notion-soft);
}

.depo-stats span,
.depo-editor-head span,
.depo-result-count {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 600;
}

.depo-stats strong {
  font-size: 24px;
  line-height: 1;
}

.depo-search {
  display: grid;
  gap: 8px;
}

.depo-search label,
.depo-editor label {
  color: var(--notion-muted);
  font-size: 14px;
  font-weight: 600;
}

.depo-search-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 86px;
  gap: 8px;
}

.depo-search-row input,
.depo-editor input,
.depo-editor textarea {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--notion-line);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  background: #fff;
}

.depo-editor textarea {
  min-height: 82px;
  padding-top: 12px;
  resize: vertical;
}

.depo-search-row button,
.depo-editor button,
.depo-create-from-search {
  min-height: 40px;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  background: #fff;
  color: var(--notion-ink);
  font: inherit;
  font-weight: 500;
}

.depo-message {
  padding: 12px 14px;
  border: 1px solid #cfe3f9;
  border-radius: 12px;
  background: #f1f7fd;
  color: var(--notion-primary);
  font-weight: 600;
}

.depo-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.depo-results {
  display: grid;
  gap: 10px;
  min-height: 96px;
  padding: 12px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: var(--notion-soft);
}

.depo-negative-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: #fff;
}

.depo-pool-preview {
  display: grid;
  gap: 10px;
  margin-top: -4px;
  margin-bottom: 8px;
  padding: 14px;
  border: 1px solid #d7e6f5;
  border-radius: 12px;
  background: #f8fbff;
}

.depo-pool-preview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.depo-pool-preview-head strong {
  display: block;
  font-size: 1rem;
}

.depo-pool-preview-head small {
  display: block;
  margin-top: 4px;
  color: #667085;
}

.depo-pool-preview-list {
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.depo-pool-preview-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid var(--notion-line);
  border-radius: 10px;
  background: #fff;
}

.depo-pool-preview-thumb,
.depo-product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f6f8fb;
  border: 1px solid #e4e7ec;
  display: grid;
  place-items: center;
}

.depo-pool-preview-thumb img,
.depo-product-thumb img,
.depo-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.depo-pool-preview-thumb.is-empty,
.depo-product-thumb.is-empty,
.depo-result-image.is-empty {
  color: #98a2b3;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  padding: 6px;
}

.depo-pool-preview-body strong {
  display: block;
  line-height: 1.35;
}

.depo-pool-preview-row strong {
  display: block;
  line-height: 1.35;
}

.depo-product-subline,
.depo-pool-preview-row .depo-product-subline {
  margin-top: 6px;
  color: #475467;
  font-size: 0.92rem;
  line-height: 1.45;
}

.depo-product-subline strong {
  display: inline;
  color: #0f4c81;
  font-size: inherit;
}

.depo-photo-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle;
}

.depo-photo-badge.depo-photo-yes {
  background: #e8f6ec;
  color: #16713a;
}

.depo-photo-badge.depo-photo-no {
  background: #fff0f0;
  color: #a12828;
}

.depo-pool-preview-empty,
.depo-pool-preview-loading {
  display: block;
  padding: 12px;
  color: #667085;
}

.depo-live-scan-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--notion-line);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-align: left;
}

.depo-live-panel {
  display: grid;
  gap: 8px;
}

.depo-live-panel[hidden] {
  display: none;
}

.depo-live-scan-card:hover {
  border-color: var(--notion-primary);
  background: #f8fbff;
}

.depo-live-scan-card:active {
  background: #eef6ff;
}

.depo-live-scan-card .scan-button {
  display: grid;
  place-items: center;
  min-height: 36px;
  width: 42px;
  border-radius: 8px;
  background: var(--notion-primary);
}

.depo-live-scan-card strong {
  display: block;
  color: var(--notion-ink);
  font-size: 15px;
  line-height: 1.2;
}

.depo-live-scan-card small {
  display: block;
  margin-top: 2px;
  color: var(--notion-muted);
  font-size: 12px;
  font-weight: 700;
}

.depo-live-camera-action {
  margin-top: 8px;
  min-height: 34px;
  width: 100%;
  border: 1px solid var(--notion-primary);
  border-radius: 8px;
  background: var(--notion-primary);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.depo-live-barcode-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 6px;
  margin-top: 8px;
}

.depo-live-barcode-form input,
.depo-live-barcode-form button {
  min-height: 34px;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
}

.depo-live-barcode-form input {
  width: 100%;
  border: 1px solid var(--notion-line);
  padding: 0 9px;
  background: #fff;
}

.depo-live-barcode-form button {
  border: 1px solid var(--notion-primary);
  background: var(--notion-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.depo-bulk-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: #fff;
}

.depo-bulk-card > div:first-child {
  display: grid;
  gap: 3px;
}

.depo-bulk-card span,
.depo-bulk-summary {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 700;
}

.depo-bulk-card strong {
  color: var(--notion-ink);
  font-size: 20px;
  line-height: 1.2;
}

.depo-bulk-card small {
  color: var(--notion-muted);
  font-weight: 600;
}

.depo-bulk-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 8px;
}

.depo-bulk-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: var(--notion-soft);
}

.depo-bulk-panel[hidden] {
  display: none;
}

.depo-bulk-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.depo-bulk-preview {
  display: grid;
  gap: 6px;
  max-height: 260px;
  overflow: auto;
}

.depo-bulk-preview-row {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border: 1px solid var(--notion-line);
  border-radius: 8px;
  background: #fff;
}

.depo-bulk-preview-row strong {
  font-size: 14px;
}

.depo-bulk-preview-row small {
  font-size: 12px;
}

.depo-negative-card span {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 600;
}

.depo-negative-card strong {
  display: block;
  margin-top: 3px;
  font-size: 21px;
}

.depo-negative-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.depo-negative-card button,
.depo-passive-button {
  min-height: 40px;
  border: 1px solid var(--notion-primary);
  border-radius: 999px;
  background: var(--notion-primary);
  color: #fff;
  font: inherit;
  font-weight: 500;
}

.depo-negative-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 8px;
  align-items: stretch;
}

.depo-negative-row .depo-result-row {
  min-width: 0;
}

.depo-passive-button {
  border-color: var(--notion-line);
  background: #fff;
  color: var(--notion-ink);
}

.depo-results > span {
  align-self: center;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.depo-result-row {
  width: 100%;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--notion-line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.depo-result-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  border: 1px solid var(--notion-line);
  border-radius: 14px;
  padding: 8px;
  background: #fff;
}

.depo-row-select {
  min-height: 78px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 10px;
  background: var(--notion-soft);
}

.depo-row-select input,
.depo-select-all input,
.depo-bulk-barkodsis-option input {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--notion-primary);
}

.depo-result-card .depo-result-row {
  border: 0;
  border-radius: 10px;
  padding: 2px;
  background: transparent;
}

.depo-row-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(86px, 1fr));
  gap: 6px;
  align-content: center;
}

.depo-selection-bar {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: #fff;
}

.depo-select-all,
.depo-bulk-barkodsis-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--notion-ink);
  font-size: 13px;
  font-weight: 600;
}

#depo-selected-count {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 700;
}

.depo-selected-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.depo-selected-actions button {
  min-height: 34px;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  padding: 0 10px;
  background: #fff;
  color: var(--notion-ink);
  font-size: 13px;
  font-weight: 600;
}

.depo-row-actions button {
  min-height: 34px;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  padding: 0 10px;
  background: #fff;
  color: var(--notion-ink);
  font-size: 13px;
  font-weight: 600;
}

.depo-row-actions button:hover {
  background: var(--notion-hover);
}

.depo-row-actions .danger-button {
  background: #fff4ef;
  color: #dd5b00;
}

.depo-result-row strong,
.depo-editor-head strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.depo-result-row small,
.depo-editor-head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.depo-result-row em {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff4ef;
  color: #dd5b00;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.depo-photo-badge {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  width: max-content;
  margin-top: 7px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.depo-photo-badge.has-photo {
  background: #dcfce7;
  color: #166534;
}

.depo-photo-badge.no-photo {
  background: #fef3c7;
  color: #92400e;
}

.depo-result-image,
.depo-product-image {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--notion-line);
  border-radius: 8px;
  background: var(--notion-soft);
  color: var(--notion-muted);
  font-size: 24px;
  font-weight: 900;
}

.depo-no-photo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 6px;
  color: #dd5b00;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

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

.depo-editor {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 42;
  width: min(94vw, 720px);
  max-height: 88vh;
  overflow: auto;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--notion-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.depo-editor[hidden] {
  display: none;
}

.depo-editor-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.depo-product-image {
  width: 72px;
  height: 72px;
}

.depo-barkodsis-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: var(--notion-soft);
}

.depo-barkodsis-box span {
  color: var(--notion-muted);
  font-size: 13px;
  font-weight: 900;
}

.depo-barkodsis-box strong {
  display: block;
  margin-top: 4px;
  color: var(--notion-ink);
  font-size: 28px;
  line-height: 1;
}

.depo-barkodsis-box small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.depo-barkodsis-box button,
.depo-real-stock-button {
  min-height: 40px;
  border: 1px solid var(--notion-primary);
  border-radius: 999px;
  background: var(--notion-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
}

.depo-real-stock-button {
  background: var(--notion-primary);
}

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

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

.depo-check {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--notion-line);
  border-radius: 8px;
  background: #fff;
}

.depo-stock-actions,
.depo-editor-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

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

.depo-stock-actions button {
  border-color: var(--notion-line);
  background: #fff;
  color: var(--notion-ink);
}

.depo-editor .secondary-button,
.depo-editor-actions a {
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  background: #fff;
  color: var(--notion-ink);
  text-decoration: none;
  box-shadow: none;
}

.depo-editor .danger-button {
  background: #fee2e2;
  color: #991b1b;
}

.depo-photo-form {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.depo-photo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
}

.depo-photo-form small {
  color: var(--muted);
  font-weight: 800;
}

.depo-page .admin-content {
  width: min(100%, 1280px);
  gap: 8px;
  padding: 12px;
}

.depo-page .admin-content-head {
  margin-bottom: 0;
}

.depo-page .admin-layout .brand {
  gap: 2px;
}

.depo-page .admin-layout .brand span {
  font-size: 10px;
}

.depo-page .admin-layout .brand strong {
  font-size: 26px;
  line-height: 1;
}

.depo-page .admin-content-head .brand small {
  font-size: 11px;
}

.depo-page .depo-panel {
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
}

.depo-page .depo-topbar {
  min-height: 0;
}

.depo-page .depo-logout {
  min-height: 28px;
  padding: 0 10px;
  font-size: 12px;
}

.depo-page .depo-stats {
  gap: 6px;
}

.depo-page .depo-stats div {
  min-height: 44px;
  gap: 1px;
  padding: 6px 8px;
  border-radius: 8px;
}

.depo-page .depo-stats span,
.depo-page .depo-editor-head span,
.depo-page .depo-result-count,
.depo-page .depo-negative-card span {
  font-size: 11px;
}

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

.depo-page .depo-negative-card {
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
}

.depo-page .depo-negative-card strong {
  margin-top: 1px;
  font-size: 16px;
}

.depo-page .depo-negative-card small {
  margin-top: 1px;
  font-size: 11px;
  font-weight: 600;
}

.depo-page .depo-negative-card button,
.depo-page .depo-passive-button {
  min-height: 30px;
  font-size: 12px;
}

.depo-page .depo-live-scan-card {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
}

.depo-page .depo-live-scan-card .scan-button {
  min-height: 32px;
  width: 38px;
  padding: 0;
}

.depo-page .depo-live-scan-card strong {
  font-size: 13px;
}

.depo-page .depo-live-scan-card small {
  font-size: 11px;
}

.depo-page .depo-live-camera-action {
  min-height: 32px;
  font-size: 12px;
}

.depo-page .depo-live-barcode-form {
  grid-template-columns: minmax(0, 1fr) 82px;
}

.depo-page .depo-live-barcode-form input,
.depo-page .depo-live-barcode-form button {
  min-height: 32px;
  font-size: 12px;
}

.depo-page .depo-search {
  gap: 4px;
}

.depo-page .depo-search label,
.depo-page .depo-editor label {
  font-size: 12px;
}

.depo-page .depo-search-row {
  grid-template-columns: 38px minmax(0, 1fr) 68px;
  gap: 5px;
}

.depo-page .depo-search-row input,
.depo-page .depo-editor input,
.depo-page .depo-editor textarea {
  min-height: 32px;
  padding: 0 10px;
  font-size: 14px;
}

.depo-page .depo-search-row button,
.depo-page .depo-editor button,
.depo-page .depo-create-from-search {
  min-height: 32px;
  font-size: 12px;
}

.depo-page .scan-button span {
  width: 24px;
  height: 16px;
}

.depo-page .depo-message {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.depo-page .depo-results {
  gap: 5px;
  min-height: 0;
  max-height: 420px;
  overflow: auto;
  padding: 6px;
  border-radius: 8px;
}

.depo-page .depo-results > span {
  min-height: 26px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.depo-page .depo-negative-results {
  max-height: 320px;
}

.depo-page .depo-result-card {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px;
  border-radius: 8px;
}

.depo-page .depo-row-select {
  min-height: 62px;
  border-radius: 6px;
}

.depo-page .depo-row-select input,
.depo-page .depo-select-all input,
.depo-page .depo-bulk-barkodsis-option input {
  width: 15px;
  height: 15px;
}

.depo-page .depo-result-row {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 9px;
  padding: 7px;
  border-radius: 6px;
}

.depo-page .depo-result-card .depo-result-row {
  padding: 0;
}

.depo-page .depo-result-image,
.depo-page .depo-product-image {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  font-size: 18px;
}

.depo-page .depo-no-photo {
  padding: 3px;
  font-size: 10px;
}

.depo-page .depo-result-row strong,
.depo-page .depo-editor-head strong {
  font-size: 14px;
  line-height: 1.2;
}

.depo-page .depo-result-row small,
.depo-page .depo-editor-head small {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
}

.depo-page .depo-result-row em,
.depo-page .depo-photo-badge {
  min-height: 18px;
  margin-top: 3px;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 700;
}

.depo-page .depo-row-actions {
  grid-template-columns: repeat(2, minmax(74px, 1fr));
  gap: 5px;
}

.depo-page .depo-row-actions button,
.depo-page .depo-selected-actions button {
  min-height: 30px;
  padding: 0 8px;
  font-size: 12px;
}

.depo-page .depo-load-more {
  min-height: 34px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.depo-page .depo-live-row {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 350px) auto;
}

.depo-page .depo-live-row.is-new-live {
  border-color: var(--notion-primary);
  background: #f8fbff;
}

.depo-page .depo-live-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(52px, 1fr));
  gap: 6px;
  align-content: center;
}

.depo-page .depo-live-prices label {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--notion-muted);
}

.depo-page .depo-live-prices input {
  min-height: 30px;
  padding: 4px 6px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.depo-page .depo-live-prices input.is-saving {
  border-color: #f59e0b;
}

.depo-page .depo-live-prices input.is-saved {
  border-color: #22c55e;
  background: #f0fdf4;
}

.depo-page .depo-selection-bar {
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
}

.depo-page .depo-select-all,
.depo-page .depo-bulk-barkodsis-option,
.depo-page #depo-selected-count {
  font-size: 11px;
}

.depo-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
}

.depo-modal[hidden] {
  display: none;
}

.depo-modal-card {
  width: min(100%, 460px);
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--notion-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.depo-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.depo-modal-head span {
  display: block;
  color: var(--notion-muted);
  font-size: 12px;
  font-weight: 700;
}

.depo-modal-head strong {
  display: block;
  margin-top: 2px;
  color: var(--notion-ink);
  font-size: 20px;
  line-height: 1.2;
}

.depo-modal-head small {
  display: block;
  margin-top: 4px;
  color: var(--notion-muted);
  font-weight: 600;
}

.depo-modal-preview {
  width: 100%;
  aspect-ratio: 1.5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--notion-line);
  border-radius: 12px;
  background: var(--notion-soft);
  color: var(--notion-muted);
  font-weight: 700;
}

.depo-modal-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

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

/* Notion-inspired admin design system overrides */
.admin-layout .admin-shortcuts,
.admin-layout .admin-icon-shortcuts,
.admin-layout .invoice-actions,
.admin-layout .patron-actions,
.admin-layout .depo-editor-actions,
.admin-layout .depo-stock-actions {
  gap: 8px;
}

.admin-layout .secondary-button,
.admin-layout .table-link,
.admin-layout .admin-product-row-actions .table-link,
.admin-layout .mini-secondary {
  border: 1px solid var(--notion-line);
  border-radius: 999px;
  background: #fff;
  color: var(--notion-ink);
  box-shadow: none;
}

.admin-layout .table-link {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.admin-layout .secondary-button:hover,
.admin-layout .table-link:hover,
.admin-layout .mini-secondary:hover {
  border-color: #d6d2cc;
  background: var(--notion-hover);
  color: var(--notion-ink);
}

.admin-layout .alert,
.admin-layout .result,
.admin-layout .admin-note,
.admin-layout .payment-accordion,
.admin-layout .makrocell-admin,
.admin-layout .invoice-admin,
.admin-layout .manual-admin,
.admin-layout .product-list-admin,
.admin-layout .photo-bulk-card,
.admin-layout .photo-unified-card,
.admin-layout .photo-card,
.admin-layout .patron-section,
.admin-layout .manual-edit-panel,
.admin-layout .new-product-box,
.admin-layout .admin-image-upload-box,
.admin-layout .invoice-info-menu,
.admin-layout .invoice-debug,
.admin-layout .product-list-panel {
  border-color: var(--notion-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.admin-layout .result.idle,
.admin-layout .depo-stats div,
.admin-layout .depo-results,
.admin-layout .payment-history-item,
.admin-layout .patron-grid article,
.admin-layout .invoice-side section,
.admin-layout .admin-product-row,
.admin-layout .manual-result-row,
.admin-layout .photo-result-row {
  border-color: var(--notion-line);
  background: var(--notion-soft);
  box-shadow: none;
}

.admin-layout .payment-accordion > summary::before,
.admin-layout .patron-section-title .section-pill,
.admin-layout .photo-status.has-photo,
.admin-layout .depo-photo-badge.has-photo {
  background: #eaf7ee;
  color: #1aae39;
}

.admin-layout .photo-status.no-photo,
.admin-layout .depo-photo-badge.no-photo {
  background: #fff4ef;
  color: #dd5b00;
}

.admin-layout .section-pill,
.admin-layout .invoice-match,
.admin-layout .stock-badge,
.admin-layout .photo-status,
.admin-layout .depo-photo-badge {
  border-radius: 999px;
  font-weight: 600;
}

.admin-layout table,
.admin-layout .invoice-table,
.admin-layout .patron-table {
  border-color: var(--notion-line);
}

.admin-layout th {
  background: var(--notion-soft);
  color: var(--notion-muted);
  font-size: 12px;
  font-weight: 600;
}

.admin-layout td {
  color: var(--notion-ink-secondary);
  font-size: 14px;
}

.admin-layout .scan-button {
  border-color: var(--notion-line);
  background: #fff;
}

.admin-layout .scan-button span {
  border-color: var(--notion-ink);
  background:
    linear-gradient(90deg, var(--notion-ink) 0 2px, transparent 2px 5px, var(--notion-ink) 5px 8px, transparent 8px 12px, var(--notion-ink) 12px 14px, transparent 14px 18px, var(--notion-ink) 18px 21px, transparent 21px 24px, var(--notion-ink) 24px 26px);
}

.admin-layout .photo-upload-form,
.admin-layout .depo-photo-form {
  border-color: var(--notion-line);
  border-radius: 12px;
  background: var(--notion-soft);
}

.admin-layout .photo-upload-form strong {
  color: var(--notion-ink);
}

@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;
  }

  .patron-header,
  .patron-section-title {
    align-items: start;
    flex-direction: column;
  }

  .patron-actions {
    justify-content: flex-start;
  }

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

  .patron-grid .primary-metric {
    grid-column: 1 / -1;
  }

  .patron-status {
    align-items: start;
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .patron-status small {
    grid-column: 2;
    margin-left: 0;
    text-align: left;
  }

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

@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 {
    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;
  }

  .payment-history-item summary {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .payment-accordion > summary {
    align-items: flex-start;
    padding: 12px;
  }

  .payment-accordion > summary strong {
    white-space: normal;
    text-align: right;
  }

  .payment-history-item summary b {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .payment-history-detail {
    grid-template-columns: 1fr;
  }

  .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: 1fr auto;
  }

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

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

  .admin-product-row summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .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;
  }

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

  .patron-grid article {
    min-height: 112px;
  }

  .patron-section {
    padding: 12px;
  }

  .patron-table {
    min-width: 560px;
  }

  .payment-command-row,
  .payment-form-grid {
    grid-template-columns: 1fr;
  }

  .payment-command-row button {
    width: 100%;
  }

  .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: 860px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
    gap: 10px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-sidebar-mark {
    display: none;
  }

  .admin-sidebar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .admin-sidebar-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    white-space: nowrap;
  }

  .admin-content {
    padding: 10px;
  }

  .admin-content-head {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .admin-return-link {
    width: fit-content;
  }

  .admin-login-page .admin-sidebar {
    padding: 8px 10px;
    min-height: auto;
  }

  .admin-login-page .admin-content {
    width: 100%;
    padding: 10px;
  }

  .admin-login-page .admin-content-head .brand {
    gap: 2px;
  }

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

  .admin-login-page .admin-content-head .brand small {
    display: none;
  }

  .admin-login-page .panel {
    padding: 12px;
  }
}

@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: 44px;
  height: 44px;
  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;
}

.home-sidebar-toggle:hover {
  border-color: #cbd5e1;
  background: #f4f7fa;
}

.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;
}

.home-sidebar-toggle span::before,
.home-category-toggle span::before {
  transform: translateY(-6px);
}

.home-sidebar-toggle span::after,
.home-category-toggle span::after {
  transform: translateY(4px);
}

.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: #2389dc;
  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: #176fac;
  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: #176fac;
}

.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 #176fac;
  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 #176fac;
  border-left: 2px solid #176fac;
  transform: rotate(-12deg);
}

.home-cart-icon {
  color: #176fac;
}

.site-header.home-category-strip {
  min-height: 60px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: linear-gradient(90deg, #126eb0, #238fe0);
  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(310px, calc(100vw - 36px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 14px;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: 18px 0 50px rgba(15, 23, 42, 0.18);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-102%);
  transition: transform 0.24s ease, visibility 0.24s;
}

.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.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.home-menu-open {
  overflow: hidden;
}

.home-menu-open .home-shop-header {
  z-index: 1201;
}

.home-menu-open .home-menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-side-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 12px;
  border-bottom: 1px solid #e4e9ef;
}

.home-side-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d2939;
  text-decoration: none;
}

.home-side-brand span,
.home-side-brand-mark {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-side-brand span {
  display: grid;
  place-items: center;
  background: #176fac;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.home-side-brand strong {
  font-size: 15px;
  font-weight: 800;
}

.home-side-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #667085;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.home-side-head button:hover {
  background: #e9eef3;
  color: #1d2939;
}

.home-side-menu .home-side-nav {
  width: 100%;
  min-height: 0;
  display: grid;
  gap: 3px;
  overflow: visible;
  flex-wrap: unset;
  justify-content: unset;
}

.home-side-menu .home-side-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 9px;
  padding: 0 11px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
  text-decoration: none;
  opacity: 1;
  flex: unset;
  text-shadow: none;
}

.home-side-menu .home-side-nav a:hover,
.home-side-menu .home-side-nav a.is-active {
  background: #e9eef3;
  color: #101828;
  opacity: 1;
}

.home-side-menu .home-side-nav a span {
  width: 22px;
  color: #667085;
  font-size: 18px;
  text-align: center;
}

.home-side-group {
  display: grid;
  gap: 2px;
  margin: 4px 0 6px;
  padding: 6px 0 4px;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
}

.home-side-group.is-active-group .home-side-group-label {
  color: #176fac;
}

.home-side-group-label {
  padding: 4px 11px 2px;
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-side-sub-link {
  padding-left: 18px !important;
  font-size: 13px !important;
}

.home-side-sub-link span {
  font-size: 16px !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: #176fac;
  background: #eef8fd;
}

.assistant-mode-link.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.22);
}

.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: rgba(0, 174, 239, 0.1);
  color: #176fac;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
}

.home-side-section {
  display: grid;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid #e4e9ef;
}

.home-side-section > span {
  padding: 0 11px 7px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-side-section a {
  min-height: 36px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 11px;
  color: #475467;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.home-side-section a:hover {
  background: #e9eef3;
  color: #101828;
}

.home-side-contact {
  display: grid;
  gap: 3px;
  margin-top: auto;
  border: 1px solid #dce5ee;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  color: #176fac;
  text-decoration: none;
}

.home-side-contact small {
  color: #667085;
  font-size: 12px;
}

.home-side-contact strong {
  font-size: 13px;
}

.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, #0d4f82 0%, #176fac 51%, #218bd7 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: #d8efff;
  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: #125f98;
  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%, rgba(23, 111, 172, 0.08) 72%),
    #fff;
  color: #176fac;
  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: #176fac;
  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, rgba(0, 174, 239, 0.16), transparent 42%),
    linear-gradient(135deg, #0b4f7a 0%, #176fac 52%, #00aeef 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: #b8ecff;
}

.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: #176fac;
  margin-bottom: 12px;
}

.home-price-phone-scan {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 18px 12px;
  margin-bottom: 12px;
  border: 1px dashed rgba(23, 111, 172, 0.35);
  border-radius: 14px;
  background: rgba(0, 174, 239, 0.08);
}

.home-price-phone-scan span {
  width: 54px;
  height: 54px;
  border: 2px solid #00aeef;
  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 #00aeef;
  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: #176fac;
  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: #176fac;
}

.home-price-qr-card {
  position: absolute;
  right: 0;
  top: 18px;
  width: 118px;
  padding: 14px 12px;
  border-radius: 16px;
  background: #fff;
  color: #176fac;
  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: rgba(0, 174, 239, 0.12);
  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(310px, calc(100vw - 36px));
    min-height: 100vh;
    grid-template-columns: none;
    margin: 0;
    padding: 16px 14px;
    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 #126eb0;
  }

  .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: #6bb8e6;
  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: #1684c4;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.catalog-site-header .site-header-search button:hover {
  background: #0f6fa7;
}

.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: #137dbb;
}

.catalog-site-header > nav .nav-action {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 9px;
  background: #eaf6fc;
  color: #0874ad;
  box-shadow: none;
}

.catalog-site-header > nav .nav-action:hover {
  background: #d8eef9;
  color: #086a9e;
}

.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: #1684c4;
  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 rgba(0, 174, 239, 0.35);
}

.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%, rgba(0, 174, 239, 0.14) 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: rgba(0, 174, 239, 0.12);
  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 rgba(0, 174, 239, 0.22);
}

.season-tab-panel[hidden],
.assistant-panel[hidden] {
  display: none !important;
}

.assistant-page {
  background: var(--page);
}

.assistant-shell {
  padding-top: 0;
}

.assistant-container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.assistant-hero {
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, 0.14), transparent 40%),
    linear-gradient(180deg, #eef8fd 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: rgba(0, 174, 239, 0.12);
  color: var(--accent-strong);
  border: 1px solid rgba(0, 174, 239, 0.22);
}

.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 rgba(0, 174, 239, 0.24);
}

.assistant-btn-secondary {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid rgba(0, 174, 239, 0.35);
}

.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;
}

.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: rgba(0, 174, 239, 0.45);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.08);
}

.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: rgba(0, 174, 239, 0.08);
}

.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, rgba(0, 174, 239, 0.08) 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: rgba(0, 174, 239, 0.08);
  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;
  }
}
