.post-type-archive-products .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: -moz-fit-content;
  height: fit-content;
  gap: 1rem;
  width: 80%;
  justify-content: center;
}
@media (max-width: 1100px) {
  .post-type-archive-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .post-type-archive-products .products-grid {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .post-type-archive-products .products-grid {
    grid-template-columns: 1fr;
  }
}
.post-type-archive-products .wpc-filter-link {
  color: #0000ee;
}
.post-type-archive-products .product-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  border: 2px solid #003da6;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
.post-type-archive-products .product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.post-type-archive-products .product-card__thumb {
  width: 100%;
  overflow: hidden;
  min-height: 300px;
}
.post-type-archive-products .product-card__thumb:hover img {
  transform: scale(1.1);
}
.post-type-archive-products .product-card__thumb img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  transition: all 0.3s ease;
}
.post-type-archive-products .product-card__title a {
  color: #003da6;
  font-size: 1.5rem;
  text-decoration: none;
}
.post-type-archive-products .product-card__title a:hover {
  text-decoration: underline;
}
.post-type-archive-products .product-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.post-type-archive-products .product-card__button {
  border-radius: 10px;
  background: #003da6;
  text-align: center;
  border: 1px solid #003da6;
  box-shadow: 0px 10px 32px 0px rgba(38, 37, 117, 0.2);
  padding: 12px 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.post-type-archive-products .product-card__button:hover {
  background: #fff;
  border: 1px solid #003da6;
  color: #003da6;
}
.post-type-archive-products .catalog__single-price {
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-type-archive-products .catalog__single-price .brand {
  padding-bottom: 1rem;
}
.post-type-archive-products .catalog__single-price .brand p {
  gap: 12px;
}
.post-type-archive-products .category__container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .post-type-archive-products .category__container {
    flex-direction: column;
  }
}
.post-type-archive-products .filter-widget {
  width: 20%;
}
@media (max-width: 650px) {
  .post-type-archive-products .filter-widget {
    width: 100%;
  }
}
.post-type-archive-products .filter__title {
  font-size: 1.75rem;
  color: #003da6;
  padding-bottom: 1rem;
}
.post-type-archive-products .wpc-filters-section {
  margin-bottom: 0 !important;
  border-top: 2px solid #e5e5e5;
  padding: 1rem 0;
}
@media (max-width: 650px) {
  .post-type-archive-products .wpc-filters-section {
    padding-right: 1rem;
    min-width: 180px;
  }
}
@media (max-width: 414px) {
  .post-type-archive-products .wpc-filters-section {
    min-width: 150px;
  }
}
@media (max-width: 360px) {
  .post-type-archive-products .wpc-filters-section {
    padding: 1rem;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .post-type-archive-products .wpc-filters-widget-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
}
.post-type-archive-products .product-price-list ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.post-type-archive-products .product-price-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed #aaa8a8;
}
.post-type-archive-products .product-price-list ul li .label {
  font-weight: 500;
  color: #000;
}
.post-type-archive-products .product-price-list ul li .value {
  font-weight: 600;
  color: #222;
}
.post-type-archive-products .wpc-term-item-content-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}
.post-type-archive-products .wpc-term-item-content-wrapper:hover {
  background-color: #f8f9fa;
}
.post-type-archive-products .wpc-term-item-content-wrapper input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #999;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
}
.post-type-archive-products .wpc-term-item-content-wrapper input[type=checkbox]:checked {
  background-color: #3490dc;
  border-color: #3490dc;
}
.post-type-archive-products .wpc-term-item-content-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transform-origin: center;
}
.post-type-archive-products .wpc-term-item-content-wrapper label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 500;
}
.post-type-archive-products .order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.post-type-archive-products .order-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-type-archive-products .order-modal__header {
  line-height: 1.1 !important;
  color: #003da6;
  font-size: 1.75rem !important;
}
.post-type-archive-products .order-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.post-type-archive-products .order-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  margin: 0 1rem;
}
.post-type-archive-products .order-modal__dialog .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-type-archive-products .order-modal__dialog .input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.post-type-archive-products .order-modal__dialog .input svg {
  min-width: 32px;
}
.post-type-archive-products .order-modal__dialog .input input {
  border: none;
  outline: none;
  border-bottom: 1px solid;
  width: 100%;
}
.post-type-archive-products .order-modal__dialog .inputs__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.post-type-archive-products .order-modal__dialog .submit__row {
  margin-top: 2rem;
}
.post-type-archive-products .order-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.post-type-archive-products .order-modal .test-form__submit {
  padding: 0.5em 1em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.post-type-archive-products .other__products__section {
  padding-top: 2rem;
}
.post-type-archive-products .order-modal__success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background-color: #e6ffed;
  border: 1px solid #2ecc71;
  color: #2ecc71;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
}
.post-type-archive-products .wpcf7-response-output {
  display: none;
}
@media (max-width: 480px) {
  .post-type-archive-products .order-modal__dialog {
    margin: 0 1.5rem;
  }
}

