:root {
  color-scheme: light;
  --bg: #f8f8f6;
  --text: #141414;
  --muted: #5d5d5d;
  --border: #e5e5e1;
  --accent: #111111;
  --soft: #efefec;
  --focus: #9aa0a6;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  padding: 1rem 1.5rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  color: var(--muted);
}

.nav-login {
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1rem 1.5rem 3rem;
}

.hero {
  background: #fff;
  padding: 2.5rem 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-brand {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.text-link {
  text-decoration: underline;
  font-weight: 600;
}

.section {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 2rem 1.6rem;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.section-footer {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

.video {
  margin-top: 1.5rem;
}

.video-placeholder {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.video-placeholder img,
.video-placeholder iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.section-footnote {
  margin-top: 1rem;
  color: var(--muted);
}

.product-body {
  background: #f3f3f0;
}

.product-page {
  padding: 1rem 1.5rem 3rem;
}

.product-shell {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2rem;
}

.product-status {
  font-weight: 600;
  color: var(--muted);
}

.product-layout {
  display: grid;
  gap: 2rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery-main {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.product-gallery-main img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.75rem;
}

.product-gallery-thumbs .thumb {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-detail {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.product-detail h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.product-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: var(--soft);
}

.price-card.highlight {
  background: #111;
  color: #fff;
}

.price-label {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.product-sizes h2 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.size-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
}

.product-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.columns {
  display: grid;
  gap: 2rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.list li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.media-grid img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  filter: saturate(0.85) contrast(0.95);
  background: var(--soft);
}

.pillars {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.pillars li {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--soft);
  font-weight: 500;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.product-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card h3 {
  margin: 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
}

.contact-card {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-info {
  color: var(--muted);
}

.site-footer {
  padding: 2rem 1.5rem 4rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 640px;
  width: calc(100% - 2rem);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: var(--soft);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-body {
  display: grid;
  gap: 1rem;
}

.modal-carousel {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--soft);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.35s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.carousel-control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.carousel-control.prev {
  left: 0.75rem;
}

.carousel-control.next {
  right: 0.75rem;
}

.carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
}

.carousel-indicators button.is-active {
  background: var(--accent);
}

.muted {
  color: var(--muted);
}

.privacy {
  margin: 0 1.5rem 3rem;
}

.product-shell {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.product-hero {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 1.8rem;
  display: grid;
  gap: 1.5rem;
}

.product-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.product-meta {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.product-grid-detail {
  display: grid;
  gap: 1.5rem;
}

.product-gallery {
  display: grid;
  gap: 0.8rem;
}

.product-gallery img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.price-grid {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--soft);
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.price-row span {
  color: var(--muted);
  font-weight: 500;
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.size-pill {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.view-mode-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}

.view-mode-btn {
  padding: 0.5rem 1.2rem;
  border: none;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.view-mode-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.view-mode-btn:not(.is-active):hover {
  background: var(--soft);
}

.owner-section {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.owner-grid {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fef9ed;
  border: 1px solid #f0dca0;
}

.owner-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.owner-row span {
  color: var(--muted);
  font-weight: 500;
}

.owner-row strong.positive {
  color: #05603a;
}

.owner-row strong.negative {
  color: #b42318;
}

.status-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1rem;
  color: var(--muted);
}

.status-card.error {
  border-color: #f1c3c3;
  background: #fff5f5;
  color: #8d1f1f;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 560px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
  }

  .nav-login {
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.5rem 3rem 0;
  }

  .nav {
    gap: 1.5rem;
  }

  main {
    padding: 1.5rem 3rem 4rem;
  }

  .hero {
    padding: 3.5rem;
  }

  .hero-actions {
    flex-direction: row;
  }

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

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

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

  .contact-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .product-grid-detail {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.catalog-header {
  background: var(--catalog-primary, var(--accent));
  color: #fff;
  padding: 0.75rem 1rem;
}

.catalog-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.catalog-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
}

.catalog-store-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.catalog-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1rem;
  text-align: center;
}

.catalog-hero h1 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  color: var(--catalog-primary, var(--text));
}

.catalog-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.catalog-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.catalog-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.catalog-toolbar {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.catalog-toolbar label {
  font-weight: 600;
}

.catalog-toolbar select {
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  background: #fff;
}

.catalog-table-shell {
  margin-top: 1rem;
  overflow-x: auto;
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.catalog-table th,
.catalog-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.8rem;
  text-align: left;
}

.catalog-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.bo-shell {
  max-width: 920px;
  margin: 24px auto;
  padding: 16px;
}

.bo-modules,
.bo-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.bo-module,
.bo-filter {
  border: 1px solid #d0d7de;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

.bo-module--active,
.bo-filter--active {
  background: #111827;
  color: #fff;
}

.bo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.bo-list li {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
}

.bo-restore-guard {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0;
}

.bo-restore-item p {
  margin: 4px 0;
}

.bo-restore-lock {
  color: #b42318;
  font-weight: 600;
}

#restore-request-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bo-payments-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.bo-maintenance-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.bo-maintenance-status {
  min-height: 1.3rem;
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.bo-maintenance-status[data-tone="ok"] {
  color: #05603a;
}

.bo-maintenance-status[data-tone="warning"] {
  color: #9a3412;
}

.bo-maintenance-status[data-tone="error"] {
  color: #b42318;
  font-weight: 600;
}

.bo-maintenance-status[data-tone="loading"] {
  color: #1d4ed8;
}

.bo-task-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


.bo-load-more {
  margin-top: 10px;
}

/* ── FLOKI Brand: Splash Screen ── */
.floki-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0F1A;
  transition: opacity 0.6s ease;
}

.floki-splash__img {
  width: min(320px, 80vw);
  height: auto;
}

.floki-splash--hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── FLOKI Brand: Nav Logo ── */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 38px;
  width: auto;
  display: block;
}

/* --- 2026-04 look & feel refresh (public site) --- */
:root {
  --bg: #f5f7fb;
  --text: #0f172a;
  --muted: #4b5563;
  --border: #dbe3ef;
  --accent: #0b4fc9;
  --soft: #eef3fb;
  --focus: #1d4ed8;
}

body {
  background:
    radial-gradient(1200px 560px at -12% -12%, rgba(59, 130, 246, 0.16), transparent 70%),
    radial-gradient(900px 420px at 120% 0%, rgba(16, 185, 129, 0.1), transparent 65%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(248, 251, 255, 0.76));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-link {
  color: #334155;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero,
.section,
.product-hero,
.product-shell,
.catalog-table-shell {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 20px 46px -34px rgba(15, 23, 42, 0.55);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 8%, #eff6ff 58%, #eefaf5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.24), rgba(59, 130, 246, 0));
  pointer-events: none;
}

.hero h1 {
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.button {
  border-color: rgba(15, 23, 42, 0.08);
}

.button.primary {
  border: none;
  background: linear-gradient(135deg, #0b4fc9 0%, #1d4ed8 48%, #0ea5a3 100%);
  box-shadow: 0 12px 30px -16px rgba(29, 78, 216, 0.7);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.85);
}

.product-card {
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -24px rgba(37, 99, 235, 0.5);
}

.catalog-header {
  background: linear-gradient(135deg, #0b4fc9 0%, #1e40af 50%, #0f766e 100%);
  box-shadow: 0 10px 30px -24px rgba(30, 64, 175, 0.8);
}

.catalog-hero h1 {
  color: #0f172a;
  letter-spacing: -0.02em;
}

.catalog-table {
  border-collapse: separate;
  border-spacing: 0;
}

.catalog-table th {
  background: #eef3ff;
}

.catalog-table tbody tr:hover td {
  background: #f8fbff;
}

.catalog-table td:first-child {
  font-weight: 600;
}

.product-gallery img {
  background: linear-gradient(140deg, #eef3fb, #e0ebfb);
}

.price-grid {
  background: linear-gradient(145deg, #eef4ff 0%, #edf8f5 100%);
}

@media (max-width: 768px) {
  .site-header {
    border-bottom-color: rgba(15, 23, 42, 0.04);
  }

  .hero {
    padding: 2rem 1.2rem;
  }

  .section,
  .product-hero,
  .product-shell {
    border-radius: 18px;
  }

  .catalog-table-shell {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.2rem;
  }
}

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

.mobile-menu-open {
  display: none;
  border: none;
  background: transparent;
  color: #0e5bd8;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(5px);
}

.mobile-menu-panel {
  margin-left: auto;
  width: min(88vw, 360px);
  height: 100%;
  background: #faf9f7;
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: #0e5bd8;
}

.mobile-menu-head button {
  border: none;
  background: #eef3fb;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-size: 1rem;
}

.mobile-menu-links {
  display: grid;
  gap: 0.3rem;
}

.mobile-menu-links a {
  padding: 0.9rem 0.8rem;
  border-radius: 0.75rem;
  color: #1f2937;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
}

.mobile-menu-links a:hover {
  background: #eef3fb;
  color: #0e5bd8;
}

.landing-body {
  background:
    radial-gradient(900px 480px at -10% -8%, rgba(0, 68, 170, 0.14), transparent 70%),
    radial-gradient(760px 420px at 120% 0%, rgba(0, 106, 99, 0.12), transparent 66%),
    #faf9f7;
}

.landing-header .nav {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-header-actions {
  display: inline-flex;
  gap: 0.5rem;
}

.landing-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.6rem;
}

.landing-hero-media {
  border-radius: 1.7rem;
  overflow: hidden;
  min-height: 320px;
  background: #f4f3f1;
}

.landing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #99efe5;
  color: #006f67;
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
}

.hero-live-pill span {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #006a63;
  animation: pulse 1.35s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.catalog-body {
  background: #faf9f7;
}

.catalog-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 249, 247, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 68, 170, 0.08);
}

.catalog-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.catalog-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
}

.catalog-store-name {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  color: #0e5bd8;
  letter-spacing: -0.01em;
}

.catalog-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.catalog-nav a {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  color: #475569;
  padding: 0.35rem 0.65rem;
  border-radius: 0.65rem;
}

.catalog-nav a[aria-current="page"],
.catalog-nav a:hover {
  color: #0e5bd8;
  background: #eef3fb;
}

.catalog-top-cta {
  background: linear-gradient(135deg, #0044aa, #0e5bd8);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
}

.catalog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1rem 3rem;
}

.catalog-heading h1,
.catalog-hero h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.catalog-heading {
  margin: 1.2rem 0 1rem;
}

.catalog-heading h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  color: #1a1c1b;
}

.catalog-heading p {
  margin: 0.45rem 0 0;
  color: #424654;
}

.catalog-toolbar {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.catalog-toolbar-main {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 260px);
  gap: 0.8rem;
}

.catalog-search,
#storeFilter {
  border: 1px solid rgba(115, 119, 134, 0.24);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
  background: #e3e2e0;
  color: #1a1c1b;
}

.catalog-search:focus,
#storeFilter:focus {
  outline: none;
  border-color: #0e5bd8;
  box-shadow: 0 0 0 1px #0e5bd8;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px -18px rgba(0, 68, 170, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -20px rgba(0, 68, 170, 0.45);
}

.catalog-card-media {
  aspect-ratio: 4 / 5;
  background: #f4f3f1;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-card-body {
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.catalog-card-category {
  margin: 0;
  color: #5b6172;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-card-title {
  margin: 0;
  color: #1a1c1b;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.catalog-card-sku {
  margin: 0;
  color: #424654;
  font-size: 0.84rem;
}

.catalog-card-prices {
  margin-top: 0.25rem;
  display: grid;
  gap: 0.15rem;
}

.catalog-card-prices strong {
  color: #0044aa;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.15rem;
}

.catalog-card-prices span {
  color: #006a63;
  font-size: 0.83rem;
  font-weight: 600;
}

.catalog-card-skeleton {
  pointer-events: none;
  animation: pulse-skeleton 1.3s ease-in-out infinite;
}

.catalog-card-skeleton .catalog-card-media,
.catalog-card-skeleton .catalog-card-category,
.catalog-card-skeleton .catalog-card-title,
.catalog-card-skeleton .catalog-card-sku,
.catalog-card-skeleton .catalog-card-prices strong,
.catalog-card-skeleton .catalog-card-prices span {
  color: transparent;
  background: linear-gradient(90deg, #eef2f8 25%, #dde6f3 45%, #eef2f8 65%);
  background-size: 180% 100%;
  border-radius: 0.4rem;
}

@keyframes pulse-skeleton {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}

.catalog-empty-state {
  grid-column: 1 / -1;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 1rem;
  background: #f4f3f1;
  color: #424654;
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .catalog-topbar-inner {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .catalog-nav {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 0.25rem;
  }

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

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

  .mobile-menu-open {
    display: inline-block;
  }

  .landing-header-actions {
    display: none;
  }

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

  .landing-hero-media {
    min-height: 240px;
    order: 2;
  }
}

@media (max-width: 520px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
