* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff6f7;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #de3451;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a7283d;
}

html,
body {
  background-color: #fff6f7;
  scroll-behavior: smooth;
}

.boxWidth {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

button,
input,
textarea,
select {
  outline: none;
}

select {
  text-indent: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cg clip-path='url(%23clip0_204_2)'%3E%3Cpath d='M9.2625 10.7373L15 16.4623L20.7375 10.7373L22.5 12.4998L15 19.9998L7.5 12.4998L9.2625 10.7373Z' fill='%23884C3A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_204_2'%3E%3Crect width='30' height='30' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 25px;
}

.breadcrump {
  padding: 10px 10px 0 10px;
}
.breadcrump p {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
}
.breadcrump p a {
  text-decoration: none;
  color: #de3451;
}
@media screen and (max-width: 475px) {
  .breadcrump p a {
    font-size: 0.9rem;
  }
}
.breadcrump p a:hover {
  text-decoration: underline;
}

#categoryPageSection {
  padding: 10px;
  gap: 10px;
}
@media screen and (max-width: 475px) {
  #categoryPageSection {
    padding: 10px 5px;
    gap: 5px;
  }
}
#categoryPageSection #categorySection {
  width: 130px;
  background: rgb(254, 239, 239);
  padding: 10px;
  border-radius: 14px;
  height: 97vh;
  overflow-y: auto;
  position: sticky;
  top: 10px;
}
#categoryPageSection #categorySection::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  #categoryPageSection #categorySection {
    padding: 5px 5px 15px 5px;
  }
}
@media screen and (max-width: 475px) {
  #categoryPageSection #categorySection {
    height: 90vh;
  }
}
#categoryPageSection #categorySection .categoryCarousel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#categoryPageSection #categorySection .categoryCarousel a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  gap: 5px;
  transition: 0.1s;
  border: 1px solid transparent;
}
#categoryPageSection #categorySection .categoryCarousel a img {
  width: 100%;
  border-radius: 8px;
}
#categoryPageSection #categorySection .categoryCarousel a h6 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  color: #884c3a;
  margin: 0px;
  text-align: center;
}
@media screen and (max-width: 475px) {
  #categoryPageSection #categorySection .categoryCarousel a h6 {
    font-size: 0.9rem;
  }
}
#categoryPageSection #categorySection .categoryCarousel a:hover {
  background: rgb(247, 235, 237);
  border: 1px solid #de3451;
}
#categoryPageSection #categorySection .categoryCarousel a:hover h6 {
  color: #de3451;
}
#categoryPageSection #categorySection .categoryCarousel a:active {
  transform: scale(0.98);
}
#categoryPageSection #categorySection .categoryCarousel .selected {
  background: rgb(247, 235, 237);
  border: 1px solid #de3451;
}
#categoryPageSection #categorySection .categoryCarousel .selected h6 {
  color: #de3451;
}
#categoryPageSection #categoryProductSection {
  width: 100%;
  overflow: hidden;
}
#categoryPageSection #categoryProductSection #subCategorySection {
  white-space: nowrap;
  overflow-x: auto;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  #categoryPageSection #categoryProductSection #subCategorySection::-webkit-scrollbar {
    display: none;
  }
}
#categoryPageSection #categoryProductSection #subCategorySection a {
  background-color: #f1f1f1;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 50px;
  transition: 0.1s;
  color: #989898;
  border: 1px solid #989898;
}
#categoryPageSection #categoryProductSection #subCategorySection a:hover {
  background-color: #fff6f7;
  border: 1px solid #de3451;
  color: #de3451;
}
#categoryPageSection #categoryProductSection #subCategorySection a:active {
  transform: scale(0.98);
}
#categoryPageSection #categoryProductSection #subCategorySection a h6 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  margin: 0px;
}
@media screen and (max-width: 475px) {
  #categoryPageSection #categoryProductSection #subCategorySection a h6 {
    font-size: 0.9rem;
  }
}
#categoryPageSection #categoryProductSection #subCategorySection .selected {
  background-color: #fff6f7;
  border: 1px solid #de3451;
  color: #de3451;
}
#categoryPageSection #categoryProductSection #categoryProductList .product {
  text-decoration: none;
  padding: 5px;
  transition: 0.1s;
  border-radius: 13px;
  border: 1px solid transparent;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .productImage img {
  width: 100%;
  border-radius: 10px;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .productImage .productThumbnail {
  display: block;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .productImage .productHover {
  display: none;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .productImage:hover .productThumbnail {
  display: none;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .productImage:hover .productHover {
  display: block;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .name-price h2,
#categoryPageSection #categoryProductSection #categoryProductList .product .name-price h3,
#categoryPageSection #categoryProductSection #categoryProductList .product .name-price span {
  color: #884c3a;
  font-family: "recoleta_altregular", Arial, sans-serif;
  margin: 0;
}
#categoryPageSection #categoryProductSection #categoryProductList .product .name-price h2,
#categoryPageSection #categoryProductSection #categoryProductList .product .name-price h3 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  font-size: 1.2rem;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 475px) {
  #categoryPageSection #categoryProductSection #categoryProductList .product .name-price h2,
  #categoryPageSection #categoryProductSection #categoryProductList .product .name-price h3 {
    font-size: 1rem;
  }
}
#categoryPageSection #categoryProductSection #categoryProductList .product .name-price span {
  font-size: 1rem;
}
@media screen and (max-width: 475px) {
  #categoryPageSection #categoryProductSection #categoryProductList .product .name-price span {
    font-size: 0.9rem;
  }
}
#categoryPageSection #categoryProductSection #categoryProductList .product .order-online button {
  background-color: #fff6f7;
  border: 1px solid #de3451;
  color: #de3451;
  font-family: "recoleta_altmedium", Arial, sans-serif;
  font-size: 1.2rem;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  transition: 0.1s;
}
@media screen and (max-width: 475px) {
  #categoryPageSection #categoryProductSection #categoryProductList .product .order-online button {
    font-size: 0.95rem;
    padding: 5px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 325px) {
  #categoryPageSection #categoryProductSection #categoryProductList .product .order-online button {
    font-size: 0.9rem;
  }
}
#categoryPageSection #categoryProductSection #categoryProductList .product .order-online button:hover {
  background-color: #de3451;
  color: white;
}
#categoryPageSection #categoryProductSection #categoryProductList .product:hover {
  background-color: #ffebef;
  border: 1px solid #f6b2be;
}
#categoryPageSection #categoryProductSection #categoryProductList .product:active {
  transform: scale(0.98);
}/*# sourceMappingURL=category.css.map */