/** Shopify CDN: Minification failed

Line 309:18 Unexpected "{"
Line 309:27 Expected ":"

**/
/* ============================================
   Tabbed Product List
   ============================================ */

.section-tabbed-products {
  display: flex;
  flex-direction: column;
}

.section-tabbed-products__wrapper {
  display: block;
  width: 100%;
}

.section-tabbed-products__footer {
  display: flex;
  justify-content: var(--horizontal-alignment, flex-start);
}

/* ============================================
   Tab navigation — outer wrapper
   Handles alignment context
   ============================================ */

.section-tabbed-products__tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* Alignment modifiers for the outer wrapper */
.section-tabbed-products__tab-nav--align-start {
  justify-content: flex-start;
}

.section-tabbed-products__tab-nav--align-center {
  justify-content: center;
}

.section-tabbed-products__tab-nav--align-end {
  justify-content: flex-end;
}

.section-tabbed-products__tab-nav--align-stretch {
  justify-content: stretch;
}

.section-tabbed-products__tab-nav--align-stretch .section-tabbed-products__tab-bar {
  justify-content: stretch;
}

.section-tabbed-products__tab-nav--align-stretch .section-tabbed-products__tab {
  flex: 1 1 0;
  justify-content: center;
}

/* ============================================
   Tab bar — horizontal scroll strip
   Uses CSS grid with auto-flow: column.
   Each column is sized so exactly N tabs fit the container.
   Extra tabs beyond N are reachable by horizontal scroll.
   width: 100% is critical — without it the grid shrinks to
   content width inside the flex parent (justify-content: center)
   and percentage-based grid-auto-columns break.
   ============================================ */

.section-tabbed-products__tab-bar {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--tabs-visible-desktop, 4) - 1) * var(--tab-gap, 32px))
    / var(--tabs-visible-desktop, 4)
  );
  gap: var(--tab-gap, 32px);
  width: 100%;
  overflow: auto hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-inline: 0;
}

.section-tabbed-products__tab-bar::-webkit-scrollbar {
  display: none;
}

/* Override justify-content based on alignment */
.section-tabbed-products__tab-nav--align-start .section-tabbed-products__tab-bar {
  justify-content: start;
}

.section-tabbed-products__tab-nav--align-end .section-tabbed-products__tab-bar {
  justify-content: end;
}

.section-tabbed-products__tab-nav--align-stretch .section-tabbed-products__tab-bar {
  grid-auto-columns: 1fr;
}

/* ============================================
   Tab button — base
   ============================================ */

.section-tabbed-products__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  appearance: none;
  background: none;
  border: none;
  padding: var(--tab-padding-y, 10px) var(--tab-padding-x, 8px);
  margin: 0;
  min-width: 0;
  font-family: var(--font-heading--family, var(--font-body--family));
  font-size: var(--tab-font-size-desktop, 24px);
  font-weight: var(--font-heading--weight, 400);
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--tab-color, color-mix(in srgb, var(--color-foreground) 40%, transparent));
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  scroll-snap-align: start;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.section-tabbed-products__tab:hover {
  color: var(--tab-color-hover, color-mix(in srgb, var(--color-foreground) 70%, transparent));
}

.section-tabbed-products__tab:focus-visible {
  outline: 2px solid var(--color-foreground);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Active state — shared across all styles */
.section-tabbed-products__tab--active {
  color: var(--tab-color-active, var(--color-foreground));
}

.section-tabbed-products__tab--active:hover {
  color: var(--tab-color-active, var(--color-foreground));
}

/* ============================================
   Style: Underline
   ============================================ */

.section-tabbed-products__tab-nav--underline .section-tabbed-products__tab-bar {
  border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent);
  padding-bottom: 0;
}

.section-tabbed-products__tab-nav--underline .section-tabbed-products__tab {
  padding-bottom: calc(var(--tab-padding-y, 10px) + 2px);
}

