.imc-layout-showcase {
  background: #ffffff;
  overflow-x: hidden;
  padding-bottom: 48px;
}

.imc-layout-showcase .imc-storefront-topbar {
  background: var(--imc-store-topbar-bg, #f7f7f7);
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 18px;
  min-height: 44px;
}

.imc-layout-showcase .imc-storefront-topbar-left {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.imc-layout-showcase .imc-storefront-topbar-brand {
  gap: 10px;
}

.imc-layout-showcase .imc-storefront-mini-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.imc-layout-showcase .imc-storefront-mini-copy {
  gap: 2px;
}

.imc-layout-showcase .imc-storefront-mini-title {
  font-size: 15px;
  font-weight: 700;
}

.imc-layout-showcase .imc-storefront-mini-subtitle {
  font-size: 11px;
  color: #677281;
}

.imc-layout-showcase .imc-storefront-mini-description {
  font-size: 10px;
  line-height: 1.3;
  color: #677281;
}

.imc-layout-showcase .imc-storefront-topbar-left .imc-storefront-links {
  gap: 6px;
}

.imc-layout-showcase .imc-storefront-topbar-left .imc-storefront-link {
  gap: 6px;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1.2;
  border-radius: 999px;
}

.imc-layout-showcase .imc-storefront-topbar-left .imc-storefront-link i {
  font-size: 10px;
}

.imc-layout-showcase .imc-storefront-topbar-actions {
  gap: 10px;
}

.imc-layout-showcase .imc-storefront-showcase-action-row {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.imc-layout-showcase .imc-storefront-showcase-action-row .imc-storefront-topbar-actions {
  gap: 10px;
}

.imc-layout-showcase .imc-storefront-topbar-actions .imc-storefront-action-link {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.imc-layout-showcase .imc-storefront-showcase-filter-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.imc-layout-showcase .imc-storefront-showcase-filter-menu > summary {
  list-style: none;
}

.imc-layout-showcase .imc-storefront-showcase-filter-menu > summary::-webkit-details-marker {
  display: none;
}

.imc-layout-showcase .imc-storefront-showcase-menu-toggle {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  user-select: none;
}

.imc-layout-showcase .imc-storefront-showcase-menu-toggle:hover,
.imc-layout-showcase .imc-storefront-showcase-menu-toggle:focus-visible {
  color: #000000;
  transform: translateY(-1px);
}

.imc-layout-showcase .imc-storefront-showcase-menu-toggle.is-active::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: var(--imc-store-button-bg, #566575);
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  width: min(420px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  gap: 12px;
  overflow: auto;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel[hidden] {
  display: none;
}

.imc-layout-showcase .imc-storefront-showcase-filter-menu:not([open]) .imc-storefront-showcase-filter-panel {
  display: none;
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-pill-row {
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  background: transparent;
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-pill {
  min-height: 28px;
  padding: 0 10px;
  font-size: 10px;
}

.imc-layout-showcase .imc-storefront-showcase-menu-toolbar {
  justify-content: flex-start;
  padding: 0;
  background: transparent;
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-toolbar-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 8px;
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-input,
.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-select,
.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-button {
  width: 100%;
  min-width: 0;
}

.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-button,
.imc-layout-showcase .imc-storefront-showcase-filter-panel .imc-storefront-filter-clear {
  grid-column: 1 / -1;
}

.imc-layout-showcase .imc-storefront-topbar-center .imc-storefront-pill-row {
  justify-content: center;
}

.imc-layout-showcase .imc-storefront-topbar-center .imc-storefront-pill {
  background: #ffffff;
}

.imc-layout-showcase .imc-storefront-content {
  padding: 0 0 48px;
}

.imc-layout-showcase .imc-storefront-banner-card.is-showcase {
  background: #eef2f7;
}

.imc-layout-showcase .imc-storefront-banner-image {
  height: 100%;
}

.imc-layout-showcase .imc-storefront-showcase-sections {
  display: grid;
  gap: 72px;
}

.imc-layout-showcase .imc-storefront-banner-card.is-showcase + .imc-storefront-showcase-sections {
  margin-top: 48px;
}

.imc-layout-showcase .imc-storefront-showcase-section {
  display: grid;
  gap: 28px;
  min-width: 0;
  overflow: hidden;
}

.imc-layout-showcase .imc-storefront-showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  min-height: 420px;
  padding: clamp(38px, 7vw, 86px);
  overflow: hidden;
  background: #eef1ec;
  background-position: center;
  background-size: cover;
}

.imc-layout-showcase .imc-storefront-showcase-hero.is-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.52) 42%, rgba(255, 255, 255, 0.05) 100%);
}

.imc-layout-showcase .imc-storefront-showcase-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 430px;
}

.imc-layout-showcase .imc-storefront-showcase-hero-copy h2 {
  margin: 0;
  color: var(--imc-store-title-color, #1f2933);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 500;
}

.imc-layout-showcase .imc-storefront-showcase-hero-copy p {
  max-width: 340px;
  margin: 0;
  color: var(--imc-store-subtitle-color, #5b6472);
  font-size: 14px;
  line-height: 1.75;
}

.imc-layout-showcase .imc-storefront-showcase-hero-product {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.imc-layout-showcase .imc-storefront-showcase-hero-product img {
  width: min(520px, 100%);
  max-height: 420px;
  object-fit: contain;
}

.imc-layout-showcase .imc-storefront-showcase-options {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.imc-layout-showcase .imc-storefront-showcase-option-row {
  display: grid;
  gap: 6px;
}

.imc-layout-showcase .imc-storefront-showcase-option-label {
  color: #1f2933;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.imc-layout-showcase .imc-storefront-showcase-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.imc-layout-showcase .imc-storefront-showcase-option-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 10px;
  border: 1px solid rgba(31, 41, 51, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f2933;
  font-size: 11px;
  font-weight: 700;
}

.imc-layout-showcase .imc-storefront-pill-row.is-category-row {
  justify-content: center;
  padding: 10px 18px;
  background: var(--imc-store-pill-bg, #ffffff);
}

.imc-layout-showcase .imc-storefront-toolbar.is-showcase {
  padding: 10px 18px 12px;
  background: #ffffff;
}

.imc-layout-showcase .imc-storefront-toolbar-form {
  justify-content: center;
  gap: 8px;
}

.imc-layout-showcase .imc-storefront-input,
.imc-layout-showcase .imc-storefront-select {
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  color: #5f6770;
}

.imc-layout-showcase .imc-storefront-input {
  width: 120px;
}

.imc-layout-showcase .imc-storefront-input.narrow {
  width: 54px;
  max-width: 54px;
  text-align: center;
}

.imc-layout-showcase .imc-storefront-select {
  min-width: 96px;
}

.imc-layout-showcase .imc-storefront-button {
  min-height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 10px;
  background: var(--imc-store-button-bg, #566575);
  border-color: var(--imc-store-button-bg, #566575);
  color: var(--imc-store-button-text, #ffffff);
}

.imc-layout-showcase .imc-storefront-button:hover {
  background: var(--imc-store-button-hover-bg, #475566);
  border-color: var(--imc-store-button-hover-bg, #475566);
}

.imc-layout-showcase .imc-storefront-grid.is-showcase {
  padding: 18px 34px 0;
  gap: 38px 56px;
  justify-items: center;
}

.imc-layout-showcase .imc-storefront-grid.is-showcase-section {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding-top: 0;
}

.imc-layout-showcase .imc-storefront-showcase-slider {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 54px;
  contain: paint;
  overflow: hidden;
}

.imc-layout-showcase .imc-storefront-showcase-slider-viewport {
  overflow: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: auto;
  width: 100%;
  min-width: 0;
}

.imc-layout-showcase .imc-storefront-showcase-slider-viewport::-webkit-scrollbar {
  display: none;
}

.imc-layout-showcase .imc-storefront-grid.is-showcase-slider-track {
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: none;
  gap: 0;
  align-items: stretch;
  justify-items: initial;
  width: 100%;
  max-width: 100%;
  padding: 0;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: transform;
}

.imc-layout-showcase .imc-storefront-grid.is-showcase-slider-track .imc-storefront-card {
  box-sizing: border-box;
  flex: 0 0 calc(100% / var(--imc-showcase-slider-visible, 4));
  margin: 5px;
  max-width: none;
  min-width: 0;
  padding: 10px 12px;
}

.imc-layout-showcase .imc-storefront-showcase-slider.is-static .imc-storefront-showcase-slider-arrow {
  display: none;
}

.imc-layout-showcase .imc-storefront-showcase-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #ffffff;
  color: #1f2933;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.imc-layout-showcase .imc-storefront-showcase-slider-arrow:hover,
.imc-layout-showcase .imc-storefront-showcase-slider-arrow:focus-visible {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.imc-layout-showcase .imc-storefront-showcase-slider-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.imc-layout-showcase .imc-storefront-showcase-slider-arrow.is-prev {
  left: 6px;
}

.imc-layout-showcase .imc-storefront-showcase-slider-arrow.is-next {
  right: 6px;
}

.imc-layout-showcase .imc-storefront-card {
  border: 0;
  box-shadow: none;
  width: 100%;
  max-width: 212px;
  padding: 10px 12px;
}

.imc-layout-showcase .imc-storefront-thumb {
  width: 188px;
  max-width: 100%;
  height: 188px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.imc-layout-showcase .imc-storefront-card-body {
  text-align: center;
  padding-top: 8px;
}

.imc-layout-showcase .imc-storefront-card-body h3 {
  min-height: 24px;
  margin-bottom: 4px;
  font-size: 11px;
}

.imc-layout-showcase .imc-storefront-price {
  font-size: 10px;
}

.imc-layout-showcase .imc-storefront-swatches {
  gap: 4px;
  margin-top: 4px;
}

.imc-layout-showcase .imc-storefront-swatch {
  width: 10px;
  height: 10px;
}

.imc-layout-showcase .imc-storefront-custom-options {
  gap: 3px;
  margin-top: 4px;
}

.imc-layout-showcase .imc-storefront-option-chip,
.imc-layout-showcase .imc-storefront-option-more {
  font-size: 9px;
  min-height: 16px;
  padding: 3px 5px;
}

.imc-layout-showcase .imc-storefront-pagination {
  margin-top: 18px;
}

.imc-layout-showcase .imc-storefront-empty {
  background: transparent;
}

@media (max-width: 900px) {
  .imc-layout-showcase .imc-storefront-topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .imc-layout-showcase .imc-storefront-toolbar.is-showcase {
    padding-left: 14px;
    padding-right: 14px;
  }

  .imc-layout-showcase .imc-storefront-grid.is-showcase {
    gap: 30px 28px;
  }

  .imc-layout-showcase .imc-storefront-showcase-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .imc-layout-showcase .imc-storefront-showcase-hero-copy h2 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .imc-layout-showcase .imc-storefront-showcase-sections {
    gap: 46px;
  }

  .imc-layout-showcase .imc-storefront-showcase-hero {
    padding: 34px 22px;
  }

  .imc-layout-showcase .imc-storefront-showcase-hero-copy h2 {
    font-size: 32px;
  }

  .imc-layout-showcase .imc-storefront-grid.is-showcase {
    padding: 14px 18px 0;
  }

  .imc-layout-showcase .imc-storefront-showcase-slider {
    padding: 0 42px;
  }

  .imc-layout-showcase .imc-storefront-showcase-slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .imc-layout-showcase .imc-storefront-grid.is-showcase-slider-track .imc-storefront-card {
    padding: 10px 8px;
  }

  .imc-layout-showcase .imc-storefront-thumb {
    width: 108px;
    height: 108px;
  }
}
