/* Sub-component stylesheets are not auto-bundled into a section's CSS, so
   they are imported here. Edit the sub-component's own styles.css — never
   paste a copy into this file (copies drift and silently win or lose). */
/* Imported from: ../../sub-components/ProductCard/styles.css */
.cc_i1v7oqhf_qmptQWrFEY .product-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-tile);
  overflow: hidden;
  background-color: var(--color-surface-alt);
}

.cc_i1v7oqhf_qmptQWrFEY .product-card.is-portrait .product-card-media {
  aspect-ratio: 3 / 4;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card.is-square .product-card-media {
  aspect-ratio: 1 / 1;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card.is-sold-out .product-card-media {
  opacity: 0.6;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card.is-sold-out .product-card-body {
  opacity: 0.75;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-image--empty {
  background: repeating-linear-gradient(
    45deg,
    var(--color-surface-alt) 0 10px,
    var(--color-border) 10px 20px
  );
}

.cc_i1v7oqhf_qmptQWrFEY .product-card.has-hover-image .product-card-image--primary, .cc_i1v7oqhf_qmptQWrFEY .product-card-image--hover {
  position: absolute;
  top: 0;
  left: 0;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-image--hover {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@media (hover: hover) {
  .cc_i1v7oqhf_qmptQWrFEY .product-card.has-hover-image:hover .product-card-image--hover {
    opacity: 1;
  }
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-bg);
  font-family: var(--font-label);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-badge--sale {
  color: var(--color-accent);
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-badge--sold-out {
  color: var(--color-text-muted);
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-name {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.4;
  color: var(--slider-text-color, var(--color-text-primary));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-price {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: 700;
  line-height: 1.4;
  color: var(--slider-text-color, var(--color-text-primary));
  font-variant-numeric: tabular-nums;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-price--original {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 400;
  color: var(--color-price-strike);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-swatches {
  display: flex;
  gap: 0.3125rem;
  margin: 0.1875rem 0;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-swatch {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-swatch.is-current {
  outline: 1px solid var(--color-text-primary);
  outline-offset: 2px;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-hint {
  font-family: var(--font-label);
  font-size: var(--text-label);
  line-height: 1.4;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-hint--transfer {
  color: var(--color-success);
  font-weight: 600;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-hint--installment {
  color: var(--color-text-muted);
  font-weight: 400;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-hint--urgency {
  color: var(--color-error);
  font-weight: 700;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-cart-btn {
  display: block;
  width: 100%;
  margin-top: 0.375rem;
  padding: 0.625rem;
  border: none;
  border-radius: var(--radius-pill);
  background-color: var(--color-text-primary);
  color: var(--color-bg);
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-cart-btn:hover:not(:disabled) {
  background-color: var(--color-accent);
}

.cc_i1v7oqhf_qmptQWrFEY .product-card-cart-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

@media (prefers-reduced-motion: no-preference) {
  .cc_i1v7oqhf_qmptQWrFEY .product-card-image {
    transition: transform 400ms ease-out;
  }

  .cc_i1v7oqhf_qmptQWrFEY .product-card:hover .product-card-image {
    transform: scale(1.04);
  }
}

/* End import: ../../sub-components/ProductCard/styles.css */
/* Imported from: ../../sub-components/ProductRating/styles.css */
.cc_i1v7oqhf_qmptQWrFEY .rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  color: inherit;
}

.cc_i1v7oqhf_qmptQWrFEY .rating-stars {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.cc_i1v7oqhf_qmptQWrFEY .rating-star {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  color: var(--color-border-strong);
}

.cc_i1v7oqhf_qmptQWrFEY .rating-star-bg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cc_i1v7oqhf_qmptQWrFEY .rating-star-fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: var(--color-accent);
  pointer-events: none;
}

.cc_i1v7oqhf_qmptQWrFEY .rating-star-fg {
  display: block;
  height: 100%;
  width: 1em;
  fill: currentColor;
}

.cc_i1v7oqhf_qmptQWrFEY .rating-count {
  font-size: 0.875em;
  color: var(--color-text-faint);
  white-space: nowrap;
}

.cc_i1v7oqhf_qmptQWrFEY .rating--sm {
  font-size: 14px;
}

.cc_i1v7oqhf_qmptQWrFEY .rating--sm .rating-count {
  font-size: 12px;
}

.cc_i1v7oqhf_qmptQWrFEY .rating--md {
  font-size: 18px;
}

.cc_i1v7oqhf_qmptQWrFEY .rating--md .rating-count {
  font-size: 14px;
}

/* End import: ../../sub-components/ProductRating/styles.css */

.cc_i1v7oqhf_qmptQWrFEY .category-showcase {
  width: 100%;
  /* The design's own lead-in under the hero: 28px on narrow screens up to 52px
     on wide ones. The hero contributes no bottom padding, so this is the whole
     gap between the banner edge and the overline. */
  padding: clamp(1.75rem, 3.5vw, 3.25rem) clamp(1rem, 3vw, 3rem) clamp(2rem, 3vw, 3rem);
  overflow: hidden;
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__inner {
  max-width: var(--kombos-max-width);
  margin: 0 auto;
}

/* â”€â”€â”€ Head â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* top-right "view all" â€” hidden on small screens, shown as a bottom button instead */
.cc_i1v7oqhf_qmptQWrFEY .category-showcase__view-all--top {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex: none;
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__view-all-arrow {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__view-all--top:hover .category-showcase__view-all-arrow {
  transform: translateX(4px);
}

/* â”€â”€â”€ Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__cell {
  min-width: 0;
}

/* â”€â”€â”€ Bottom button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__view-all--btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  padding: 1.25rem 3.5rem;
  border: 1px solid;
  border-radius: var(--radius-pill);
  font-family: var(--font-label);
  font-size: var(--text-body-lg);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.cc_i1v7oqhf_qmptQWrFEY .category-showcase__view-all--btn:hover {
  background: var(--color-text-primary);
  color: #ffffff !important;
  border-color: var(--color-text-primary) !important;
}

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (min-width: 768px) {
  .cc_i1v7oqhf_qmptQWrFEY .category-showcase {
    /* Only the gutter widens here — the vertical rhythm stays tight so this
       section reads as a continuation of the hero, not a separate slab. */
    padding-left: clamp(1rem, 3vw, 3rem);
    padding-right: clamp(1rem, 3vw, 3rem);
  }

  .cc_i1v7oqhf_qmptQWrFEY .category-showcase__head {
    margin-bottom: 1.5rem;
  }

  .cc_i1v7oqhf_qmptQWrFEY .category-showcase__grid {
    gap: 2rem 1.5rem;
  }

  .cc_i1v7oqhf_qmptQWrFEY .category-showcase__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cc_i1v7oqhf_qmptQWrFEY .category-showcase__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
 * Inlined ProductCard / ProductRating styles (the build does not
 * auto-bundle sub-component CSS â€” keep in sync with
 * src/sub-components/ProductCard/styles.css + ProductRating/styles.css)
 * â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ProductCard + ProductRating styles come from their own sub-component
   stylesheets, which the build collects automatically. */
