:root {
  --ink: #11110f;
  --muted: #6f6f6f;
  --line: #e6e6e6;
  --paper: #ffffff;
  --white: #fff;
  --products-gutter: max(24px, calc((100vw - 1280px) / 2));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Apple SD Gothic Neo", sans-serif;
  color: var(--ink);
  background: var(--paper);
  word-break: keep-all;
}

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

img {
  display: block;
  max-width: 100%;
}

.products-shell {
  min-height: 100vh;
}

.products-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px var(--products-gutter);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.products-brand {
  display: inline-flex;
  align-items: center;
}

.products-brand .brand-logo {
  height: 82px;
  width: auto;
  display: block;
}

.products-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.products-menu-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(20px, 4vw, 58px);
  color: #111;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.products-icon-nav {
  gap: 18px;
}

.header-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #11110f;
}

.header-icon-link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  color: #11110f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.products-main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.products-hero {
  display: block;
  margin-bottom: 20px;
}

.hero-copy-card,
.hero-side-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-copy-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .42) 100%),
    url("/assets/blvckcamel-hero.jpg") center/cover no-repeat;
}

.hero-copy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .44) 48%, rgba(0, 0, 0, .28) 100%);
  pointer-events: none;
}

.hero-copy-card > * {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-copy-card h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.hero-copy-card p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.72;
}

.hero-side-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.hero-side-section + .hero-side-section {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-side-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.hero-quick-link {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.hero-quick-link:hover {
  transform: translateY(-1px);
  border-color: #cfcfcf;
  background: #f7f7f7;
}

.hero-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-note-list li {
  position: relative;
  padding-left: 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.hero-note-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #11110f;
  border-radius: 50%;
}

.controls-card {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.controls-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0 0;
  border-top: 1px solid rgba(17, 17, 15, .08);
}

.search-box,
.sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, .12);
  background: transparent;
}

.search-box span,
.sort-box span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.search-box input,
.sort-box select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
}

.filter-group + .filter-group {
  margin-top: 14px;
}

.filter-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}

.chip.active {
  color: var(--ink);
  background: #eeeeee;
  border-color: rgba(17, 17, 15, .1);
}

.category-group {
  margin-bottom: 14px;
}

.category-group .filter-label {
  display: none;
}

#categoryFilters {
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 17, 15, .08);
  scrollbar-width: none;
}

#categoryFilters::-webkit-scrollbar {
  display: none;
}

#categoryFilters .chip {
  min-height: auto;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #6f6f6f;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

#categoryFilters .chip.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
  background: transparent;
}

#brandFilterBlock {
  margin-top: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
}

.product-card {
  position: relative;
  display: block;
  background: transparent;
  transition: transform .18s ease, opacity .18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 14px;
}

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

.badge-stack {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(17, 17, 15, .08);
  color: #fff;
  color: #11110f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.product-card-body {
  padding: 12px 2px 0;
}

.product-card-brand {
  margin: 0 0 4px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.product-card-name {
  min-height: 44px;
  margin: 0 0 8px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
}

.product-card-meta span {
  color: #ef6253;
  font-size: 15px;
  font-weight: 900;
}

.product-card-meta strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.empty-state {
  padding: 48px 18px;
  border: 1px dashed var(--line);
  background: var(--white);
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

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

@media (max-width: 900px) {
  .products-header {
    gap: 18px;
    padding: 18px var(--products-gutter);
  }

  .products-brand .brand-logo {
    height: 66px;
  }

  .products-nav {
    gap: 16px;
    font-size: 13px;
  }

  .products-menu-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-top: 12px;
    font-size: 13px;
    scrollbar-width: none;
  }

  .products-menu-nav::-webkit-scrollbar {
    display: none;
  }

  .products-main {
    width: min(100% - 48px, 1280px);
    padding: 22px 0 56px;
  }

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

  #categoryFilters {
    gap: 18px;
  }

  #categoryFilters .chip {
    font-size: 14px;
    padding-bottom: 12px;
  }

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

