/* ==========================================================================
   VintageTrail - Thrift Haul & Social Feed Styles (TikTok / Editorial Vibe)
   ========================================================================== */

.haul-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.haul-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.haul-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.haul-card:hover {
  border-color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.haul-media {
  position: relative;
  width: 100%;
  height: 180px;
  background: #232220;
}

.haul-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.haul-price-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(24, 23, 22, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
}

.haul-paid-amount {
  color: #68D391; /* Emerald Green */
  font-family: var(--font-mono);
  font-weight: 800;
}

.haul-market-est {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 0.7rem;
}

.haul-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.haul-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
}

.haul-user-handle {
  color: var(--tier3-color);
}

.haul-item-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.haul-comment {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Feed Modal Tab View (Explore all global Hauls) */
.global-haul-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
