.featured-collection-list__wrapper {
  background-color: rgb(var(--color-background));
}

/* KEMOVE 2026 homepage category cards */
body[data-page-type="index"] .featured-collection-list__wrapper {
  padding-block: 18px 44px;
  background: #f5f7fa;
}

body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: var(--kemove-home-width, 1320px);
}

body[data-page-type="index"] .featured-collection-list {
  gap: 24px !important;
}

body[data-page-type="index"] .featured-collection-list__list {
  --desktop-columns: 4 !important;
  --desktop-gap-columns: 4 !important;
  gap: 16px;
}

body[data-page-type="index"] .featured-collection-list__list > * {
  aspect-ratio: 1 / 0.9;
}

body[data-page-type="index"] .featured-collection-list__collection {
  min-height: 210px;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgb(15 23 42 / 5%);
}

body[data-page-type="index"] .featured-collection-list__collection-image {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 72%;
  padding: 20px;
  object-fit: contain;
  background: #f8fafc;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page-type="index"] .featured-collection-list__collection-inner {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  background: transparent !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 28%;
  padding: 16px 18px 18px;
  color: #111827 !important;
  text-align: left !important;
  text-shadow: none !important;
  background: #fff;
}

body[data-page-type="index"] .featured-collection-list__collection-title {
  color: #111827 !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-block-start: 7px;
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  text-decoration: none !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-inline-start: auto;
  color: #0091ff;
  content: ">";
  background: rgb(0 145 255 / 8%);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body[data-page-type="index"] .featured-collection-list .featured-collection-list__collection:hover {
    border-color: rgb(0 145 255 / 38%);
    box-shadow: 0 18px 46px rgb(15 23 42 / 10%);
    transform: translateY(-4px);
  }

  body[data-page-type="index"] .featured-collection-list__collection:hover .featured-collection-list__collection-image {
    transform: scale(1.045);
  }

  body[data-page-type="index"] .featured-collection-list__collection:hover .featured-collection-list__collection-button::after {
    background: #0091ff;
    color: #fff;
    transform: translateX(3px);
  }
}

@media (max-width: 1180px) {
  body[data-page-type="index"] .featured-collection-list__list {
    --desktop-columns: 3 !important;
    --desktop-gap-columns: 3 !important;
  }
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__list {
    --mobile-columns: 2 !important;
    gap: 12px;
  }

  body[data-page-type="index"] .featured-collection-list__collection {
    min-height: 180px;
    border-radius: 14px;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding: 14px;
  }
}

/* KEMOVE homepage final category-card arrow fix, EOF override */
body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: min(var(--kemove-home-width, 1640px), calc(100vw - 96px)) !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  position: relative;
  padding-inline-end: 54px !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  display: block !important;
  min-width: 0;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  margin: 0 !important;
  font-size: 13px;
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
    max-width: calc(100vw - 32px) !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding-inline-end: 14px !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-button::after {
    display: none !important;
  }
}

/* KEMOVE homepage final category-card arrow fix */
body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: min(var(--kemove-home-width, 1640px), calc(100vw - 96px)) !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: end;
}

body[data-page-type="index"] .featured-collection-list__collection-title {
  grid-column: 1 / -1;
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  display: block;
  min-width: 0;
  margin-block-start: 7px;
  padding-inline-end: 0;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  grid-column: 2;
  grid-row: 2;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-inline-start: 8px;
  font-size: 13px;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  padding-inline-end: 54px;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
    max-width: calc(100vw - 32px) !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding-inline-end: 14px;
  }

  body[data-page-type="index"] .featured-collection-list__collection-button::after {
    display: none !important;
  }
}
.featured-collection-list__list {
  overflow: visible;
}
.featured-collection-list__list > * {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
}
.featured-collection-list .featured-collection-list__cover,
.featured-collection-list .featured-collection-list__collection {
  position: relative;
  background-color: rgb(var(--color-image-background));
}

.featured-collection-list__cover::after,
.featured-collection-list__collection::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  pointer-events: none;
  content: "";
  border: 1px solid transparent;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0%);
  transition:
    border-color 220ms ease,
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-collection-list__cover.row-2-column-1 {
  grid-row: span 2;
  grid-column: span 1;
}
.featured-collection-list__cover.row-1-column-1 {
  grid-row: span 1;
  grid-column: span 1;
}

