/** Shopify CDN: Minification failed

Line 552:0 Expected "}" to go with "{"

**/
/* ═══════════════════════════════════════
   TOOLBAR
═══════════════════════════════════════ */
.csb-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-bottom: none
  width: 100%;
}

/* Filter button — green outline, solid on hover */
.csb-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--csb-btn-color);
  color: var(--csb-btn-color);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.csb-filter-btn:hover,
.csb-filter-btn[aria-expanded="true"] {
  background: var(--csb-btn-hover-bg);
  color: var(--csb-btn-hover-color);
}

/* Sort */
.csb-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.csb-sort__label {
  opacity: 0.5;
  line-height: 1;
}
.csb-sort__select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: currentColor;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}
.csb-sort__select:focus { outline: none; }

/* ═══════════════════════════════════════
   LAYOUT — desktop inline
═══════════════════════════════════════ */
.csb-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.csb-layout-main {
  flex: 1;
  min-width: 0;
}

/* ═══════════════════════════════════════
   DRAWER — desktop (inline panel)
═══════════════════════════════════════ */
.csb-drawer {
  display: none;
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  padding-right: 1.5rem;
  border-right: none
}
.csb-drawer.is-open {
  display: block;
}
/* Hide close button on desktop */
.csb-drawer__header {
  display: none;
}

/* ═══════════════════════════════════════
   BACKDROP — mobile only
═══════════════════════════════════════ */
.csb-backdrop {
  display: none;
}

/* ═══════════════════════════════════════
   MOBILE overrides
═══════════════════════════════════════ */
@media (max-width: 749px) {
  .csb-layout {
    display: block;
  }

  /* Backdrop */
  .csb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s;
    display: none;
  }
  .csb-backdrop.is-open {
    display: block;
    opacity: 1;
  }

  /* Drawer becomes full-screen slide-in */
  .csb-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    max-width: 90vw;
    max-height: 100%;
    background: var(--color-background, #111);
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-right: none;
    padding-right: 0;
  }
  .csb-drawer.is-open {
    display: flex;
    transform: translateX(0);
  }

  /* Show close button on mobile */
  .csb-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .csb-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════
   DRAWER HEADER
