.auctions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.auction-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.auction-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.auction-link { text-decoration: none; color: inherit; display: block; }
.auction-image { height: 200px; overflow: hidden; }
.auction-image img { width: 100%; height: 100%; object-fit: cover; }
.auction-details { padding: 16px 16px 8px 16px; }
.auction-details h3 { margin: 0 0 8px 0; font-size: 1.1rem; color: #222; }
.price { font-weight: 600; color: var(--theme-primary, #ff7d0d); margin-bottom: 8px; }
.countdown { font-size: 0.9rem; color: #666; margin-bottom: 8px; font-family: monospace; }
.countdown span { font-weight: 600; color: #222; }
.auction-actions { padding: 0 16px 16px 16px; }
.watchlist-btn { width: 100%; padding: 8px 12px; border: 1px solid var(--theme-primary, #ff7d0d); background: transparent; color: var(--theme-primary, #ff7d0d); border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background 0.2s, color 0.2s; }
.watchlist-btn:hover { background: var(--theme-primary, #ff7d0d); color: #fff; }
.watchlist-btn.added { background: var(--theme-secondary, #01ae3b); border-color: var(--theme-secondary, #01ae3b); color: #fff; }
@media (max-width: 600px) { .auctions-grid { grid-template-columns: 1fr; } }
