/* ======================================
   WP PRODUCTS SIDEBAR – FINAL + STICKY REAL
====================================== */

.wps-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* STICKY REAL (desktop apenas) */
@media (min-width: 992px) {
  .wps-sticky-inner {
    position: sticky;
    top: 90px; /* ajuste se tiver header maior */
    align-self: flex-start;
  }
}

/* título */
.wps-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* lista */
.wps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* item */
.wps-item {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.wps-item:last-child {
  border-bottom: none;
}

/* layout interno */
.wps-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

/* nome do produto (clicável) */
.wps-name-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #111 !important;
  text-decoration: none !important;
  flex: 1;
}

.wps-name-link:hover {
  text-decoration: underline !important;
}

/* botão ver preço */
.wps-link {
  font-size: 13px;
  font-weight: 600;
  color: #222 !important;
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
}

/* ícone */
.wps-link::after {
  content: "›";
  font-size: 16px;
  line-height: 1;
}

/* hover */
.wps-link:hover {
  background-color: #f6f6f6 !important;
  border-color: #bbb !important;
}

/* recomendado */
.wps-recomendado {
  background: #f9fbf7;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.wps-badge {
  position: absolute;
  top: -6px;
  right: 0;
  background: #2e7d32;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
}

/* mobile */
@media (max-width: 991px) {
  .wps-sticky-inner {
    position: static;
  }
}