@media (min-width: 960px) {
  .featured-collection-list__list:has(
      > .featured-collection-list__collection:first-child:nth-last-child(4)
    ) {
    --desktop-columns: 2 !important;
    --desktop-gap-columns: 2 !important;
  }

  .featured-collection-list__list:has(
      > .featured-collection-list__collection:first-child:nth-last-child(4)
    )
    > .featured-collection-list__collection {
    aspect-ratio: 8 / 3;
  }

  .featured-collection-list__list--feature-first
    > .featured-collection-list__collection:first-child:nth-last-child(n + 5) {
    grid-row: span 2;
    grid-column: span 1;
  }

  .featured-collection-list__list--feature-first
    > .featured-collection-list__collection:first-child:nth-last-child(n + 5)
    .featured-collection-list__collection-inner {
    align-items: center !important;
    justify-content: center !important;
    padding: 28px !important;
  }

  .featured-collection-list__list--feature-first
    > .featured-collection-list__collection:first-child:nth-last-child(n + 5)
    .featured-collection-list__collection-content {
    text-align: center !important;
  }
}
.featured-collection-list__cover-title {
  color: var(--cover-text-color);
}
.featured-collection-list__cover-image {
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: none;
  object-fit: cover;
}
.featured-collection-list__cover-inner {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 20px;
  background-color: var(--background-color);
}
.featured-collection-list__cover-inner.left-top {
  align-items: flex-start;
  justify-content: flex-start;
}
.featured-collection-list__cover-inner.top {
  align-items: flex-start;
  justify-content: center;
}
.featured-collection-list__cover-inner.right-top {
  align-items: flex-start;
  justify-content: flex-end;
}
.featured-collection-list__cover-inner.left {
  align-items: center;
  justify-content: flex-start;
}
.featured-collection-list__cover-inner.center {
  align-items: center;
  justify-content: center;
}
.featured-collection-list__cover-inner.right {
  align-items: center;
  justify-content: flex-end;
}
.featured-collection-list__cover-inner.left-bottom {
  align-items: flex-end;
  justify-content: flex-start;
}
.featured-collection-list__cover-inner.bottom {
  align-items: flex-end;
  justify-content: center;
}
.featured-collection-list__cover-inner.right-bottom {
  align-items: flex-end;
  justify-content: flex-end;
}
.featured-collection-list__collection-image {
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: none;
  object-fit: cover;
  object-position: var(--position);
}
.featured-collection-list__collection-inner {
  position: absolute;
  inset: 0;
  background-color: var(--background-color);
}
.featured-collection-list__cover,
.featured-collection-list__collection {
  overflow: hidden;
  border: 1px solid rgb(var(--kemove-border));
  border-radius: 8px;
  transform: translateZ(0);
  transform-origin: center bottom;
  transition:
    transform 240ms var(--kemove-ease-out),
    box-shadow 220ms var(--kemove-ease-out),
    border-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .featured-collection-list .featured-collection-list__cover:hover,
  .featured-collection-list .featured-collection-list__collection:hover {
    z-index: 1;
    border-color: rgb(var(--kemove-text) / 18%);
    box-shadow: 0 10px 26px rgb(0 0 0 / 6%);
    transform: translateY(-4px);
  }

  .featured-collection-list .featured-collection-list__cover:active,
  .featured-collection-list .featured-collection-list__collection:active {
    transform: translateY(-1px) scale(0.995);
    transition-duration: 120ms;
  }

  .featured-collection-list .featured-collection-list__cover:hover::after,
  .featured-collection-list .featured-collection-list__collection:hover::after {
    border-color: rgb(var(--kemove-text) / 14%);
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 24%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-collection-list__cover,
  .featured-collection-list__collection {
    transition: none;
  }
}

@media (max-width: 959px) {
  .featured-collection-list__list--feature-first
    > .featured-collection-list__collection:first-child {
    grid-row: auto;
    grid-column: auto;
  }

  .featured-collection-list__list--feature-first
    > .featured-collection-list__collection:first-child
    .featured-collection-list__collection-inner {
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 0 0 8% 8% !important;
  }

  .featured-collection-list__list--feature-first
    > .featured-collection-list__collection:first-child
    .featured-collection-list__collection-content {
    text-align: left !important;
  }
}

/* KEMOVE 2026 final category card overrides */
body[data-page-type="index"] .featured-collection-list__wrapper {
  padding-block: 18px 44px;
  background: #f5f7fa;
}

body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: var(--kemove-home-width, 1320px);
}

