.nv-recent-cart {
	margin-top: 34px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid #e8eaf0;
	border-radius: 18px;
}

.nv-recent-cart__header {
	margin-bottom: 22px;
}

.nv-recent-cart__header h2 {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 800;
	color: #172033;
}

.nv-recent-cart__header p {
	margin: 0;
	color: #6b7280;
	font-size: 15px;
}

.nv-recent-cart__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.nv-recent-cart__item {
	border: 1px solid #edf0f5;
	border-radius: 16px;
	padding: 14px;
	background: #fff;
}

.nv-recent-cart__image {
	display: block;
	margin-bottom: 12px;
}

.nv-recent-cart__image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.nv-recent-cart__content h3 {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.3;
}

.nv-recent-cart__content h3 a {
	color: #061b2a;
	text-decoration: none;
}

.nv-recent-cart__price {
	margin-bottom: 10px;
	color: #061b2a;
	font-weight: 700;
}

.nv-recent-cart__badge {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #ffe8e8;
	color: #e9252a;
	font-size: 12px;
	font-weight: 700;
}

.nv-recent-cart__button {
	display: block;
	text-align: center;
	padding: 11px 12px;
	border-radius: 12px;
	background: #e9252a;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.nv-recent-cart__button:hover {
	color: #fff;
	opacity: .92;
}

/**LIMITAR TITULO*/
.nv-recent-cart__content h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 63px;
}

/*RESPONSIVE*/
@media (min-width: 1025px) and (max-width: 1201px) {
  .nv-recent-cart__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .nv-recent-cart__button {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
	.nv-recent-cart__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 999px) {
  .nv-recent-cart {
    margin-top: 22px;
  }

  .nv-recent-cart__header h2 {
    font-size: 20px;
  }

  .nv-recent-cart__header p {
    font-size: 14px;
    line-height: 1.45;
  }

  .nv-recent-cart__grid {
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .nv-recent-cart__item {
    flex: 0 0 62%;
    max-width: 62%;
    scroll-snap-align: start;
  }
  
  .nv-recent-cart__image img{
      max-height: 150px;
      object-fit: contain;
  }

  .nv-recent-cart__content{
      padding: 14px;
  }

  .nv-recent-cart__content h3{
      font-size: 15px;
      line-height: 1.35;
  }

  .nv-recent-cart__button{
      min-height: 42px;
      font-size: 14px;
  }
}

@media (max-width: 430px) {
  .nv-recent-cart__item {
    flex-basis: 72%;
    max-width: 72%;
  }
}