/* shares.css — Публичная лента акций */
.shares-hero {
    background: linear-gradient(135deg, var(--bg) 0%, #0d0929 100%);
    padding: 60px 24px 40px; text-align: center;
}
.shares-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 8px; }
.shares-hero p { color: rgba(255,255,255,0.6); margin-bottom: 24px; font-size: 1.1rem; }
.shares-filters {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center; max-width: 600px; margin: 0 auto 32px;
}
.shares-filter-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; border-radius: 10px; padding: 10px 14px;
    font-size: 14px; cursor: pointer; appearance: none; min-width: 160px;
}
.shares-filter-select option { background: #0d0929; color: #fff; }
.shares-city-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; border-radius: 10px; padding: 10px 14px;
    font-size: 14px; outline: none; min-width: 160px;
}
.shares-city-input::placeholder { color: rgba(255,255,255,0.4); }

.shares-grid {
    max-width: 1140px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px; padding: 32px 20px 48px;
}
@media (max-width: 640px) { .shares-grid { grid-template-columns: 1fr; } }

.promo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 22px;
    cursor: pointer; display: flex; flex-direction: column; gap: 12px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.promo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108,92,231,0.5);
    box-shadow: 0 12px 32px rgba(108,92,231,0.15);
}
.promo-card-header { display: flex; align-items: center; gap: 12px; }
.promo-logo {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,255,255,0.08); object-fit: cover;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: rgba(255,255,255,0.4);
}
.promo-logo img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.promo-biz-name { font-weight: 600; font-size: 15px; }
.promo-biz-city { font-size: 12px; color: rgba(255,255,255,0.5); }
.promo-name { font-size: 16px; font-weight: 700; }
.promo-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.promo-code-row {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06); border-radius: 8px; padding: 8px 12px;
}
.promo-code-text { font-family: monospace; font-size: 15px; font-weight: 700; color: #a78bfa; flex: 1; }
.promo-copy-btn {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.5); padding: 4px; transition: color 0.2s;
}
.promo-copy-btn:hover { color: #a78bfa; }
.promo-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.promo-badge {
    background: linear-gradient(135deg, #6C5CE7, #a78bfa);
    color: #fff; border-radius: 8px; padding: 5px 12px;
    font-size: 13px; font-weight: 700;
}
.promo-expiry { font-size: 11px; color: rgba(255,255,255,0.4); }

.shares-load-more { text-align: center; padding: 24px; }
.shares-empty {
    text-align: center; padding: 64px 20px;
    color: rgba(255,255,255,0.5); grid-column: 1/-1;
}
.shares-empty i { font-size: 3rem; margin-bottom: 16px; display: block; }