@media (max-width: 640px) {
  .products-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 14px var(--products-gutter);
  }

  .products-brand .brand-logo {
    height: 56px;
  }

  .products-nav {
    width: auto;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: visible;
    padding-bottom: 0;
    white-space: nowrap;
    scrollbar-width: auto;
  }

  .products-nav::-webkit-scrollbar {
    display: none;
  }

  .header-icon-link {
    width: 38px;
    height: 38px;
  }

  .header-icon-link svg {
    width: 27px;
    height: 27px;
  }

  .hero-copy-card {
    padding: 22px 18px;
  }

  .hero-copy-card h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-copy-card p {
    font-size: 15px;
  }

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

.blvck-collection-page {
  width: min(1440px, calc(100% - 48px));
  padding-top: 28px;
}

.collection-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.collection-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .52) 45%, rgba(0, 0, 0, .18) 100%),
    var(--banner-image, url("/assets/blvckcamel-hero.jpg")) center/cover no-repeat;
  transform: scale(1.01);
}

.collection-banner > div {
  position: relative;
  z-index: 1;
  width: min(900px, 88%);
  padding: 54px;
  text-align: center;
}

.collection-banner p {
  display: none;
}

.collection-banner h1,
.collection-banner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  word-break: keep-all;
}

.collection-banner h2 {
  max-width: none;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

.collection-banner a {
  display: none;
}

.collection-banner-main {
  --banner-image: url("/assets/blvckcamel-hero.jpg");
}

.collection-banner-leather {
  --banner-image: url("/assets/secondary-archive-hero.png");
}

.collection-banner-object {
  --banner-image: url("/assets/banner-loop-720-poster.jpg");
}

.collection-banner-outlet {
  --banner-image: url("/assets/blvckcamel-hero.jpg");
}

.collection-block {
  margin-bottom: 64px;
}

.collection-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.collection-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
}

.collection-heading a {
  color: #111;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 20px;
}

.collection-grid .product-card {
  min-width: 0;
}

.collection-grid .product-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.16;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 0, 0, .08), transparent 34%),
    #f5f5f5;
}

.collection-grid .product-card-media.has-image {
  background-color: #f5f5f5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.collection-grid .product-card-media::after {
  content: "Cutout image ready";
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(17, 17, 15, .28);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-grid .product-card-media.has-image::after {
  display: none;
}

.product-card-placeholder {
  width: 62%;
  height: 46%;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 44%),
    var(--placeholder-color, #111);
  box-shadow:
    0 28px 34px rgba(0, 0, 0, .18),
    inset 0 -10px 22px rgba(255, 255, 255, .06);
}

.collection-grid .product-card-brand {
  margin-bottom: 3px;
  color: #111;
  font-size: 14px;
}

.collection-grid .product-card-name {
  min-height: 40px;
  color: #555;
  font-size: 14px;
}

.collection-grid .product-card-meta span {
  color: #111;
}

.product-card-swatches {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
  margin-top: 10px;
}

.product-card-swatches span {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 999px;
  background: var(--swatch, #111);
  border: 1px solid rgba(0, 0, 0, .16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .85) inset;
}

.collection-large-link {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin: 0 0 54px;
  padding: 54px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .58)),
    url("/assets/blvckcamel-hero.jpg") center/cover no-repeat;
  color: #fff;
}

.collection-large-link span,
.collection-large-link em {
  display: none;
}

.collection-large-link strong {
  max-width: 860px;
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.products-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 0 18px;
  border-top: 1px solid #e8e8e8;
}

.products-footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .08em;
}

.products-footer p {
  max-width: 520px;
  margin: 0;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 1.7;
}

.products-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.products-footer a {
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blvck-collection-page {
    width: min(100% - 32px, 1440px);
    padding-top: 18px;
  }

  .collection-banner {
    min-height: 330px;
    margin-bottom: 38px;
  }

  .collection-banner > div {
    width: 100%;
    padding: 28px 22px;
  }

  .collection-banner h1,
  .collection-banner h2 {
    font-size: clamp(32px, 12vw, 48px);
  }

  .collection-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .collection-grid {
    gap: 30px 14px;
  }

  .collection-grid .product-card-name {
    min-height: 58px;
  }

  .collection-large-link {
    min-height: 280px;
    padding: 28px 22px;
  }

  .products-footer {
    flex-direction: column;
  }

  .products-footer nav {
    justify-content: flex-start;
  }
}
