/** Shopify CDN: Minification failed

Line 942:2 Unexpected "{"
Line 942:3 Expected identifier but found "%"
Line 942:72 Expected identifier but found "%"

**/
/* Collection Main Layout */
.collection-main-section {
  width: 100%;
  background-color: #ffffff;
  color: #0c0a09;
  font-family: 'Oswald', sans-serif;
  box-sizing: border-box;
}

/* 1. Header Banner */
.collection-header {
  border-bottom: 1px solid #e7e5e4;
  background-color: #f4f1ec;
  padding: 56px 0;
  width: 100%;
  box-sizing: border-box;
}

.collection-header-inner {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

.collection-tagline {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #BF0228;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.collection-title {
  font-family: 'Kenfolg', 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.collection-desc {
  max-width: 680px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #44403c;
  margin: 0;
}

/* Shell Layout */
.collection-shell {
  max-width: 1760px;
  margin: 0 auto;
  padding: 40px 5% 80px 5%;
  box-sizing: border-box;
}

/* Breadcrumb */
.collection-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #78716c;
  margin-bottom: 28px;
}

.collection-breadcrumb a {
  color: #0c0a09;
  text-decoration: none;
  transition: color 0.2s ease;
}

.collection-breadcrumb a:hover {
  color: #BF0228;
}

.collection-breadcrumb .sep {
  color: #d6d3d1;
}

.collection-breadcrumb .active {
  color: #78716c;
}

/* Jump Category Cards */
.collection-category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  border-bottom: 1px solid #f5f5f4;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .collection-category-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-card.active {
  background-color: transparent;
}

.cat-img-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .cat-img-wrap {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 1024px) {
  .cat-img-wrap {
    width: 160px;
    height: 160px;
  }
}

@media (min-width: 1440px) {
  .cat-img-wrap {
    width: 190px;
    height: 190px;
  }
}

@media (min-width: 1920px) {
  .cat-img-wrap {
    width: 220px;
    height: 220px;
  }
}

.cat-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.08);
}

.cat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #292524;
  transition: color 0.2s ease;
}

.cat-card:hover .cat-label {
  color: #BF0228;
}

.cat-card.active .cat-label {
  color: #BF0228;
}

/* Grid Layout Rows */
.collection-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .collection-layout-grid {
    grid-template-columns: 240px 1fr;
  }
}

/* 2. Sidebar & Mobile Drawer Filters */
.collection-sidebar {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .collection-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
  }
}

/* Mobile trigger button */
.mobile-filters-trigger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #0c0a09;
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 24px;
}

.mobile-filters-trigger-btn:hover {
  background-color: #BF0228;
}

@media (min-width: 1024px) {
  .mobile-filters-trigger-btn {
    display: none !important;
  }
}

.sidebar-filters-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid #000000;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.sidebar-filters-header h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

.clear-all-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #78716c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clear-all-link:hover {
  color: #BF0228;
}

/* Accordion details summary styling */
details.filter-group-wrapper {
  border-bottom: 1px solid #e7e5e4;
  padding: 16px 0;
}

details.filter-group-wrapper summary::-webkit-details-marker {
  display: none;
}

details.filter-group-wrapper summary {
  list-style: none;
  outline: none;
}

.filter-group-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0c0a09;
  cursor: pointer;
}

.icon-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-chevron svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open] .icon-chevron svg {
  transform: rotate(180deg);
}

.filter-group-content {
  margin-top: 16px;
}

/* Color swatches styling */
.color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  padding: 4px 0;
}

.color-swatch-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  color: #44403c;
}

.color-swatch-item:hover {
  background-color: #f5f5f4;
  border-color: #d6d3d1;
}

.color-swatch-item.active {
  background-color: #ffffff;
  border-color: #BF0228;
  box-shadow: 0 0 0 1px #BF0228;
  color: #0c0a09;
}

.swatch-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.swatch-check {
  color: #ffffff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
  display: block;
}

.color-swatch-item[data-color="white"] .swatch-check,
.color-swatch-item[data-color="bone"] .swatch-check,
.color-swatch-item[data-color="natural"] .swatch-check {
  color: #111111;
  filter: none;
}

