<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.shop-top-categories .shop-top-categories__flex {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 20px;
}

.shop-top-categories .shop-top-categories__col {
  box-sizing: border-box;
  flex: 1;
}

.shop-top-categories .shop-top-categories__col &gt; a {
  text-decoration: none;
}

.shop-top-categories .shop-top-categories__content {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;

  align-items: center;
  justify-content: center;
  color: white;
  padding: 40px;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img.shop-top-categories__image {
  transition: 0.2s ease-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.shop-top-categories__image:hover {
  transform: scale(1.1);
}


.shop-top-categories .shop-top-categories__content:hover {
  cursor: pointer;
}

.shop-top-categories__hidden-content {
  max-height: 0;
  opacity: 0;
  transition: 0.8s;
  overflow: hidden;
  font-size: 16px!important;
  width: 100%;
}

.shop-top-categories .shop-top-categories__content:hover .shop-top-categories__hidden-content{
  max-height: 800px;
  opacity: 1;
}

.shop-top-categories .shop-top-categories__content div {
  text-align: center;
}

.shop-top-categories__title {
  text-transform: uppercase;
  width: 100%;
  font-size: 20px!important;
}

.shop-top-categories__description {
  margin-top: 20px;
  width: 100%;
}

.shop-top-categories__bottom {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;

  gap: 10px;
  margin-top: 8px;
}

.shop-top-categories__bottom a {
  flex: 1;
}

.shop-top-categories__bottom button {
  background-color: #5E532D;
  color: white;
  padding: 15px;
  font-size: 14px;
  box-shadow: none;
  outline: 0;
  border: 1px solid #5E532D;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 100%;

  text-transform: uppercase!important;
  border-radius: 10px;
  font-weight: 400!important;
  font-family: var(--wp--preset--font-family--primary-font);
  font-size: 17.5px;
}

.shop-top-categories__bottom button svg {
  transition: 0.3s;
  margin-left: 10px;
  height: 10px;
}

.shop-top-categories__bottom button:hover {
  color: #5E532D;
  background-color: white;
  cursor: pointer;
}

.shop-top-categories__bottom button:hover svg {
  fill: #5E532D;
}

.shop-top-categories__all {
  text-align: center;
  margin-top: 40px;
}

.shop-top-categories__all a {
  text-decoration: none;
  color: black;
}

.shop-top-categories__all a svg {
  height: 10px;
  margin-left: 10px;
}

.shop-top-categories__shop-all {
  margin-top: 30px;
}

.shop-top-categories__shop-all svg {
  height: 16px;
  position: relative;
  top: 2px;
  left: 4px;
}

.shop-top-categories__wrapper {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.shop-top-categories__wrapper:hover img.shop-top-categories__image {
  transform: scale(1.1);
}

.shop-top-categories__wrapper:hover .shop-top-categories__content {
  background-color: rgba(0, 0, 0, 0.5);
}



@media (max-width: 1000px) {
    .shop-top-categories .shop-top-categories__col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}</pre></body></html>