:root {
  --black: #0a0a0c;
  --black-soft: #141218;
  --purple: #7c3aed;
  --purple-deep: #4c1d95;
  --purple-soft: #f3e8ff;
  --gold: #e0b52a;
  --gold-hover: #f3cc4a;
  --ink: #141218;
  --muted: #5c5668;
  --line: #ece7f4;
  --bg: #f7f4fb;
  --card: #ffffff;
  --success: #1f8a4c;
  --navy: #7c3aed;
  --navy-dark: #0a0a0c;
  --radius: 8px;
  --header-h: 72px;
  --max: 1280px;
  --shadow: 0 1px 2px rgba(20, 10, 40, 0.06), 0 8px 20px rgba(76, 29, 149, 0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(124, 58, 237, 0.12), transparent 55%),
    radial-gradient(900px 360px at 100% 0%, rgba(224, 181, 42, 0.12), transparent 50%),
    var(--bg);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
.wrap {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
}

/* Top utility */
.utility {
  background: var(--black);
  color: #fff;
  font-size: 12px;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  min-height: 34px;
}
.utility a { color: #efe7ff; }
.utility a:hover { color: var(--gold); }
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.utility-left > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dot { opacity: 0.45; }

.ship-banner {
  --ship-ink: #1a0b2e;
  overflow: hidden;
  color: var(--ship-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffd24a 0%, #ff7a18 25%, #e0b52a 50%, #c084fc 75%, #ffd24a 100%);
  background-size: 220% 100%;
  animation: ship-banner-glow 7s linear infinite;
}
.ship-banner--progress {
  background: linear-gradient(90deg, #ffb703 0%, #fb8500 22%, #ffd24a 48%, #7c3aed 78%, #ffb703 100%);
  background-size: 220% 100%;
}
.ship-banner--unlocked {
  background: linear-gradient(90deg, #16a34a 0%, #ffd24a 35%, #22c55e 70%, #e0b52a 100%);
  background-size: 220% 100%;
}
.ship-banner-viewport {
  overflow: hidden;
  white-space: nowrap;
}
.ship-banner-track {
  display: inline-flex;
  width: max-content;
  animation: ship-banner-scroll 16s linear infinite;
}
.ship-banner-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 48px 10px 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.ship-banner:hover .ship-banner-track {
  animation-play-state: paused;
}
@keyframes ship-banner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ship-banner-glow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .ship-banner,
  .ship-banner-track {
    animation: none;
  }
  .ship-banner-viewport {
    text-align: center;
  }
  .ship-banner-track {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .ship-banner-copy[aria-hidden="true"] {
    display: none;
  }
}

/* Header */
.header {
  background: linear-gradient(90deg, #3b0764 0%, #5b21b6 52%, #7c3aed 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--gold);
}
.header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.brand img,
.brand svg {
  height: 67px !important;
  max-height: 67px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
  object-fit: contain;
}
.brand-name { display: none; }
.header-search {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.header-search input,
.header-search input[type="search"] {
  flex: 1 1 0%;
  width: auto;
  min-width: 0;
  border: 0;
  height: 42px;
  padding: 0 14px;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
  position: static;
  margin: 0;
}
.header-search button {
  flex: 0 0 48px;
  width: 48px;
  min-width: 48px;
  height: 42px;
  border: 0;
  margin: 0;
  padding: 0;
  position: static;
  background: linear-gradient(180deg, #f3cc4a 0%, #d4a017 100%);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.header-search button:hover { background: var(--gold-hover); }
.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  gap: 8px;
}
.icon-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.icon-btn:hover { background: rgba(255,255,255,0.08); }
.icon-btn svg { flex-shrink: 0; }
.cart-count {
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin: 0 0 0 2px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}
.cart-count[hidden] {
  display: none !important;
}
.menu-toggle { display: none !important; }

/* Categories */
.nav-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-bar .wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  overflow-x: auto;
}
.dept-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-soft);
  border: 0;
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.dept-btn[aria-expanded="true"] { background: #e9d5ff; }
.cats {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cats a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-radius: 4px;
  white-space: nowrap;
}
.cats a:hover, .cats a.active {
  background: var(--purple-soft);
  color: var(--purple-deep);
}

.dept-panel {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.dept-panel.open { display: block; }
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  padding: 16px 0 20px;
}
.dept-label {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.dept-label:first-child { margin-top: 0; }
.dept-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.dept-card:hover { border-color: var(--purple); }
.dept-card strong { display: block; font-size: 14px; }
.dept-card span { color: var(--muted); font-size: 12px; }

/* Hero */
.hero {
  padding: 20px 0 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
}
.banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 280px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(115deg, #000 0%, #2e1065 48%, #7c3aed 78%, #e0b52a 130%);
}
.banner.alt {
  background: linear-gradient(115deg, #120818 0%, #5b21b6 62%, #e0b52a 140%);
  min-height: 134px;
  grid-template-columns: 1fr 0.7fr;
  padding: 18px 20px;
}
.banner.clocks {
  background: linear-gradient(115deg, #000 0%, #1e1033 45%, #6d28d9 85%, #f3cc4a 150%);
}
.banner-kicker {
  margin: 0 0 8px;
  font-weight: 700;
  color: #e0b52a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.banner > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.banner h1, .banner h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.banner.alt h2 { font-size: 22px; }
.banner p { margin: 0 auto 16px; color: #f3e8ff; font-size: 15px; max-width: 38ch; }
.banner.alt p { font-size: 13px; margin-bottom: 10px; }
.banner img {
  justify-self: center;
  height: 230px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
.banner.alt img { height: 110px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(180deg, #f3cc4a 0%, #d4a017 100%);
  color: var(--black);
}
.btn-gold:hover { filter: brightness(1.06); }
.btn-navy {
  background: linear-gradient(90deg, #000 0%, #5b21b6 100%);
  color: #fff;
}
.btn-navy:hover { filter: brightness(1.1); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.side-banners { display: grid; gap: 12px; }

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px 0 18px;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: 12px; }

.local-seo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.local-seo h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.local-seo p {
  margin: 0 0 10px;
  color: var(--muted);
  max-width: 72ch;
}
.local-seo a {
  color: var(--purple-deep);
  font-weight: 700;
}

/* Rails */
.section { padding: 8px 0 22px; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.section-head a { color: var(--purple-deep); font-weight: 700; font-size: 13px; }
.makers-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}
#for-makers { scroll-margin-top: 88px; }
.rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card:hover { outline: 1px solid #c4b5fd; }
.thumb {
  aspect-ratio: 1;
  background: #fafafa;
  display: grid;
  place-items: center;
  padding: 10px;
}
.thumb img { max-height: 100%; object-fit: contain; }
.card-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: auto;
}
.badge {
  display: inline-block;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  width: fit-content;
}
.add {
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #f3cc4a 0%, #d4a017 100%);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  display: grid;
  place-items: center;
  color: var(--black);
}
.add:hover { filter: brightness(1.06); }

.cats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.cat-tile {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cat-tile img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #f6f6f6;
}
.cat-tile div { padding: 12px 14px 14px; }
.cat-tile h3 { margin: 0 0 4px; font-size: 15px; }
.cat-tile p { margin: 0; color: var(--muted); font-size: 13px; }

.promo {
  background: linear-gradient(100deg, #000 0%, #3b0764 55%, #7c3aed 100%);
  border: 1px solid rgba(224, 181, 42, 0.35);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}
.promo h2 { margin: 0 0 4px; font-size: 18px; color: #fff; }
.promo p { margin: 0; color: #efe9ff; font-size: 14px; }
.malaika-print-banner-kicker {
  margin: 0 0 6px;
  color: #e0b52a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.malaika-print-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.malaika-print-banner-actions .btn {
  white-space: nowrap;
}
.cat-tile--service {
  border: 1px solid rgba(224, 181, 42, 0.45);
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.12);
}
.cat-tile--service h3 {
  color: #4c1d95;
}

.footer {
  background: linear-gradient(180deg, #1a1028 0%, #000 100%);
  color: #fff;
  margin-top: 12px;
  padding: 36px 0 18px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-logo {
  height: 67px;
  max-height: 67px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  margin: 0 0 12px;
}
.footer h3 { color: #fff; margin: 0 0 12px; font-size: 14px; }
.footer p { color: #d7dde6; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 8px; }
.footer a { color: #fff; }
.footer a:hover { color: var(--gold); }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.socials a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(224, 181, 42, 0.08);
}
.legal {
  border-top: 1px solid #3b2a55;
  margin-top: 24px;
  padding-top: 14px;
  color: #9aa3b0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.wa:hover { filter: brightness(1.05); }

.drawer {
  display: none;
}

html {
  overflow-x: clip;
}
body {
  overflow-x: hidden;
}

@media (max-width: 1100px) {
  .cats {
    overflow-x: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .cats::-webkit-scrollbar { display: none; }
  .nav-bar .wrap {
    overflow-x: auto;
  }
}

@media (max-width: 1024px) {
  .rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dept-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .footer-grid, .trust, .cats-row { grid-template-columns: 1fr 1fr; }
  .banner {
    min-height: 0;
    padding: 22px 20px;
  }
  .banner img {
    width: 100%;
    max-width: 240px;
    height: auto;
    max-height: 220px;
    justify-self: center;
  }
  .banner.alt img {
    max-width: 120px;
    max-height: 120px;
  }
}

@media (max-width: 900px) {
  .utility {
    font-size: 11px;
  }
  .utility .wrap {
    min-height: 28px;
    gap: 8px;
  }
  .hide-sm,
  .icon-label,
  .header-wa {
    display: none !important;
  }
  .header .wrap {
    gap: 10px;
    min-height: 56px;
  }
  .brand img,
  .brand svg {
    height: 52px !important;
    max-height: 52px !important;
  }
  .header-actions {
    gap: 2px;
  }
  .header-actions .icon-btn {
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .banner h1 { font-size: 26px; line-height: 1.15; }
  .banner:not(.alt) {
    min-height: 0;
    padding: 22px 20px;
    gap: 12px;
  }
  .banner:not(.alt) img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 240px;
    justify-self: center;
  }
  .banner.alt {
    grid-template-columns: minmax(0, 1fr) 108px;
    min-height: 0;
    padding: 14px 16px;
    gap: 10px;
    align-items: center;
  }
  .banner.alt img {
    width: 108px;
    height: 108px;
    max-width: 108px;
    max-height: 108px;
    justify-self: center;
  }
  .trust,
  .cats-row,
  .footer-grid,
  .rail {
    grid-template-columns: 1fr 1fr;
  }
  .promo { flex-direction: column; align-items: stretch; }
  .promo .btn { width: 100%; text-align: center; }
  .malaika-print-banner-actions { width: 100%; }
  .malaika-print-banner-actions .btn { flex: 1; text-align: center; }
  .legal { flex-direction: column; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .banner:not(.alt) {
    grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.85fr);
    align-items: center;
    padding: 16px 18px;
    gap: 12px;
  }
  .banner:not(.alt) img {
    width: 100%;
    max-width: 200px;
    max-height: 170px;
    justify-self: center;
  }
  .banner.alt {
    grid-template-columns: minmax(0, 1fr) 88px;
  }
}

@media (max-width: 720px) {
  .header .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 6px 0 8px;
    min-height: 0;
  }
  .brand img,
  .brand svg {
    height: 44px !important;
    max-height: 44px !important;
  }
  .header-search {
    flex: 1 0 100%;
    order: 3;
    max-width: none;
    width: 100%;
  }
  .header-search input,
  .header-search input[type="search"],
  .header-search button {
    height: 40px;
  }
  .menu-toggle {
    display: inline-flex !important;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .utility-left span:nth-child(n+2),
  .utility-right a:not(:first-child) {
    display: none !important;
  }
  .nav-bar {
    display: none !important;
  }
  .dept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 0 16px;
  }
  .dept-card {
    padding: 12px 10px;
    min-height: 44px;
    justify-content: center;
  }
  .dept-card strong { font-size: 13px; }
  .dept-card span { display: none; }
  .hero {
    padding: 12px 0 8px;
  }
  .banner h1 { font-size: 22px; }
  .banner p { font-size: 14px; margin-bottom: 12px; }
  .banner:not(.alt) {
    grid-template-columns: 1fr;
    padding: 16px 14px 10px;
    gap: 12px;
    align-items: center;
  }
  .banner:not(.alt) img {
    width: min(100%, 300px);
    max-width: 300px;
    max-height: 280px;
    justify-self: center;
  }
  .banner.alt {
    grid-template-columns: minmax(0, 1fr) 92px;
    padding: 12px;
  }
  .banner.alt h2 { font-size: 18px; }
  .banner.alt img {
    width: 92px;
    height: 92px;
    max-width: 92px;
    max-height: 92px;
  }
  .ship-banner {
    font-size: 11px;
  }
  .wa {
    width: 48px;
    height: 48px;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(var(--max), calc(100% - 16px));
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cat-tile img { height: 120px; }
  .banner h1 { font-size: 22px; }
}