.swatch-label {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.swatch-count {
  font-size: 10px;
  color: #a8a29e;
  font-weight: 500;
}

/* Mobile drawer mode responsive styles */
@media (max-width: 1023px) {
  .collection-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 25px 0 50px -12px rgba(0, 0, 0, 0.25);
  }

  .collection-sidebar.active {
    transform: translateX(0);
  }

  .collection-sidebar .collection-filters-form {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
  }

  /* Drawer Header */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e7e5e4;
    background-color: #fafaf9;
    flex-shrink: 0;
  }

  .drawer-title {
    font-family: 'Kenfolg', 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0c0a09;
  }

  .drawer-close {
    background: none;
    border: none;
    color: #0c0a09;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e7e5e4;
    transition: all 0.2s ease;
    padding: 0;
  }

  .drawer-close:hover {
    border-color: #BF0228;
    color: #BF0228;
  }

  /* Drawer Footer */
  .drawer-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #e7e5e4;
    background-color: #fafaf9;
    flex-shrink: 0;
  }

  .btn-clear-filters,
  .btn-apply-filters {
    flex: 1;
    height: 48px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e7e5e4;
  }

  .btn-clear-filters {
    background-color: #ffffff;
    color: #0c0a09;
  }

  .btn-clear-filters:hover {
    background-color: #f5f5f4;
    border-color: #d6d3d1;
  }

  .btn-apply-filters {
    background-color: #BF0228;
    color: #ffffff;
    border-color: #BF0228;
  }

  .btn-apply-filters:hover {
    background-color: #000000;
    border-color: #000000;
  }

  /* Backdrop overlay */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}

.filter-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #44403c;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox-label.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.filter-checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #d6d3d1;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.filter-checkbox-label input:checked + .custom-checkbox {
  background-color: #BF0228;
  border-color: #BF0228;
  color: #ffffff;
}

.filter-value-text {
  flex-grow: 1;
}

.filter-value-count {
  font-size: 11px;
  color: #a8a29e;
}

/* Price range styling */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-field {
  display: flex;
  align-items: center;
  border: 1px solid #d6d3d1;
  background-color: #ffffff;
  padding: 6px 10px;
  width: 80px;
  box-sizing: border-box;
}

.price-field span {
  font-size: 13px;
  color: #78716c;
  margin-right: 4px;
}

.price-field input {
  width: 100%;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  color: #0c0a09;
  outline: none;
}

.price-range-to {
  font-size: 13px;
  color: #78716c;
  text-transform: uppercase;
}

/* 3. Products Panel */
.collection-products-panel {
  width: 100%;
  box-sizing: border-box;
}

/* Toolbar Control Bar */
.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e7e5e4;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.toolbar-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toolbar-sort label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #44403c;
}

.sort-select {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0c0a09;
  border: 1px solid #d6d3d1;
  background-color: #ffffff;
  padding: 6px 12px;
  outline: none;
  cursor: pointer;
}

.toolbar-view {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #44403c;
}

.view-buttons {
  display: flex;
  gap: 8px;
}

.view-buttons.mobile-only {
  display: flex;
}

.view-buttons.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .view-buttons.mobile-only {
    display: none;
  }
  .view-buttons.desktop-only {
    display: flex;
  }
}

.btn-view {
  background: none;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  color: #78716c;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-view.active {
  border-color: #d6d3d1;
  background-color: #fafaf9;
  color: #000000;
  border-radius: 4px;
}

.btn-view:hover {
  color: #000000;
}

/* Active filters pills */
.active-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f5f5f4;
  border: 1px solid #e7e5e4;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #44403c;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.active-filter-pill:hover {
  background-color: #e7e5e4;
  color: #000000;
}

.active-filter-pill svg {
  color: #78716c;
}

/* Empty State */
.collection-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1px dashed #d6d3d1;
  background-color: #fafaf9;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
}

.empty-title {
  font-family: 'Kenfolg', 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.empty-desc {
  font-size: 14px;
  color: #57534e;
  max-width: 320px;
  margin: 0 0 24px 0;
  font-weight: 500;
  line-height: 1.4;
}

.empty-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #BF0228;
  color: #ffffff;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.empty-clear-btn:hover {
  background-color: #000000;
}

/* Product Grid */
.collection-products-grid {
  display: grid;
  gap: 24px;
}

/* View Column Mappings */
.collection-products-grid.view-1 {
  grid-template-columns: 1fr;
}

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

.collection-products-grid.view-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
  .collection-products-grid.view-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .collection-products-grid.view-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-products-grid.view-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .collection-products-grid.view-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .collection-products-grid.view-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.collection-product-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(214, 211, 209, 0.4);
  padding: 16px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
}

