#pdp-sticky {
  position: fixed;
  right: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 14px;
  max-width: 375px;
  z-index: 9999;
  display: none;
  gap: 14px;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  margin-top: 10px;
  margin-right: 5px;
  margin-left: 10px;
  top: 125px; /* Valor por defecto para desktop y tablet */
}

/* En pantallas pequeñas (hasta 767px de ancho) cambia solo el top */
@media screen and (max-width: 767px) {
  #pdp-sticky {
    top: 60px;
    right: 10px;
    left: 10px;
    max-width: unset;
  }
}

#pdp-sticky.visible {
  display: flex;
}

.thumbnail__wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.product-information__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin-left: 12px;
}

.zw-brand-name {
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.t-body-regular-bold {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: #000;
}

.pricing-information__container {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin-bottom: 10px;
}

.price-original {
  color: #999;
  text-decoration: line-through;
  font-size: 13px;
}

.price-discounted {
  font-weight: bold;
  color: #d00;
  font-size: 15px;
}

.add-to-cart-button__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -50px;
}

.add-to-cart-button__container button {
  background-color: #000;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.add-to-cart-button__container button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
