/*
  Category strip (compact horizontal tiles)
  Matches the small category carousel design.
*/

.cat-strip {
   
       margin-top: 28px;
    width: 100%;
    max-width: 1499px;
    height: auto;
    gap: 121px;
    opacity: 1;
   
    border-radius: 13px;
    margin: 30px auto;
    margin-bottom: 0px;
}

.cat-strip__inner {
  width: min(1648px, 100%);
  margin: 0 auto;
 
}

.cat-strip__carousel {
  position: relative;
    border-radius: 13px;
    background: #CDDEE1;
   
    width: 100%;
   
}

.cat-strip__nav {
  position: absolute;
  top: 50%;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;

  border: 0;
  background: transparent;
  cursor: pointer;
  color: #3f4d5c;

  transform: translateY(-50%);
}

.cat-strip__nav:hover {
}

.cat-strip__nav:focus {
  outline: none;
}

.cat-strip__nav:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 178, 255, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.12);
}

.cat-strip__nav[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.cat-strip__nav--prev {
  left: -11px;
}

.cat-strip__nav--next {
  right: -11px;
}

.cat-strip__nav::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.cat-strip__nav--prev::before {
  transform: rotate(225deg);
}

.cat-strip__nav--next::before {
  transform: rotate(45deg);
}

.cat-strip__nav-icon {
  display: none;
}

.cat-strip__carousel:not([data-overflow="true"]) .cat-strip__nav {
  display: none;
}

.cat-strip__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 9px 0;
    scrollbar-width: none;
    width: 100%;
    max-width: 1226px;
    margin: 0 auto;
    -ms-overflow-style: none;
}

.cat-strip__scroller::-webkit-scrollbar {
  display: none;
}

.cat-strip__list {
display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    height: 75px;
}

.cat-strip__carousel:not([data-overflow="true"]) .cat-strip__list {
  width: 100%;
  justify-content: center;
}

.cat-tile__link {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 120px;
  height: 75px;
  
  background: #ffffff;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, 0.06);
    box-shadow: 1px 1px 2px rgba(0, 35, 55, 0.5);
  text-decoration: none;
}

.cat-tile__link:hover {

box-shadow: 1px 1px 5px var(--sds-size-depth-025, 1px) #4DC9FF;



}

.category-card.highlight .cat-tile__link {
box-shadow: 1px 1px 5px var(--sds-size-depth-025, 1px) #FFA066;

}

.cat-tile__label {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  padding: 3px 6px;
  border-radius: 5px 5px 0px 0px;
  background: #F8F1ED;
  text-align: center;
  color: #323232;

  font-family: 'Saira', sans-serif;
  font-weight: 600;        /* SemiBold */
  font-size: 14px;
  line-height: 1;           /* 100% */
  letter-spacing: 0;
}

.cat-tile__thumb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.cat-tile__thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .cat-strip {
    margin-top: 20px;
  }

  .cat-strip__carousel {
    padding: 10px 46px;
  }

  .cat-tile__link {
    width: 140px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .cat-strip {
    margin: 16px 0 0;
  }

  .cat-strip__inner {
    padding: 0 10px;
  }

  .cat-strip__carousel {
    padding: 10px 0;
    overflow: hidden;
  }

  .cat-strip__nav {
    display: none;
  }

  .cat-strip__scroller {
    max-width: none;
    width: 100%;
    padding: 0 6px;
  }

  .cat-strip__list {
    gap: 10px;
    height: auto;
  }

  .cat-tile__link {
    width: 112px;
    height: 82px;
  }

  .cat-tile__label {
    font-size: 10px;
    padding: 3px 4px;
  }
}
