/* RastaCamp shared site chrome — footer, share, product rail */
.rc-chrome-footer {
  margin-top: 2.5rem;
  padding: 1.75rem 0 5.5rem;
  border-top: 1px solid rgba(128, 128, 128, 0.25);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: inherit;
}
.rc-chrome-footer a {
  color: inherit;
  opacity: 0.85;
  text-decoration: none;
}
.rc-chrome-footer a:hover { opacity: 1; text-decoration: underline; }
.rc-chrome-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-bottom: 1rem;
}
.rc-chrome-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(128, 128, 128, 0.35);
  background: rgba(128, 128, 128, 0.08);
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.rc-chrome-btn:hover { background: rgba(128, 128, 128, 0.16); }
.rc-chrome-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.75rem;
}
.rc-chrome-products h3 {
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.rc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
}
.rc-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(128, 128, 128, 0.2);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.rc-product-card:hover { background: rgba(128, 128, 128, 0.1); }
.rc-product-card img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.15);
}
.rc-product-card span { font-size: 0.78rem; font-weight: 600; }
.rc-product-card em { font-size: 0.68rem; opacity: 0.7; font-style: normal; }
.rc-pro-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}
#rastacamp-stripe-bar[data-pro-hidden="1"] { display: none !important; }
body.rc-pro-active { padding-bottom: 1rem !important; }