body[data-page-type="index"] .featured-collection-list {
  gap: 24px !important;
}

body[data-page-type="index"] .featured-collection-list__list {
  --desktop-columns: 4 !important;
  --desktop-gap-columns: 4 !important;
  gap: 16px;
}

body[data-page-type="index"] .featured-collection-list__list > * {
  aspect-ratio: 1 / 0.9;
}

body[data-page-type="index"] .featured-collection-list__collection {
  min-height: 210px;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgb(15 23 42 / 5%);
}

body[data-page-type="index"] .featured-collection-list__collection-image {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 72%;
  padding: 20px;
  object-fit: contain;
  background: #f8fafc;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page-type="index"] .featured-collection-list__collection-inner {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  background: transparent !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 28%;
  padding: 16px 18px 18px;
  color: #111827 !important;
  text-align: left !important;
  text-shadow: none !important;
  background: #fff;
}

body[data-page-type="index"] .featured-collection-list__collection-title {
  color: #111827 !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-block-start: 7px;
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  text-decoration: none !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-inline-start: auto;
  color: #0091ff;
  content: ">";
  background: rgb(0 145 255 / 8%);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body[data-page-type="index"] .featured-collection-list .featured-collection-list__collection:hover {
    border-color: rgb(0 145 255 / 38%);
    box-shadow: 0 18px 46px rgb(15 23 42 / 10%);
    transform: translateY(-4px);
  }

  body[data-page-type="index"] .featured-collection-list__collection:hover .featured-collection-list__collection-image {
    transform: scale(1.045);
  }

  body[data-page-type="index"] .featured-collection-list__collection:hover .featured-collection-list__collection-button::after {
    color: #fff;
    background: #0091ff;
    transform: translateX(3px);
  }
}

@media (max-width: 1180px) {
  body[data-page-type="index"] .featured-collection-list__list {
    --desktop-columns: 3 !important;
    --desktop-gap-columns: 3 !important;
  }
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__list {
    --mobile-columns: 2 !important;
    gap: 12px;
  }

  body[data-page-type="index"] .featured-collection-list__collection {
    min-height: 180px;
    border-radius: 14px;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding: 14px;
  }
}
/* KEMOVE homepage final category-card arrow fix, true EOF override */
body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: min(var(--kemove-home-width, 1640px), calc(100vw - 96px)) !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  position: relative;
  padding-inline-end: 54px !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  display: block !important;
  min-width: 0;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  margin: 0 !important;
  font-size: 13px;
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
    max-width: calc(100vw - 32px) !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding-inline-end: 14px !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-button::after {
    display: none !important;
  }
}
/* KEMOVE homepage final category alignment */
body[data-page-type="index"] .featured-collection-list__wrapper {
  padding-block: 8px 22px !important;
  background: #f5f7fa !important;
}

body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: min(var(--kemove-home-width, 1640px), calc(100vw - 96px)) !important;
  padding-inline: 0 !important;
}

body[data-page-type="index"] .featured-collection-list {
  align-items: stretch !important;
  gap: 22px !important;
}

body[data-page-type="index"] .featured-collection-list > :first-child {
  width: 100%;
  text-align: left !important;
}

body[data-page-type="index"] .featured-collection-list__list {
  gap: 18px !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  position: relative;
  padding: 16px 54px 18px 18px !important;
  text-align: left !important;
}

body[data-page-type="index"] .featured-collection-list__collection-title,
body[data-page-type="index"] .featured-collection-list__collection-button {
  max-width: 100%;
  text-align: left !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  display: block !important;
  width: auto !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  margin: 0 !important;
  font-size: 13px;
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__wrapper {
    padding-block: 8px 20px !important;
  }

  body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
    max-width: calc(100vw - 32px) !important;
  }

  body[data-page-type="index"] .featured-collection-list {
    gap: 16px !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding: 14px !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-button::after {
    display: none !important;
  }
}
/* KEMOVE homepage final width parity with service/product sections */
body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
  max-width: min(var(--kemove-home-width, 1640px), calc(100vw - 96px)) !important;
  padding-inline: var(--page-padding) !important;
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
    max-width: calc(100vw - 32px) !important;
    padding-inline: var(--page-padding) !important;
  }
}