.section-tabbed-products__tab-nav--underline .section-tabbed-products__tab--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--tab-color-active, var(--color-foreground));
  transition: background-color 0.25s ease;
}

/* ============================================
   Style: Pill
   ============================================ */

.section-tabbed-products__tab-nav--pill .section-tabbed-products__tab {
  border-radius: 999px;
  padding: var(--tab-padding-y, 10px) calc(var(--tab-padding-x, 8px) + 12px);
}

.section-tabbed-products__tab-nav--pill .section-tabbed-products__tab--active {
  background-color: var(--tab-color-active, var(--color-foreground));
  color: var(--color-background);
}

.section-tabbed-products__tab-nav--pill .section-tabbed-products__tab--active:hover {
  color: var(--color-background);
}

/* ============================================
   Style: Outline
   ============================================ */

.section-tabbed-products__tab-nav--outline .section-tabbed-products__tab {
  border: 1px solid color-mix(in srgb, var(--color-foreground) 18%, transparent);
  border-radius: 999px;
  padding: var(--tab-padding-y, 10px) calc(var(--tab-padding-x, 8px) + 12px);
}

.section-tabbed-products__tab-nav--outline .section-tabbed-products__tab:hover {
  border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent);
}

.section-tabbed-products__tab-nav--outline .section-tabbed-products__tab--active {
  border-color: var(--tab-color-active, var(--color-foreground));
}

/* ============================================
   Style: Plain
   No decoration — just opacity/color shift
   ============================================ */

/* (base styles handle this — no additional rules needed) */

/* ============================================
   Tab panels
   ============================================ */

/*
 * iOS WebKit compositing fix:
 *
 * display:none removes elements from the rendering pipeline entirely.
 * iOS never creates compositing layers for hidden content, so when a panel
 * is revealed the carousel inside renders blank until a touch event forces
 * a repaint.
 *
 * Fix: override the browser's [hidden] default (display:none) so panels
 * remain in the rendering tree at all times. Hidden panels are clamped to
 * height:0 + overflow:hidden + visibility:hidden so they are invisible,
 * non-interactive, and take no space — but iOS keeps their compositing
 * layers alive and paints them immediately on reveal.
 *
 * The [hidden] attribute is kept on the element for screen reader semantics.
 * visibility:hidden also removes the content from the accessibility tree,
 * so ARIA behaviour is preserved.
 */
.section-tabbed-products__panel[hidden] {
  display: block !important;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.section-tabbed-products__panel {
  display: none;
}

.section-tabbed-products__panel--active {
  display: block;
  height: auto;
  overflow: visible;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   Mobile
   ============================================ */

@media screen and (max-width: 749px) {
  .section-tabbed-products__tab-nav {
    margin-bottom: 16px;
  }

  .section-tabbed-products__tab-bar {
    grid-auto-columns: calc(
      (100% - (var(--tabs-visible-mobile, 3) - 1) * var(--tab-gap, 32px))
      / var(--tabs-visible-mobile, 3)
    );
    padding-inline: 16px;
  }

  .section-tabbed-products__tab {
    font-size: var(--tab-font-size-mobile, 16px);
    letter-spacing: 0.05em;
  }
}

/* ============================================
   Desktop — override mobile padding
   ============================================ */

@media screen and (min-width: 750px) {
  .section-tabbed-products__tab-bar {
    padding-inline: 0;
  }
}
/* ============================================
   Price alignment — push price to bottom of card
   regardless of title line count
   ============================================ */

/*
 * .product-card__content is already display:flex; flex-direction:column
 * via layout-panel-flex--column. Setting margin-top:auto on product-price
 * pushes it to the bottom of the card, aligning prices across all cards
 * in a row even when titles wrap to different line counts.
 *
 * Scoped tightly to this section so it does not affect any other
 * product card usage elsewhere in the theme.
 */
#shopify-section-{{ section.id }} product-price {
  margin-top: auto;
}