.p4u-homecategories {
  margin-bottom: 30px;
}

.p4u-homecategories__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3em;
  margin-bottom: 20px;
}

.p4u-homecategories__shop-link {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.p4u-homecategories__shop-link:hover {
  color: #9C77EA;
}

.p4u-homecategories__shop-icon {
  width: 16px;
  height: 16px;
}

.p4u-homecategories__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.p4u-homecategories-slider-wrapper {
  position: relative;
}

.p4u-homecategories-slider {
  overflow: hidden;
}

.p4u-homecategories-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.p4u-homecategories-item {
  flex: 0 0 25%;
  padding: 0 7px;
  box-sizing: border-box;
}

.p4u-homecategories-item:first-child {
  padding-left: 0;
}

.p4u-homecategories-item:last-child {
  padding-right: 0;
}

.category-miniature {
  height: 100%;
  border: 1px solid #000;
  border-radius: 8px;
}

.category-miniature__image-container {
  height: 270px;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}

.category-miniature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-bottom: 1px solid #000;
}

.category-miniature__image-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-miniature__placeholder-icon {
  max-width: 80px;
  max-height: 80px;
}

.category-miniature__link:hover .category-miniature__image {
  transform: scale(1.05);
}

.category-miniature__infos {
  padding: 15px;
  text-align: center;
}

.category-miniature__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  transition: color 0.3s ease;
  text-align: left;
}

.category-miniature__link:hover .category-miniature__title {
  color: #007bff;
}

.category-miniature__description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 22px;
  font-size: 18px;
  text-align: left;
}

.category-miniature .btn {
    width: 100%;
    text-transform: uppercase;
    color: #fff;
    padding-right: 0;
    background: #9C77EA;
    background-size: 18% !important;
    border-radius: 22px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    height: 2.8em;
    line-height: 2.8em;
    padding: 0px;
}
.category-miniature .btn:after {
  color: rgb(255, 255, 255);
  content: "";
  flex-shrink: 0;
  width: 2.2em;
  height: 2.2em;
  display: inline-block;
  position: absolute;
  margin-top: 4px;
  border-radius: 50%;
  right: 21px;
  transition: var(--bs-accordion-btn-icon-transition);
  background: #1D0A4A url(../../../../themes/hummingbird/assets/img-dist/button_bg.svg) center center no-repeat !important;
}

.p4u-homecategories-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  border: 1px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}

.p4u-homecategories-nav:hover {
  background: #000;
}

.p4u-homecategories-nav--prev {
  left: -50px;
}

.p4u-homecategories-nav--next {
  right: -42px;
}

.p4u-homecategories-nav .material-icons {
  font-size: 20px;
  color: #fff;
}

.p4u-homecategories-nav:hover .material-icons {
  color: #333;
}

@media (max-width: 768px) {
  .p4u-homecategories-item {
    flex: 0 0 50%;
  }

  .p4u-homecategories-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .p4u-homecategories-item {
    flex: 0 0 100%;
  }
}
