.pro-cro-extras, .procro-extras {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pro-cro-extras .item, .procro-extras__item {
  text-align: center;
}

.pro-cro-extras .item img, .procro-extras__item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0px;
}

.pro-cro-extras .item .button, .procro-extras__item .button {
  padding: 10px 12px !important;
  background-color: #8C7F58 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 1000px !important;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: absolute !important;
  bottom: 20px;
  right: 10px;
}

.pro-cro-extras .item .button:hover, .procro-extras__item .button:hover {
  background-color: #005bb5;
}

/* Extras items styled like bundle cards */
.procro-extras__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 16px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  position: relative;
}

/* Alineación del grid: contenido arriba, no centrado */
.procro-extras__item {
  align-items: start;
}

/* Thumb fija en columna 1 y abarca varias filas */
.procro-extras__item .thumb {
  grid-column: 1;
  grid-row: 1 / span 2; /* ocupa el alto de name + price + button */
}

/* Forzar los textos a la columna 2 */
.procro-extras__item .name,
.procro-extras__item .price,
.procro-extras__item .button {
  grid-column: 2;
}

/* Ajustes finos de separación */
.procro-extras__item .name {
  margin: 0 0 4px 0;   /* título */
}

.procro-extras__item .price {
  margin: 0 0 8px 0;   /* queda inmediatamente debajo del título */
  display: block;
}
.procro-extras__item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-1px);
}
.procro-extras__item .thumb img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  filter: brightness(0.95);
}
.procro-extras__item .name {
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.2;
  font-size: 15px;
  text-align: left;

}
.procro-extras__item .price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin-top: 6px;
  gap: 8px;
}

.procro-extras__item .discount-badge {
  background-color: #fdecec;
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 2px 6px;
  border-radius: 4px;
}
.procro-extras__item .price del {
  color: #9aa1a7;
}
.procro-extras__item .price ins {
  text-decoration: none;
  font-weight: 700;
}
.procro-extras__item .button {
  justify-self: start;
  margin-top: 8px;
}

/* Responsive tweak: stack on small screens */
@media (max-width: 600px) {
  .procro-extras__item {
    grid-template-columns: 72px 1fr;
    padding: 12px;
    gap: 12px;
  }
  .procro-extras__item .thumb img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
  }
}


.procro-extras__price-row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 8px;
}