.collection-product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.card-wishlist-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: none;
  border: none;
  color: #d6d3d1;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.card-wishlist-toggle:hover {
  color: #BF0228;
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
}

.card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-sizing: border-box;
}

/* Hover double image swap logic */
.card-img.hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.collection-product-card:hover .card-img.main-img {
  {%- comment -%} If secondary image exists, hide first image on hover {%- endcomment -%}
}

.collection-product-card:hover .card-img.hover-img {
  opacity: 1;
}

.collection-product-card:hover .card-img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  background-color: #0c0a09;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.card-badge.sold-out {
  background-color: #78716c;
}

.card-badge.sale {
  background-color: #BF0228;
}

.card-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.card-title a {
  color: #0c0a09;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #BF0228;
}

.card-price {
  font-size: 14px;
  font-weight: 600;
  color: #57534e;
  margin: 4px 0 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-price .price-current.sale {
  color: #BF0228;
  font-weight: 700;
}

.card-price .price-compare {
  font-size: 12px;
  text-decoration: line-through;
  color: #a8a29e;
  font-weight: 500;
}

.card-swatches {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  min-height: 14px; /* Maintain spacing if no colors */
}

.card-swatch-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(214, 211, 209, 0.6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-actions {
  margin-top: 20px;
}

.card-quick-view {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.collection-product-card:hover .card-quick-view {
  color: #BF0228;
}

.card-quick-view .arr {
  font-size: 8px;
}

/* Pagination navigation bar */
.collection-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  padding: 16px 0;
  box-sizing: border-box;
}

.pagination-arrow,
.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e7e5e4;
  background-color: #ffffff;
  color: #57534e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.pagination-number.active {
  background-color: #BF0228;
  border-color: #BF0228;
  color: #ffffff;
}

.pagination-number.gap {
  border: none;
  background: none;
  cursor: default;
}

.pagination-arrow:hover,
.pagination-number:not(.active):not(.gap):hover {
  border-color: #0c0a09;
  color: #0c0a09;
}

/* ── 8. ATHLETE HERO BANNER ── */
.collection-athlete-hero {
  border-bottom: 1px solid #e7e5e4;
  background-color: #f4f1ec;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.athlete-hero-inner {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.athlete-hero-content {
  flex: 1;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.athlete-hero-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #BF0228;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.athlete-hero-title {
  font-family: 'Kenfolg', 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0c0a09;
}

.athlete-hero-divider {
  width: 50px;
  height: 3px;
  background-color: #BF0228;
  margin-bottom: 20px;
}

.athlete-hero-desc {
  max-width: 540px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #44403c;
  margin: 0 0 28px 0;
}

.athlete-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.athlete-hero-btn:hover {
  background-color: #BF0228;
}

.athlete-hero-image-wrap {
  flex: 1;
  position: relative;
  min-height: 300px;
  width: 100%;
}

/* Fading gradient overlay to blend image into the content's background color (#f4f1ec) */
.athlete-hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, #f4f1ec 100%);
  pointer-events: none;
  z-index: 2;
}

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

/* Desktop layout styles */
@media (min-width: 992px) {
  .athlete-hero-inner {
    flex-direction: row;
    height: 500px; /* Constrained height to prevent tall images from stretching the hero */
  }
  
  .athlete-hero-content {
    flex: 0 0 45%;
    padding: 60px 5% 60px 8%;
  }
  
  .athlete-hero-image-wrap {
    flex: 0 0 55%;
    height: 100%;
    min-height: auto;
  }

  .athlete-hero-image-wrap::before {
    background: linear-gradient(to right, #f4f1ec 0%, transparent 40%);
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

/* Crown Filter Toolbar Select */
.toolbar-crown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toolbar-crown label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
}

.crown-select {
  border: 1px solid #d6d3d1;
  padding: 8px 12px;
  font-size: 14px;
  background-color: #ffffff;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-width: 120px;
}

.crown-select:focus {
  outline: none;
  border-color: #000000;
}

/* Group Headers inside CSS Grid */
.collection-grid-group-header {
  grid-column: 1 / -1;
  font-family: 'Kenfolg', 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #e7e5e4;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0c0a09;
}

/* Adjust margin for the first group header to keep spacing tight at top */
.collection-products-grid > .collection-grid-group-header:first-child {
  margin-top: 8px;
}

/* Toolbar Select Alignments */
.collection-toolbar {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px !important;
  justify-content: flex-start !important;
}

.toolbar-view {
  margin-left: auto !important;
}
