:root {
  --ink: #10131a;
  --paper: #f5f2ea;
  --surface: #ffffff;
  --muted: #6d706f;
  --line: #dcd8ce;
  --acid: #d9ff43;
  --orange: #ff6b35;
  --blue: #1746d1;
  --shadow: 0 18px 60px rgba(16, 19, 26, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Manrope, sans-serif; }
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.announcement {
  min-height: 34px; padding: 8px 5vw; display: flex; justify-content: center; gap: 5vw;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.site-header {
  height: 86px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); background: rgba(245,242,234,.92); backdrop-filter: blur(18px);
  position: sticky; top: 0; z-index: 50;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px;
  background: var(--ink); color: var(--acid); font: 700 24px/1 "Space Grotesk", sans-serif;
}
.brand b, .brand small { display: block; }
.brand b { font: 700 18px/1 "Space Grotesk", sans-serif; letter-spacing: -.03em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .15em; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 800; }
.main-nav a:hover { color: var(--blue); }
.main-nav .nav-highlight { padding: 10px 15px; border-radius: 999px; background: var(--orange); color: #fff; }
.main-nav .nav-highlight:hover, .main-nav .nav-highlight.is-active { background: var(--blue); color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  min-height: 44px; padding: 0; display: inline-flex; align-items: center; gap: 7px;
  border: 0; background: transparent; color: inherit; font-weight: 800; cursor: pointer;
}
.nav-dropdown-toggle span { font-size: 16px; transition: transform .2s ease; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; width: min(760px, 86vw); max-height: min(68vh, 590px);
  padding: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; overflow-y: auto;
  border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 24px 70px rgba(16,19,26,.18);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-dropdown-menu::before {
  content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}
.nav-dropdown-menu button {
  min-height: 44px; padding: 11px 13px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 0; border-radius: 11px; background: transparent; color: var(--ink); text-align: left; font-size: 11px; font-weight: 800; cursor: pointer;
}
.nav-dropdown-menu button:hover, .nav-dropdown-menu button:focus-visible { background: var(--paper); color: var(--blue); outline: 0; }
.nav-dropdown-menu button:first-child { grid-column: 1/-1; background: var(--ink); color: #fff; }
.nav-dropdown-menu button span { color: #b7bdc8; font-size: 10px; font-weight: 700; }
.printed-nav-menu {
  width: min(390px, 90vw);
  grid-template-columns: 1fr;
}
.printed-nav-menu a {
  min-height: 48px; padding: 11px 13px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border-radius: 11px; color: var(--ink); font-size: 11px;
}
.printed-nav-menu a:hover, .printed-nav-menu a:focus-visible { background: var(--paper); color: var(--blue); outline: 0; }
.printed-nav-menu a:last-child { background: var(--ink); color: #fff; }
.printed-nav-menu a span { color: #8b919c; font-size: 10px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span,
.nav-dropdown.open .nav-dropdown-toggle span { transform: rotate(180deg); }
.cart-trigger {
  border: 0; border-radius: 999px; padding: 12px 14px 12px 20px; background: var(--ink); color: #fff;
  font-weight: 800; cursor: pointer;
}
.cart-trigger span { margin-left: 9px; min-width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--acid); color: var(--ink); }

.hero {
  width: min(1420px, 92vw); min-height: 640px; margin: 34px auto 84px; padding: clamp(38px, 6vw, 86px);
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; overflow: hidden;
  border-radius: 38px; color: #fff; background:
    radial-gradient(circle at 86% 8%, rgba(217,255,67,.28), transparent 24%),
    linear-gradient(135deg, #111827 0%, #15192b 62%, #1239ac 150%);
  box-shadow: var(--shadow); position: relative;
}
.hero::after {
  content: ""; position: absolute; width: 290px; height: 290px; left: 44%; bottom: -210px;
  border: 65px solid rgba(255,107,53,.85); border-radius: 50%;
}
.kicker { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.hero h1 { margin: 18px 0 22px; max-width: 760px; font: 700 clamp(54px, 7vw, 104px)/.9 "Space Grotesk", sans-serif; letter-spacing: -.065em; }
.hero h1 em { color: var(--acid); font-style: normal; }
.lead { max-width: 670px; color: #cbd0dc; font-size: clamp(17px, 2vw, 21px); line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px;
  border: 1px solid transparent; border-radius: 14px; font-weight: 800; cursor: pointer;
}
.button-primary { background: var(--acid); color: var(--ink); }
.button-primary:hover { background: #edff99; transform: translateY(-1px); }
.button-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.hero-panel {
  width: min(450px, 100%); justify-self: end; display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.orb {
  grid-column: 1/-1; aspect-ratio: 1.7; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  font: 700 clamp(64px, 9vw, 130px)/1 "Space Grotesk", sans-serif; color: transparent; -webkit-text-stroke: 2px var(--acid);
}
.hero-stat, .hero-note { padding: 22px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.hero-stat strong, .hero-stat span { display: block; }
.hero-stat strong { color: var(--acid); font: 700 34px/1 "Space Grotesk", sans-serif; }
.hero-stat span, .hero-note { margin-top: 8px; color: #d7dae2; font-size: 12px; }
.hero-note { grid-column: 1/-1; margin-top: 0; text-align: center; text-transform: uppercase; letter-spacing: .1em; }

.printed-hero {
  width: min(1420px, 92vw); margin: 42px auto 90px; padding: clamp(34px, 5vw, 76px);
  display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(35px, 6vw, 90px);
  overflow: hidden; border-radius: 34px; background: #151922; color: #fff;
}
.printed-hero h1 { margin: 12px 0 24px; font: 700 clamp(50px, 6vw, 92px)/.9 "Space Grotesk", sans-serif; letter-spacing: -.065em; }
.printed-hero h1 em { color: var(--acid); font-style: normal; }
.printed-hero .lead { max-width: 610px; color: #c6cbd4; }
.printed-hero .button-ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.printed-showcase { min-height: 570px; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.showcase-card { margin: 0; min-width: 0; overflow: hidden; border-radius: 24px; background: #fff; }
.showcase-card-main { grid-row: 1 / 3; }
.showcase-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.showcase-card:hover img { transform: scale(1.035); }
.showcase-count { margin-top: 34px; display: grid; grid-template-columns: auto auto auto auto; align-items: baseline; justify-content: start; gap: 6px 16px; }
.showcase-count strong { color: var(--acid); font: 700 31px/1 "Space Grotesk", sans-serif; }
.showcase-count span { color: #aeb4c0; font-size: 12px; }
.printed-shop { padding-top: 0; }
.printed-product-card .product-image { background: #f0eee8; }
.printed-product-card .product-image img { width: 100%; height: 100%; padding: 10px; object-fit: contain; }
.printed-product-card .product-badge { max-width: calc(100% - 24px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-type-rail { margin: 38px 0 10px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.product-type-rail button {
  min-height: 52px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); color: var(--ink); font-size: 11px; font-weight: 800; cursor: pointer;
}
.product-type-rail button span { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 700; }
.product-type-rail button.active { border-color: var(--blue); background: var(--blue); color: #fff; }
.product-type-rail button.active span { color: #d9e2ff; }
.printed-mockup { width: 100%; height: 100%; display: block; position: relative; }
.printed-mockup > .mockup-base { width: 100%; height: 100%; padding: 0; object-fit: contain; mix-blend-mode: normal; }
.printed-mockup .mockup-art { position: absolute; overflow: hidden; }
.printed-mockup .mockup-art { display: grid; place-items: center; }
.printed-mockup .mockup-art img { width: 100%; height: 100%; padding: 0; object-fit: contain; mix-blend-mode: multiply; }
.printed-mockup-tshirt .mockup-art { left: 38%; top: 36%; width: 24%; height: 27%; }
.printed-mockup-bag .mockup-art { left: 35%; top: 47%; width: 30%; height: 29%; }
.printed-mockup-tshirt .mockup-art img,
.printed-mockup-bag .mockup-art img {
  filter: blur(.45px);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 68%, rgba(0,0,0,.92) 76%, rgba(0,0,0,.58) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 0 68%, rgba(0,0,0,.92) 76%, rgba(0,0,0,.58) 88%, transparent 100%);
}
.printed-mockup-mug .mockup-art {
  left: 22%;
  top: 19%;
  width: 49%;
  height: 61%;
  border-radius: 22% 13% 17% 24% / 10% 8% 14% 15%;
  clip-path: none;
  transform: perspective(260px) rotateY(-8deg) rotateZ(-7deg);
  transform-origin: center;
}
.printed-mockup-mug .mockup-art img {
  object-fit: cover;
  opacity: .92;
  transform: rotate(-8deg) scale(1.28);
}
.printed-mockup-canvas,
.printed-mockup-mdf { width: 100%; height: 100%; margin: 0; padding: 0; background: #eee; box-shadow: none; transform: none; }
.printed-mockup-canvas .mockup-art { left: 20%; top: 16%; width: 60%; height: 35.5%; background: #fff; }
.printed-mockup-mdf .mockup-art { left: 26.7%; top: 20%; width: 47.1%; height: 31.7%; background: #fff; }
.printed-mockup-canvas .mockup-art img,
.printed-mockup-mdf .mockup-art img { object-fit: cover; mix-blend-mode: normal; }

.shop { width: min(1420px, 92vw); margin: 0 auto 110px; }
.shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.shop-heading h2 { margin: 8px 0 0; font: 700 clamp(38px, 5vw, 68px)/1 "Space Grotesk", sans-serif; letter-spacing: -.055em; }
.search-field {
  width: min(510px, 100%); min-height: 58px; padding: 0 20px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 18px; background: var(--surface);
}
.search-field span { font-size: 26px; }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; }
.category-rail { margin: 38px 0 22px; padding-bottom: 12px; display: flex; gap: 9px; overflow-x: auto; }
.category-rail button {
  flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px;
  background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer;
}
.category-rail button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.result-bar { margin: 0 0 20px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; }
.result-bar label { display: flex; align-items: center; gap: 10px; }
.result-bar select { padding: 9px 12px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 18px; align-items: stretch; }
.product-card {
  min-width: 0; height: 100%; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.product-image {
  width: 100%; aspect-ratio: 1 / 1; padding: 18px; display: grid; place-items: center; overflow: hidden; background: #efede6; position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-badge { position: absolute; top: 13px; left: 13px; padding: 7px 10px; border-radius: 999px; background: var(--acid); font-size: 9px; font-weight: 800; }
.product-info { min-height: 0; flex: 1; padding: 18px; display: flex; flex-direction: column; }
.product-category { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-info h3 { min-height: 72px; margin: 9px 0 16px; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font: 700 17px/1.4 "Space Grotesk", sans-serif; }
.product-price { min-height: 50px; margin-top: auto; display: flex; flex-direction: column; justify-content: center; }
.product-price strong { font: 700 21px/1 "Space Grotesk", sans-serif; }
.product-price small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.price-breakdown { display: grid; gap: 7px; }
.price-breakdown > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; }
.price-breakdown b { color: var(--ink); font-size: 12px; }
.price-breakdown .price-total { margin-top: 2px; padding-top: 9px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 800; }
.price-breakdown .price-total strong { color: var(--orange); font-size: 19px; }
.product-actions { margin-top: 15px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.product-actions button, .product-actions a {
  min-width: 0; min-height: 43px; padding: 8px 10px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 12px;
  background: var(--ink); color: #fff; font-size: 12px; font-weight: 800; cursor: pointer;
}
.product-actions .buy-now { width: auto; background: transparent; color: var(--ink); font-size: 12px; text-align: center; }
.product-actions .campaign-buy { padding: 0 14px; background: var(--orange); border-color: var(--orange); white-space: nowrap; }
.load-more { margin: 34px auto 0; padding: 14px 22px; display: block; border: 1px solid var(--ink); border-radius: 14px; background: transparent; font-weight: 800; cursor: pointer; }
.load-more[hidden] { display: none; }
.empty-state { grid-column: 1/-1; padding: 80px 20px; text-align: center; color: var(--muted); }

.merchandising { width: min(1420px, 92vw); margin: 0 auto 100px; }
.section-heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2 { margin: 8px 0 0; font: 700 clamp(38px, 5vw, 68px)/1 "Space Grotesk", sans-serif; letter-spacing: -.055em; }
.section-heading > p { max-width: 460px; color: var(--muted); line-height: 1.6; }
.campaign-grid .product-card { border-color: rgba(239, 93, 40, .35); box-shadow: 0 12px 35px rgba(239, 93, 40, .08); }
.campaign-grid .product-badge { background: var(--orange); color: #fff; }
.best-sellers { padding-top: 10px; }

.product-panel-backdrop {
  position: fixed; inset: 0; z-index: 130; border: 0; background: rgba(16, 19, 26, .58);
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.product-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 140; width: min(720px, 96vw); padding: 28px;
  overflow-y: auto; background: var(--surface); box-shadow: -24px 0 80px rgba(0, 0, 0, .24);
  transform: translateX(104%); transition: transform .26s ease;
}
.product-panel.open { transform: translateX(0); }
body.product-panel-open { overflow: hidden; }
body.product-panel-open .product-panel-backdrop { opacity: 1; pointer-events: auto; }
.product-panel-close {
  position: sticky; top: 0; z-index: 2; margin-left: auto; width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.94); font-size: 28px; cursor: pointer;
}
.product-panel-media { position: relative; margin-top: -28px; height: min(48vh, 440px); overflow: hidden; border-radius: 26px; background: #efede6; }
.product-panel-media img { width: 100%; height: 100%; padding: 20px; display: block; object-fit: contain; }
.product-panel-media .printed-mockup { width: auto; max-width: 100%; height: 100%; aspect-ratio: 1 / 1; margin: 0 auto; }
.product-panel-media .printed-mockup > .mockup-base,
.product-panel-media .printed-mockup .mockup-art img { padding: 0; }
.product-panel-badge { position: absolute; top: 18px; left: 18px; z-index: 1; padding: 8px 11px; border-radius: 999px; background: var(--acid); font-size: 10px; font-weight: 800; }
.product-panel-body { padding: 30px 8px 18px; }
.product-panel-body h2 { margin: 9px 0 16px; font: 700 clamp(31px, 5vw, 52px)/1.05 "Space Grotesk", sans-serif; letter-spacing: -.045em; }
.product-panel-description { color: var(--muted); line-height: 1.75; }
.product-panel-meta { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-panel-meta div { padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; }
.product-panel-meta dt { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-panel-meta dd { margin: 5px 0 0; font-size: 12px; font-weight: 800; }
.product-panel-tags { margin: -10px 0 24px; display: flex; flex-wrap: wrap; gap: 7px; }
.product-panel-tags span { padding: 7px 10px; border-radius: 999px; background: #efede6; font-size: 10px; font-weight: 800; }
.panel-pricing { padding: 18px; display: grid; gap: 11px; border-radius: 18px; background: #f3f1ea; }
.panel-pricing > div { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.panel-pricing b { color: var(--ink); }
.panel-pricing .panel-total { padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 800; }
.panel-pricing .panel-total strong { color: var(--orange); font: 700 24px/1 "Space Grotesk", sans-serif; }
.panel-pricing > small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-align: right; }
.product-panel-actions { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-panel-actions .button { width: 100%; min-height: 52px; }
.product-panel-actions .button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.panel-options { margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #f7f6f1; }
.panel-options-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.panel-options-head span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.panel-options-head strong { display: block; margin-top: 4px; font-size: 14px; }
.panel-options-head small { color: var(--muted); font-size: 11px; white-space: nowrap; }
.panel-option-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.panel-option-grid label { display: grid; grid-template-columns: 18px 1fr 62px; gap: 9px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.panel-option-grid b { font-size: 11px; }
.panel-option-grid input { width: 62px; min-height: 38px; padding: 7px; border: 1px solid var(--line); border-radius: 9px; background: #fff; font: 800 13px/1 "Manrope", sans-serif; text-align: center; }
.ink-swatch { width: 16px; height: 16px; border: 1px solid rgba(10, 14, 18, .18); border-radius: 50%; background: linear-gradient(135deg, #00aeef, #ec008c 34%, #fff200 67%, #111); }
.ink-cyan, .ink-açık-cyan { background: #00aeef; }
.ink-magenta { background: #ec008c; }
.ink-sarı { background: #ffe600; }
.ink-siyah { background: #111; }
.ink-beyaz { background: #fff; }
.panel-selection-message { margin: 11px 0 0; color: #a23a2b; font-size: 11px; font-weight: 700; }
.panel-selection-total { margin-top: 13px; padding-top: 13px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.panel-selection-total span { color: var(--muted); font-size: 11px; }
.panel-selection-total span small { display: block; margin-top: 2px; }
.panel-selection-total strong { font: 700 22px/1 "Space Grotesk", sans-serif; }

.benefits {
  width: min(1420px, 92vw); margin: 0 auto 110px; display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: var(--surface);
}
.benefits article { padding: 38px; border-right: 1px solid var(--line); }
.benefits article:last-child { border: 0; }
.benefits span { color: var(--orange); font-weight: 800; }
.benefits h3 { font: 700 23px/1.2 "Space Grotesk", sans-serif; }
.benefits p { color: var(--muted); line-height: 1.65; }

.cart-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(460px, 94vw); padding: 28px; display: flex; flex-direction: column;
  background: var(--surface); z-index: 100; transform: translateX(104%); transition: transform .25s ease; box-shadow: -20px 0 70px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; }
.cart-head small { color: var(--orange); font-weight: 800; letter-spacing: .12em; }
.cart-head h2 { margin: 5px 0 0; font: 700 40px/1 "Space Grotesk", sans-serif; }
.cart-head button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 28px; cursor: pointer; }
.cart-items { margin: 25px -8px 20px 0; padding-right: 8px; overflow-y: auto; flex: 1; }
.cart-item { padding: 15px 0; display: grid; grid-template-columns: 68px 1fr auto; gap: 13px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 68px; height: 68px; padding: 5px; border-radius: 13px; background: #efede6; object-fit: contain; }
.cart-item h3 { margin: 0 0 6px; font-size: 13px; }
.cart-item small { color: var(--muted); }
.qty { margin-top: 9px; display: flex; align-items: center; gap: 10px; }
.qty button { width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 8px; background: transparent; cursor: pointer; }
.cart-variants { margin-top: 9px; display: grid; gap: 6px; }
.cart-variants > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 11px; }
.cart-variants .qty { margin-top: 0; }
.remove { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.cart-summary { border-top: 1px solid var(--line); padding-top: 20px; }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 18px; }
.cart-summary p { color: var(--muted); font-size: 11px; line-height: 1.5; }
.checkout-button { width: 100%; }
.drawer-backdrop { position: fixed; inset: 0; border: 0; background: rgba(16,19,26,.48); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .2s; }
body.cart-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
body.cart-open { overflow: hidden; }

footer { padding: 55px 5vw 34px; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 30px; align-items: start; background: var(--ink); color: #fff; }
footer p { margin: 0; color: #aeb4c0; line-height: 1.6; }
footer > div:nth-of-type(2) { display: grid; gap: 7px; text-align: right; }
footer > small { grid-column: 1/-1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #8d93a0; }
.infrastructure-credit {
  grid-column: 1 / -1; width: 100%; padding-top: 14px; text-align: center;
  color: #8d93a0; font-size: 10px; line-height: 1.5;
}
.infrastructure-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.security-credit { grid-column: 1 / -1; width: 100%; margin-top: -6px; text-align: center; color: #aeb4c0; font-size: 10px; letter-spacing: .03em; }
.checkout-credit { display: block; padding: 18px 5vw 24px; background: var(--ink); }
.checkout-credit .infrastructure-credit { padding: 0; }
.checkout-credit .security-credit { margin-top: 8px; }
.footer-brand .brand-mark { background: var(--acid); color: var(--ink); }
.footer-brand small { color: #9299a7; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 120; transform: translate(-50%, 30px); opacity: 0; padding: 13px 18px; border-radius: 13px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; transition: .2s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.checkout-page { min-height: 100vh; background: var(--paper); }
.checkout-shell { width: min(1180px, 92vw); margin: 50px auto 100px; display: grid; grid-template-columns: 1fr .78fr; gap: 28px; }
.checkout-card { padding: clamp(24px, 4vw, 46px); border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.checkout-card h1 { margin: 0 0 12px; font: 700 clamp(38px, 5vw, 62px)/1 "Space Grotesk", sans-serif; letter-spacing: -.05em; }
.checkout-card > p { color: var(--muted); line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.form-grid label.full { grid-column: 1/-1; }
.form-grid input, .form-grid textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; outline: 0; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--blue); }
.customer-type { margin: 24px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 0; }
.customer-type legend { grid-column: 1 / -1; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 800; }
.customer-type label { position: relative; cursor: pointer; }
.customer-type input { position: absolute; opacity: 0; pointer-events: none; }
.customer-type span { min-height: 74px; padding: 15px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: 15px; }
.customer-type small { margin-top: 4px; color: var(--muted); }
.customer-type input:checked + span { border-color: var(--blue); background: #eef2ff; box-shadow: inset 0 0 0 1px var(--blue); }
.company-fields, .shipping-fields { margin: 24px 0; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #faf9f5; }
.company-fields[hidden] { display: none; }
.company-fields .kicker, .shipping-fields .kicker { margin-top: 0; }
.shipping-info { margin-bottom: 17px; padding: 13px 15px; display: grid; gap: 3px; border-radius: 12px; background: #eaf4d2; }
.shipping-info strong { font-size: 12px; }
.shipping-info span { color: #596540; font-size: 10px; }
.shipping-summary { margin-top: 12px; padding-top: 12px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 12px; }
.shipping-summary strong { color: var(--blue); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.checkout-button:disabled { opacity: .55; cursor: wait; }
.agreement { margin: 18px 0; display: flex; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.order-list { margin-top: 20px; display: grid; gap: 12px; }
.order-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 11px; align-items: center; }
.order-row img { width: 52px; height: 52px; padding: 5px; border-radius: 10px; background: #efede6; object-fit: contain; }
.order-row b { display: block; font-size: 12px; }
.order-row small { color: var(--muted); }
.order-variants { display: block; margin-top: 4px; color: #166534; font-size: 10px; font-weight: 800; line-height: 1.5; }
.order-total { margin-top: 22px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 20px; }
.form-message { margin-top: 14px; padding: 12px; border-radius: 10px; background: #fff2ec; color: #9d3511; font-size: 12px; }

@media (max-width: 1050px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; gap: 46px; }
  .hero-panel { justify-self: start; }
  .printed-hero { grid-template-columns: 1fr; }
  .printed-showcase { min-height: 500px; }
}
@media (max-width: 760px) {
  .announcement span:nth-child(n+2) { display: none; }
  .site-header { height: 72px; padding: 0 4vw; }
  .brand b { font-size: 15px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand small { display: none; }
  .main-nav { order: 2; margin-left: auto; margin-right: 8px; }
  .main-nav > a { display: none; }
  .main-nav > a.nav-highlight { display: block; padding: 9px 11px; font-size: 10px; }
  .nav-dropdown-toggle { min-height: 40px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
  .nav-dropdown-menu {
    position: fixed; top: 114px; left: 4vw; right: 4vw; width: auto; max-height: calc(100vh - 132px);
    grid-template-columns: 1fr; transform: translateY(8px);
  }
  .nav-dropdown-menu button:first-child { grid-column: auto; }
  .printed-nav-dropdown { display: block; }
  .printed-nav-menu { left: auto; right: 0; width: min(92vw, 390px); }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu { transform: translateY(0); }
  .product-type-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-trigger { order: 3; padding: 8px 9px 8px 13px; font-size: 11px; }
  .cart-trigger span { margin-left: 5px; min-width: 24px; height: 24px; }
  .hero { width: 94vw; margin-top: 18px; padding: 34px 24px; border-radius: 26px; }
  .hero h1 { font-size: 53px; }
  .printed-hero { width: 94vw; margin-top: 18px; padding: 34px 24px; border-radius: 26px; }
  .printed-hero h1 { font-size: 53px; }
  .printed-showcase { min-height: 380px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr .6fr; gap: 10px; }
  .showcase-card-main { grid-column: 1 / 3; grid-row: auto; }
  .shop { width: 92vw; }
  .shop-heading { align-items: stretch; flex-direction: column; }
  .merchandising { width: 92vw; margin-bottom: 72px; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-info { padding: 13px; }
  .product-info h3 { min-height: 59px; font-size: 14px; }
  .product-actions { grid-template-columns: 1fr; }
  .product-actions .buy-now { width: 100%; }
  .product-actions .campaign-buy { white-space: normal; }
  .product-panel { width: 100%; padding: 18px; }
  .product-panel-media { height: 340px; margin-top: -34px; }
  .product-panel-body { padding: 24px 2px 10px; }
  .product-panel-meta { grid-template-columns: 1fr; }
  .product-panel-actions { grid-template-columns: 1fr; }
  .panel-options-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .panel-option-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { border-right: 0; border-bottom: 1px solid var(--line); }
  footer { grid-template-columns: 1fr; }
  footer > div:nth-of-type(2) { text-align: left; }
  .checkout-shell { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .customer-type { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