═══════════════════════════════════════ */
.csb-drawer__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .5;
}
.csb-drawer__close {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: currentColor;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.csb-drawer__close:hover { opacity: 0.6; }

/* ═══════════════════════════════════════
   WIDGETS
═══════════════════════════════════════ */
.csb-widget {
  margin-bottom: 2rem;

.csb-widget__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}

/* Left bar */
.csb-widget__title > span {
  font-size: var(--csb-title-size, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--csb-accent, #6abf4b);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.csb-widget__title > span::before {
  content: '';
  display: var(--csb-left-bar-display, block);
  width: var(--csb-left-bar-width, 2px);
  height: var(--csb-left-bar-height, 16px);
  background: var(--csb-left-bar-color, #6abf4b);
  flex-shrink: 0;
}

/* Decorative line after title */
.csb-widget__title::after {
  content: '';
  display: var(--csb-title-line-display, block);
  flex: 1;
  height: 1px;
  background: var(--csb-title-line-color, #ffffff);
  opacity: var(--csb-title-line-opacity, 0.2);
  margin-left: 0.75rem;
}

/* ═══════════════════════════════════════
   LISTS
═══════════════════════════════════════ */
.csb-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.csb-list__item {
  margin-bottom: 0.6rem;
}
.csb-list__link {
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
  display: block;
}
.csb-list__link:hover,
.csb-list__link.active { opacity: 1; }

/* ═══════════════════════════════════════
   CHECKBOXES
═══════════════════════════════════════ */
.csb-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.csb-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #6abf4b;
}
.csb-checkbox__label { opacity: 1; transition: opacity 0.2s; }
.csb-checkbox__label.active { opacity: 1; font-weight: 600; }

/* ═══════════════════════════════════════
   PILLS
═══════════════════════════════════════ */
.csb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.csb-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  user-select: none;
}
.csb-pill input[type="checkbox"] { display: none; }
.csb-pill:hover { border-color: rgba(255,255,255,0.6); }
.csb-pill.active { border-color: #6abf4b; color: #6abf4b; }

/* ═══════════════════════════════════════
   CLEAR BUTTONS
═══════════════════════════════════════ */
.csb-clear {
  font-size: 0.7rem;
  opacity: 0.45;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  color: currentColor;
  padding: 0;
  transition: opacity 0.2s;
}
.csb-clear:hover { opacity: 1; }
.csb-clear-all {
  display: inline-block;
  font-size: 0.85rem;
  text-decoration: underline;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.csb-clear-all:hover { opacity: 1; }

/* ═══════════════════════════════════════
   TOOLBAR RIGHT
═══════════════════════════════════════ */
.csb-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ═══════════════════════════════════════
   SORT — underline style, no border
═══════════════════════════════════════ */
.csb-sort {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  cursor: pointer;
}
.csb-sort__label {
  font-size: 0.85rem;
  pointer-events: none;
}
.csb-sort__arrow {
  font-size: 0.55rem;
  line-height: 1;
  pointer-events: none;
}
.csb-sort__select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
/* Underline on the label row */
.csb-sort::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

/* ═══════════════════════════════════════
   COLUMN PICKER
═══════════════════════════════════════ */
.csb-col-picker {
  position: relative;
  display: flex;
  align-items: center;
}
.csb-col-picker__icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.csb-col-picker__icon:hover {
  border-color: var(--csb-accent, #6abf4b);
  color: var(--csb-accent, #6abf4b);
}
.csb-col-picker__track {
  display: none;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-background, #111);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.25rem;
  gap: 0.25rem;
  flex-direction: row;
  white-space: nowrap;
  z-index: 10;
}
.csb-col-picker.is-open .csb-col-picker__track {
  display: flex;
}
.csb-col-picker__btn {
  background: none;
  border: none;
  color: currentColor;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s, background 0.2s;
}
.csb-col-picker__btn:hover {
  opacity: 1;
  color: var(--csb-accent, #6abf4b);
}
.csb-col-picker__btn.is-active {
  opacity: 1;
  color: var(--csb-accent, #6abf4b);
  font-weight: 700;
}
.csb-native-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.csb-native-sort__select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--csb-sort-bg, transparent);
  color: var(--csb-sort-color, #ffffff);
  border: 1px solid var(--csb-sort-border, rgba(255,255,255,0.3));
  border-radius: var(--csb-sort-radius, 0px);
  font-size: var(--csb-sort-font-size, 0.85rem);
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

.csb-native-sort__select:hover {
  border-color: var(--csb-sort-border-hover, rgba(255,255,255,0.6));
}

.csb-native-sort__select option {
  background-color: #111111;
  color: #ffffff;
}
/* ═══════════════════════════════════════
   TOOLBAR — SORT & DENSITY
═══════════════════════════════════════ */

/* Remove faint separator lines */
.csb-toolbar::before,
.csb-toolbar::after,
.csb-toolbar-right::before,
.csb-toolbar-right::after {
  display: none !important;
}

/* Sort text + caret color */
.csb-toolbar-right .facets__summary,
.csb-toolbar-right .facets__label,
.csb-toolbar-right .icon-caret {
  color: var(--csb-sort-text-color, #ffffff) !important;
}

/* Density icons color */
.csb-toolbar-right .column-picker svg {
  color: var(--csb-sort-icon-color, #ffffff);
}

/* Dropdown panel — z-index + alignment + bg */
.csb-toolbar-right .sorting-filter__options {
  z-index: 100 !important;
  right: 0 !important;
  left: auto !important;
  border-radius: var(--csb-sort-radius, 0px);
  background-color: var(--csb-sort-dropdown-bg, #111111) !important;
}

/* Hover chevron on sort options */
.sorting-filter__option:hover::after,
.sorting-filter__label:hover::after {
  content: '›';
  margin-left: auto;
  padding-left: 0.5rem;
  opacity: 0.6;
}
.sorting-filter__option {
  display: flex;
  align-items: center;
}

/* Hide mobile sort status label — nuclear override */
.csb-toolbar sorting-filter-component .facets__status {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

/* ═══════════════════════════════════════
   VIEW TRANSITIONS
═══════════════════════════════════════ */

::view-transition-old(root) {
  animation: 200ms ease both vt-fade-out;
}
::view-transition-new(root) {
  animation: 300ms ease both vt-fade-in;
}
::view-transition-old(product-grid) {
  animation: 200ms ease both vt-grid-out;
}
::view-transition-new(product-grid) {
  animation: 350ms ease both vt-grid-in;
}

@keyframes vt-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vt-grid-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
@keyframes vt-grid-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
