.cardType1 {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--text-gray-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.cardImage img {
  width: 100%;
  display: block;
}

.cardContent {
  background: var(--gray);
  color: #fff;
  padding: 35px 20px 20px 20px;
}

.cardLogo {
  width: 100px;
  position: absolute;
  left: 15px;
  top: 310px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cardSubtitle {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0 0 10px;
}

.cardTitle {
  font-size: 20px;
  color: var(--text-color);
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.3;
}

/* Botón */
.cardButton {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cardButton::after {
  content: "";
  font-size: 16px;
}

.cardType2 {
  width: 100%;
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cardType2-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cardType2-subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-color);
  margin: 0 0 8px;
}

.cardType2-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 16px;
  line-height: 1.3;
}

.cardType2-link:hover {
  text-decoration: underline;
}

.cardType2-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardType2-image img {
  width: 172px;
  height: 223px;
  object-fit: cover;
}

.cardType3 {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
}

/* Header */
.cardType3-header {
  font-size: 14px;
  font-weight: bold;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

/* Imagen */
.cardType3-image {
  text-align: center;
  padding: 16px;
}
.cardType3-image img {
  max-width: 100%;
  height: auto;
}

/* Body */
.cardType3-body {
  padding: 0 16px 16px;
}

.cardType3-title {
  font-size: 14px;
  color: #333;
  margin: 0 0 8px;
}

.cardType3-oldprice {
  font-size: 13px !important;
  color: #999 !important;
  text-decoration: line-through !important;
  margin: 0 0 4px !important;
}

.cardType3-price {
  font-size: 20px !important;
  font-weight: bold;
  margin: 0 0 6px !important;
  color: #111 !important;
}

.cardType3-discount {
  font-size: 14px;
  color: #00a650; /* verde de descuento */
  margin-left: 4px;
}

.cardType3-installments {
  font-size: 13px !important;
  color: #666 !important;
  margin: 0 !important;
}

/* Footer */
.cardType3-footer {
  border-top: 1px solid #f0f0f0;
  padding: 12px 16px;
  background: #fafafa;
}

.cardType3-link::after {
  content: " ›";
  font-size: 16px;
}

.listType1 {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
  border: 1px solid #e0e0e0;
}



.listType1 p {
  margin: 0px !important;
}

/* Header */
.listType1-header {
  font-size: 14px;
  font-weight: bold;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

/* Items */
.listType1-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.listType1-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.listType1-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Títulos */
.listType1-title {
  font-size: 13px;
  color: #333;
  margin: 0 0 6px;
}

/* Precios */
.listType1-oldprice {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin: 0 0 2px;
}

.listType1-price {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin: 0 0 4px;
}

.listType1-discount {
  font-size: 13px;
  color: #00a650;
  margin-left: 4px;
}

/* Cuotas */
.listType1-installments {
  font-size: 12px;
  color: #666;
  margin: 0 0 6px;
}

/* Badge */
.listType1-badge {
  font-size: 12px;
  font-weight: bold;
  color: #00a650;
  background: #e6f6eb;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

/* Footer */
.listType1-footer {
  padding: 12px 16px;
  background: #fafafa;
  text-align: left;
}

.listType1-link::after {
  content: " ›";
  font-size: 16px;
}

.listType2 {
  width: 100%; /* ajustá según tu diseño */
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

/* Grid de productos */
.listType2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.listType2-item {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.listType2-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* Footer con CTA */
.listType2-footer {
  border-top: 1px solid #f0f0f0;
  padding: 14px;
  text-align: center;
  background: #fafafa;
}

.listType2-link {
  font-size: 14px;
  font-weight: bold;
  color: #2962ff;
  text-decoration: none;
}

.listType3 {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  font-family: Arial, sans-serif;
  border: 1px solid #e0e0e0;
}

.listType3 p {
  margin: 0px !important;
}

.listType3-title {
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.listType3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.listType3-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.listType3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.listType3-content {
  position: relative;
  color: #fff;
  padding: 12px;
  z-index: 2;
}

.listType3-logo {
  max-height: 28px;
  margin-bottom: 6px;
}

.listType3-main {
  font-size: 14px;
  font-weight: bold;
  margin: 2px 0;
}

.listType3-sub {
  font-size: 12px;
  margin: 1px 0;
  opacity: 0.9;
}

.categoryList1 {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.categoryList1-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.categoryList1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.categoryList1-item {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.categoryList1-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.categoryList1-item img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 6px;
}

.categoryList1-item p {
  font-size: 12px;
  color: #333;
  margin: 0;
}

.categoryList1-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #0066ff;
  text-decoration: none;
}

.categoryList1-link:hover {
  text-decoration: underline;
}

.categoryList2 {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.categoryList2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.categoryList2-item {
  text-align: center;
  padding: 20px 8px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.categoryList2-item:nth-child(2n) {
  border-right: none;
}

.categoryList2-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.categoryList2-item img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.categoryList2-item p {
  font-size: 13px;
  color: #333;
  margin: 0;
}

.categoryList2-link {
  display: block;
  margin-top: 14px;
  text-align: left;
  font-size: 13px;
  color: #0066ff;
  text-decoration: none;
}

.categoryList2-link:hover {
  text-decoration: underline;
}

.categoryListMenu {
        display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-evenly;
    max-width: 1440px;
    align-items: center;
    margin: auto;
}

.categoryListMenu::-webkit-scrollbar {
  display: none;
}

.categoryListMenu-item {
  flex: 0 0 auto;
  text-align: center;
  font-size: 12px;
  color: #333;
  scroll-snap-align: start;
}

.categoryListMenu-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px auto;
}

.categoryListMenu-icon img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.categoryListMenu p {
  margin: 0;
  font-size: 12px;
  width: 75px;
}

.categoryListMenu-badge {
  position: absolute;
  bottom: -4px;
  background: #00b248;
  color: white;
  font-size: 9px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #008c3a;
}

.categoryListMenu .-color1 {
  background: #ffc5c2;
}

.categoryListMenu .-color2 {
  background: #ffddb1;
}

.categoryListMenu .-color3 {
  background: #cef2c5;
}

.categoryListMenu .-color3 {
  background: #cef2c5;
}

.categoryListMenu .-color4 {
  background: #e8c7ff;
}

.categoryListMenu .-color5 {
  background: #fffebf;
}

.categoryListMenu .-color6 {
  background: #ffdce2;
}

.categoryListMenu .-color7 {
  background: #e5e9ff;
}



.listType1 > .listType1-body > .listType1-item > .listType1-image-link{
      text-decoration: none !important;
      color: transparent !important;
}

.listType1 > .listType1-body > .listType1-item > .ownLink{
      cursor: pointer;
}
/* Tablets / Medium Screens */
@media screen and (min-width: 601px) {
  .listType1 > .listType1-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    gap: 12px;
    padding: 12px 16px;
  }

  .listType1 > .listType1-body > .listType1-item {
    display: flex;
    flex-flow: column nowrap;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;

  }

   .listType1 > .listType1-body > .listType1-item > .listType1-info {
     flex: 1;
    flex-direction: column;
    justify-content: space-between;
   }

  .listType1 > .listType1-body > .listType1-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }
}