/* KEMOVE homepage mobile category cards: one card per row */
@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__list {
    --mobile-columns: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body[data-page-type="index"] .featured-collection-list__list > * {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection {
    min-height: 220px !important;
  }
}

/* KEMOVE homepage category image fill */
body[data-page-type="index"] .featured-collection-list__collection-image {
  height: 68% !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: var(--position, center) !important;
  background: #f8fafc !important;
  border-radius: 16px 16px 0 0;
}

body[data-page-type="index"] .featured-collection-list__collection-image img,
body[data-page-type="index"] .featured-collection-list__collection-image picture,
body[data-page-type="index"] .featured-collection-list__collection-image svg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: var(--position, center) !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  min-height: 32% !important;
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__collection-image {
    height: 66% !important;
    border-radius: 14px 14px 0 0;
  }

  body[data-page-type="index"] .featured-collection-list__collection-content {
    min-height: 34% !important;
  }
}

/* KEMOVE homepage category entry: 2:1 image-led overlay cards */
body[data-page-type="index"] .featured-collection-list__list > * {
  aspect-ratio: 2 / 1 !important;
}

body[data-page-type="index"] .featured-collection-list__collection {
  min-height: 0 !important;
  background: #080a0f !important;
}

body[data-page-type="index"] .featured-collection-list__collection-image {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
  border-radius: 16px !important;
}

body[data-page-type="index"] .featured-collection-list__collection::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  opacity: var(--kemove-category-gradient-opacity, 0%);
  background:
    linear-gradient(180deg, transparent 32%, rgb(5 11 20 / 68%) 100%),
    linear-gradient(90deg, rgb(5 11 20 / 28%) 0%, transparent 58%);
}

body[data-page-type="index"] .featured-collection-list__collection-inner {
  z-index: 2 !important;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  position: absolute !important;
  inset: auto 0 0 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 20px 54px 20px 22px !important;
  color: #fff !important;
  background: transparent !important;
}

body[data-page-type="index"] .featured-collection-list__collection-title {
  color: #fff !important;
  font-size: clamp(16px, 1.15vw, 20px) !important;
  font-weight: 900 !important;
  text-shadow: 0 8px 24px rgb(0 0 0 / 24%);
}

body[data-page-type="index"] .featured-collection-list__collection-button {
  max-width: 95%;
  color: rgb(255 255 255 / 76%) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button::after {
  right: 20px !important;
  bottom: 20px !important;
  color: #fff !important;
  background: rgb(255 255 255 / 16%) !important;
  border: 1px solid rgb(255 255 255 / 24%);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page-type="index"] .featured-collection-list__collection:hover .featured-collection-list__collection-button::after {
    color: #fff !important;
    background: #0091ff !important;
    border-color: #0091ff;
  }
}

@media (max-width: 749px) {
  body[data-page-type="index"] .featured-collection-list__collection-content {
    padding: 18px 20px !important;
  }

  body[data-page-type="index"] .featured-collection-list__collection-button::after {
    display: none !important;
  }
}

/* KEMOVE homepage category cards: title-only clickable cards */
body[data-page-type="index"] .featured-collection-list__collection-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
}

body[data-page-type="index"] .featured-collection-list__collection-content {
  padding: 20px 22px !important;
}

body[data-page-type="index"] .featured-collection-list__collection-button,
body[data-page-type="index"] .featured-collection-list__collection-button::after {
  display: none !important;
}

body[data-page-type="index"] .featured-collection-list__collection-title {
  max-width: 100% !important;
  margin: 0 !important;
}

@media (min-width: 960px) {
  body[data-page-type="index"] .featured-collection-list__wrapper .page-width {
    width: min(1440px, calc(100vw - 64px)) !important;
    max-width: none !important;
    padding-inline: 40px !important;
    margin-inline: auto !important;
    box-sizing: border-box !important;
  }
}
