@charset "UTF-8";
/**
 * Shop Page Styles
 * 
 * @package Enerpac
 * @since 1.0.0
 */
.product-item {
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(38, 38, 38, 0.06), 0px 9px 9px 0px rgba(38, 38, 38, 0.1);
  transition: all 0.35s;
}
.product-item:hover {
  box-shadow: 0px 1px 2px 0px rgba(14, 14, 14, 0.06), 0px 9px 9px 0px rgba(0, 0, 0, 0.2);
}
.product-item__heading {
  position: relative;
}
.product-item__heading--tag {
  z-index: 1;
  position: absolute;
  top: 18px;
  left: -9px;
}
.product-item__heading--tag > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 36px;
  background-color: #FFCB03;
  border: 4px solid #FFF;
  border-radius: 8px 10px 10px 0;
  box-shadow: 0px 1.4px 2.81px -0.7px rgba(38, 38, 38, 0.06), 0px 2.81px 4.21px -0.7px rgba(38, 38, 38, 0.1);
  position: relative;
}
.product-item__heading--tag > * > * {
  color: #FFF;
}
.product-item__heading--tag > *.order {
  background-color: #FFEEA4;
}
.product-item__heading--tag > *.order p:first-child::before {
  counter-increment: item-counter;
  content: "#" counter(item-counter);
}
.product-item__heading--tag > *::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: calc(0% - 4px);
  width: 9px;
  height: 9px;
  border-top: solid 4.5px #FFDE55;
  border-right: solid 4.5px #FFDE55;
  border-left: solid 4.5px transparent;
  border-bottom: solid 4.5px transparent;
}
.product-item__heading--img {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.product-item__heading--img a img {
  transition: all 0.45s ease;
}
.product-item__heading--img:hover a img {
  transform: scale(1.12);
}
.product-item__heading--img .brand {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.product-item__body {
  padding: 12px 18px;
}
.product-item__body > ul li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #64748B;
  display: flex;
  gap: 4px;
}
.product-item__body > ul li::after {
  content: "•";
}
.product-item__body > ul li:last-child::after {
  content: none;
}
@media (max-width: 575px) {
  .product-item__body > ul li {
    font-size: 12px;
    line-height: 18px;
  }
}
.product-item__body > h3 a {
  color: #000609;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.product-item__body > h3 a:hover {
  color: #FFCB03;
  transition: all 0.2s;
}
.product-item__body > p {
  font-size: 14px;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media (max-width: 575px) {
  .product-item__body {
    padding: 8px 12px;
  }
}
.product-item__footer {
  padding: 12px 18px 16px;
  border-top: 1px dashed #E2E8F0;
}
.product-item__footer__action {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 12px;
}
.product-item__footer__action--buy-now {
  padding: 12px 20px;
  display: block;
  color: #FFF !important;
  background-color: #000609;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  flex-grow: 1;
  border: none;
}
.product-item__footer__action--buy-now:hover {
  background-color: #FFCB03;
}
.product-item__footer__action--add-to-cart {
  padding: 10px 20px;
  display: block;
  background-color: #FFFFFF;
  border: 2px solid #000609;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}
.product-item__footer__action--add-to-cart:hover {
  background-color: #FFCB03;
  border: 2px solid #FFCB03;
}
.product-item__footer__action--add-to-cart:hover svg path {
  stroke: #FFF !important;
}
@media (max-width: 575px) {
  .product-item__footer__action--buy-now {
    padding: 7px 8px;
    font-size: 14px;
    line-height: 150%;
  }
  .product-item__footer__action--add-to-cart {
    padding: 4px 8px;
  }
  .product-item__footer__action--add-to-cart svg {
    width: 20px !important;
    height: 20px !important;
  }
}
.product-item__footer--price > span:first-child {
  color: #64748B;
  margin-right: 4px;
}
.product-item__footer--price > span:nth-child(2) {
  color: #FFCB03;
  font-weight: 600;
}
.product-item__footer--price > span:nth-child(3) {
  color: #A1A1AA;
  display: block;
}
@media (max-width: 575px) {
  .product-item__footer {
    padding: 8px 12px;
  }
  .product-item__footer--price span:first-child {
    font-size: 12px;
  }
  .product-item__footer--price span:nth-child(2) {
    font-size: 14px;
  }
  .product-item__footer--price span:nth-child(3) {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .product-item {
    box-shadow: 0px 1px 2px 0px rgba(38, 38, 38, 0.06), 0px 3px 3px 0px rgba(38, 38, 38, 0.1);
  }
  .product-item:hover {
    box-shadow: 0px 1px 2px 0px rgba(14, 14, 14, 0.06), 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
  }
}

.category-item {
  aspect-ratio: 1/0.9;
  width: 372px;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  box-shadow: 0px 2px 4px -1px rgba(38, 38, 38, 0.06), 0px 4px 6px -1px rgba(38, 38, 38, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
@media (max-width: 991px) {
  .category-item {
    width: 348px;
  }
}
@media (max-width: 575px) {
  .category-item {
    width: 316px;
  }
}
.category-item:hover {
  border-color: #FFF2BE;
  box-shadow: 0px 25px 50px -12px rgba(38, 38, 38, 0.25);
}
.category-item:hover img {
  transform: scale(1.12);
}
.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s;
}
.category-item__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 18px 12px;
  background-color: #FFF;
}
@media (max-width: 575px) {
  .category-item__info {
    padding: 10px 14px 8px;
  }
}
.category-item__info h3 a {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  color: #FFCB03;
}
.category-item__info i {
  padding: 6px;
  font-size: 20px;
  color: #FFCB03;
  background-color: #FFF6D8;
  border-radius: 50%;
  transition: all 0.35s;
}
.category-item__info i:hover {
  color: #FFF;
  background-color: #FFCB03;
}

.page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #000609;
}
.page-numbers:hover {
  background: #FFCB03;
  color: #fff;
}
.page-numbers.current {
  background: #FFCB03;
  color: #fff;
}

.next, .prev {
  border: 2px solid #FFF6D8;
  background-color: #FFFDFA;
  color: #FFCB03;
}
.next i, .prev i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.next {
  transform: rotate(-90deg);
}

.prev {
  transform: rotate(90deg);
}

@media (max-width: 767px) {
  .page-numbers {
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 16px;
  }
}
.dots {
  color: #000609 !important;
  background-color: transparent !important;
}

.shop-page__heading,
.product-archive__heading,
.product-search-page__heading {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .shop-page__heading,
  .product-archive__heading,
  .product-search-page__heading {
    padding: 8rem 0 5rem;
  }
}
@media (min-width: 1024px) {
  .shop-page__heading,
  .product-archive__heading,
  .product-search-page__heading {
    padding: 10rem 0 6rem;
  }
}
.shop-page__heading h1,
.product-archive__heading h1,
.product-search-page__heading h1 {
  font-size: 42px;
  line-height: 1.5;
  font-weight: 700;
}
.shop-page__heading p,
.product-archive__heading p,
.product-search-page__heading p {
  color: white;
  max-width: 600px;
}
.shop-page__heading__background,
.product-archive__heading__background,
.product-search-page__heading__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.shop-page__heading__background::after,
.product-archive__heading__background::after,
.product-search-page__heading__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.shop-page__body, .product-archive__body, .product-search-page__body {
  padding: 24px 0;
}
@media (min-width: 768px) {
  .shop-page__body, .product-archive__body, .product-search-page__body {
    padding: 30px 0;
  }
}
@media (min-width: 1024px) {
  .shop-page__body, .product-archive__body, .product-search-page__body {
    padding: 40px 0;
  }
}
.shop-page__categories, .product-archive__categories, .product-search-page__categories {
  margin-bottom: 2.5rem;
}
.shop-page .product__main--filter, .product-archive .product__main--filter, .product-search-page .product__main--filter {
  padding: 24px;
  background: #f2f3f5;
  border-radius: 4px;
}
.shop-page .product__main--filter .product__main--accordion-item, .product-archive .product__main--filter .product__main--accordion-item, .product-search-page .product__main--filter .product__main--accordion-item {
  margin-bottom: 32px;
}
.shop-page .product__main--filter .product__main--accordion-button, .product-archive .product__main--filter .product__main--accordion-button, .product-search-page .product__main--filter .product__main--accordion-button {
  margin-bottom: 20px;
  padding: 0px;
  border: none;
  outline: none !important;
  color: #e4a300;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.shop-page .product__main--filter .product__main--accordion .form-check, .product-archive .product__main--filter .product__main--accordion .form-check, .product-search-page .product__main--filter .product__main--accordion .form-check {
  margin-left: 12px;
  color: #595959;
}
.shop-page .product__main--filter .product__main--accordion .form-check-input:checked, .product-archive .product__main--filter .product__main--accordion .form-check-input:checked, .product-search-page .product__main--filter .product__main--accordion .form-check-input:checked {
  background-color: #FFCB03;
  border-color: #FFCB03;
}
.shop-page .product__main--filter .product__main--accordion .form-check-input:focus, .product-archive .product__main--filter .product__main--accordion .form-check-input:focus, .product-search-page .product__main--filter .product__main--accordion .form-check-input:focus {
  border-color: #FFCB03;
}
.shop-page .product__main--filter--button .btn-custom, .product-archive .product__main--filter--button .btn-custom, .product-search-page .product__main--filter--button .btn-custom {
  border: none !important;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-list, .product-archive .product__main--filter .filter-category-wrapper .filter-category-list, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-list {
  max-height: 400px;
  overflow-y: auto;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar, .product-archive .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar {
  width: 6px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-track, .product-archive .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-track, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-thumb, .product-archive .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-thumb, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-thumb:hover, .product-archive .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-thumb:hover, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item {
  margin-bottom: 4px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item--child, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item--child, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item--child {
  padding-left: 24px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check {
  margin: 0;
  flex: 1;
  color: #595959;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-label, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-label, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-label {
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  margin-bottom: 0;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input {
  cursor: pointer;
  margin-right: 8px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input:checked, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input:checked, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input:checked {
  background-color: #FFCB03;
  border-color: #FFCB03;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input:focus, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input:focus, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .form-check-input:focus {
  border-color: #FFCB03;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #595959;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle:hover, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle:hover, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle:hover {
  color: #e4a300;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle__icon, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle__icon, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle__icon {
  transition: transform 0.2s ease;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle[aria-expanded=true] .filter-category-toggle__icon, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle[aria-expanded=true] .filter-category-toggle__icon, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__header .filter-category-toggle[aria-expanded=true] .filter-category-toggle__icon {
  transform: rotate(180deg);
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__children, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__children, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__children {
  display: none;
  padding-top: 4px;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item__children.is-expanded, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item__children.is-expanded, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item__children.is-expanded {
  display: block;
}
.shop-page .product__main--filter .filter-category-wrapper .filter-category-item--parent:not(.filter-category-item--child) > .filter-category-item__header .form-check-label, .product-archive .product__main--filter .filter-category-wrapper .filter-category-item--parent:not(.filter-category-item--child) > .filter-category-item__header .form-check-label, .product-search-page .product__main--filter .filter-category-wrapper .filter-category-item--parent:not(.filter-category-item--child) > .filter-category-item__header .form-check-label {
  font-weight: 500;
}
.shop-page__products, .product-archive__products, .product-search-page__products {
  margin-bottom: 3rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0px;
}
.woocommerce .woocommerce-ordering select {
  color: #000609;
  padding: 20px 16px;
  border-radius: 4px;
  border: none;
  background: #C9CCD1;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
@media (max-width: 575px) {
  .woocommerce .woocommerce-ordering select {
    padding: 10px 40px 10px 16px;
    font-size: 14px;
  }
}
.woocommerce .woocommerce-product-search {
  display: flex;
  background: #f2f3f5;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.woocommerce .woocommerce-product-search .search-field {
  padding: 2px 12px;
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.5;
  color: #000609;
  background: transparent;
  border: none;
  outline: none !important;
}
.woocommerce .woocommerce-product-search button {
  padding: 10px 24px;
  background: #000609;
  color: #FFFFFF;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  outline: none !important;
  transition: all 0.2s ease;
}
.woocommerce .woocommerce-product-search button:hover {
  background: #e4a300;
}
.woocommerce .woocommerce-product-search:has(.search-field:focus) {
  background: #C9CCD1;
  flex-grow: 1;
}
.woocommerce .woocommerce-product-search:has(.search-field:not(:placeholder-shown)) {
  background: #C9CCD1;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .woocommerce .woocommerce-product-search {
    padding: 6px;
  }
  .woocommerce .woocommerce-product-search .search-field {
    font-size: 14px;
  }
  .woocommerce .woocommerce-product-search button {
    padding: 10px 24px;
    font-size: 14px;
  }
}

.filter-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  height: 64px;
  background: #C9CCD1;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .filter-mobile {
    height: 40px;
  }
  .filter-mobile svg {
    width: 20px;
    height: 20px;
  }
}

.offcanvas-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  color: #e4a300;
}

.woocommerce-info {
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 8px;
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin: 2rem 0;
}
.woocommerce-info::before {
  content: "ℹ️";
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .filter-combo {
    margin-top: 24px;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .filter-combo {
    margin-top: 16px;
  }
}