.single-products .catalog__single-price {
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.single-products .catalog__single-price .brand {
  padding-bottom: 1rem;
}
.single-products .catalog__single-price .brand p {
  gap: 12px;
}
.single-products .product-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  border: 2px solid #003da6;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
.single-products .product-card__body {
  padding: 1rem;
}
.single-products .product-card__thumb {
  width: 100%;
  overflow: hidden;
}
.single-products .product-card__thumb:hover img {
  transform: scale(1.1);
}
.single-products .product-card__thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: all 0.3s ease;
}
.single-products .product-card__title a {
  color: #003da6;
  font-size: 1.5rem;
  text-decoration: none;
}
.single-products .product-card__title a:hover {
  text-decoration: underline;
}
.single-products .product-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.single-products .product-card__button {
  border-radius: 10px;
  background: #003da6;
  border: 1px solid #003da6;
  box-shadow: 0px 10px 32px 0px rgba(38, 37, 117, 0.2);
  padding: 12px 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.single-products .product-card__button:hover {
  background: #fff;
  border: 1px solid #003da6;
  color: #003da6;
}
.single-products .category__container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .single-products .category__container {
    flex-direction: column;
  }
}
.single-products .filter-widget {
  width: 20%;
}
@media (max-width: 650px) {
  .single-products .filter-widget {
    width: 100%;
  }
}
.single-products .filter__title {
  font-size: 1.75rem;
  color: #003da6;
  padding-bottom: 1rem;
}
.single-products .wpc-filters-section {
  margin-bottom: 0 !important;
  border-top: 2px solid #e5e5e5;
  padding: 1rem 0;
}
@media (max-width: 650px) {
  .single-products .wpc-filters-section {
    padding-right: 1rem;
    min-width: 180px;
  }
}
@media (max-width: 350px) {
  .single-products .wpc-filters-section {
    padding: 1rem;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .single-products .wpc-filters-widget-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
}
.single-products .product-price-list ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.single-products .product-price-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed #aaa8a8;
}
.single-products .product-price-list ul li .label {
  font-weight: 500;
  color: #000;
}
.single-products .product-price-list ul li .value {
  font-weight: 600;
  color: #222;
}
.single-products .wpc-term-item-content-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}
.single-products .wpc-term-item-content-wrapper:hover {
  background-color: #f8f9fa;
}
.single-products .wpc-term-item-content-wrapper input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #999;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
}
.single-products .wpc-term-item-content-wrapper input[type=checkbox]:checked {
  background-color: #3490dc;
  border-color: #3490dc;
}
.single-products .wpc-term-item-content-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transform-origin: center;
}
.single-products .wpc-term-item-content-wrapper label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 500;
}
.single-products .order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.single-products .order-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-products .order-modal__header {
  line-height: 1.1 !important;
  color: #003da6;
  font-size: 1.75rem !important;
}
.single-products .order-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.single-products .order-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  margin: 0 1rem;
}
.single-products .order-modal__dialog .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-products .order-modal__dialog .input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.single-products .order-modal__dialog .input svg {
  min-width: 32px;
}
.single-products .order-modal__dialog .input input {
  border: none;
  outline: none;
  border-bottom: 1px solid;
  width: 100%;
}
.single-products .order-modal__dialog .inputs__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.single-products .order-modal__dialog .submit__row {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-products .order-modal__dialog .submit__row input {
  width: 100%;
}
.single-products .order-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.single-products .order-modal .test-form__submit {
  padding: 0.5em 1em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.single-products .other__products__section {
  padding-top: 2rem;
}
.single-products .order-modal__success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background-color: #e6ffed;
  border: 1px solid #2ecc71;
  color: #2ecc71;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
}
.single-products .wpcf7-response-output {
  display: none;
}
@media (max-width: 480px) {
  .single-products .order-modal__dialog {
    margin: 0 1.5rem;
  }
}

.modal-3d__wrapper {
  height: 100%;
}/*# sourceMappingURL=catalog.css.map */