/* Recently Viewed Strip */
#rv-strip {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 2px solid #2563eb;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
#rv-strip.rv-visible {
  transform: translateY(0);
}
.rv-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.rv-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #2563eb;
  white-space: nowrap;
  flex-shrink: 0;
}
.rv-items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.rv-items::-webkit-scrollbar { display: none; }
.rv-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  font-size: .82rem;
  color: #111827;
  transition: all .15s;
  flex-shrink: 0;
}
.rv-card:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
  text-decoration: none;
}
.rv-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  line-height: 1.5;
}
.rv-name {
  font-weight: 500;
}
.rv-close {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: .75rem;
  cursor: pointer;
  color: #9ca3af;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  padding: 0;
  line-height: 1;
}
.rv-close:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}
@media (max-width: 600px) {
  .rv-label { display: none; }
  .rv-inner { padding: 8px 12px; gap: 8px; }
}
