/* Product Catalogue */
.product-filter {
  width: 100%;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.product-filter h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--secundario);
}

.filter-form {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.filter-input label {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.filter-input select {
  display: block;
  padding: 0.25rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid gray;
}

.filter-search-button {
  padding: 0.5rem 0.25rem;
  background-color: var(--primario);
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
}

.product-catalogue-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-catalogue-item {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid lightgray;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.product-catalogue-item:hover {
  border: 1px solid var(--primario);
  box-shadow: 0 5px 15px 0 #44d62c15;
}

.product-catalogue-item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 524;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem 0.5rem 0 0;
}

.product-catalogue-item-desc {
  padding: 0 1.1428571429rem;
  height: 210px;
}

.product-catalogue-item-desc-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 6px 0 12px;
  min-height: 95px;
}

.product-catalogue-item-desc-title span:nth-child(1) {
  font-weight: 600;
}

.product-catalogue-item-desc-title a:nth-child(2) {
  font-weight: 300;
  text-decoration: none;
  color: var(--dark);
}

.product-catalogue-item-desc-features {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(2, 1fr);
}

.product-catalogue-item-desc-features-item span {
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 300 !important;
}

.product-catalogue-item-price {
  display: flex;
  flex: 1 1;
  align-items: center;
  text-align: center;
  height: 66px;
  font-size: 0.875rem;
  border-top: 1px solid #e8e8e8;
  transition: all 0.5s;
}

.product-catalogue-item:hover .product-catalogue-item-price {
  border-top: 1px solid var(--primario);
}

.product-catalogue-item-price div:nth-child(1) {
  flex: 1 1;
}

.product-catalogue-item-price div:nth-child(2) {
  flex: 1 1;
  justify-content: space-between;
  align-content: center;
  height: 40px;
  color: var(--secundario);
  font-weight: 300;
  border-left: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}

.product-catalogue-item-price div:nth-child(2) i {
  margin-right: .25rem;
}

.product-catalogue-item:hover .product-catalogue-item-price div:nth-child(2) {
  border-left: 1px solid var(--primario);
}

.product-catalogue-item-cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px 0;
  height: 30px;
  font-size: 0.875rem;
  border-top: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}
.product-catalogue-item-cta a {
  width: 100%;
  color: var(--dark);
  text-decoration: none;
}

.product-catalogue-item:hover .product-catalogue-item-cta {
  background-color: var(--primario);
}

.product-catalogue-item:hover .product-catalogue-item-cta a {
  color: var(--white);
}

@media (max-width: 1200px) {
  .product-catalogue-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .product-catalogue-grid {
    grid-template-columns: 1fr;
  }
}

/*  Product Detail */
.categoria {
  font-size: small !important;
}

.detalle-card {
  height: auto;
}

.signo-peso {
  font-size: 1.25rem;
  color: var(--dark);
}

.valor-paquetes {
  font-size: 2.5rem;
  font-weight: 800;
  color: #151515;
}

.iva-paquetes {
  font-size: 1.25rem;
  color: var(--dark);
}

.bg-detalleProducto {
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  position: relative;
  padding: 30px;
}

.badge {
  background-color: var(--greenCTA);
  color: #fff;
  position: absolute;
  right: -0px;
  top: 87px;
  width: 100px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px 0px 0px 5px;
}

.btn-compra {
  background-color: var(--secundario);
  box-shadow: 0px 0px 7px var(--secundario);
  border-radius: 5px;
}

.btn-compra:hover {
  background-color: var(--greenCTA);
  box-shadow: 0px 0px 7px var(--greenCTA);
  border-radius: 5px;
}

.text-compra {
  padding: 100px !important;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: var(--linen);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.img-onshow {
  width: auto;
  height: auto;
}

.thumbnail {
  width: 100px;
  height: auto;
}

.fade-transition {
  opacity: 1;
  transition: all 0.2s ease;
}

.fade-transition.hide {
  opacity: 0;
}

.iconoRRSS {
  width: 40px;
  height: auto;
}
