/* Astrologer listing page (talknow) */

.listing-section { max-width: 1240px; margin: 24px auto; padding: 0 24px; }
.astro-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }
@media (max-width: 420px) { .astro-grid { grid-template-columns: 1fr; } }

.astro-card-link { display: block; color: inherit; text-decoration: none; }
.astro-card {
  background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
  border: 1px solid rgba(43,27,46,0.06); display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease; position: relative; height: 100%;
}
.astro-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(43,27,46,0.12); }
.astro-top { display: flex; gap: 16px; margin-bottom: 14px; }
.avatar-wrap { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--saffron-light); }
.status-badge { position: absolute; bottom: 2px; right: 2px; padding: 2px 8px; border-radius: 999px; font-size: 9.5px; font-weight: 700; text-transform: uppercase; color: #fff; border: 1.5px solid #fff; }
.status-online { background: var(--green); }
.status-busy { background: var(--yellow); color: var(--ink); }
.status-offline { background: #888; }
.astro-details { flex: 1; }
.astro-name { font-size: 16px; font-weight: 700; color: var(--night); display: flex; align-items: center; gap: 6px; }
.verified-icon { color: #1DA1F2; font-size: 13px; }
.astro-rating { font-size: 12.5px; color: var(--ink-soft); margin: 3px 0; }
.astro-rating span { color: #FFB300; font-weight: 600; }
.astro-tags { font-size: 12px; color: var(--ink-soft); line-height: 1.4; margin-top: 4px; }
.astro-meta { display: flex; gap: 12px; font-size: 11.5px; color: var(--ink-soft); margin-top: 6px; font-weight: 500; }
.astro-meta div { background: var(--cream); padding: 3px 8px; border-radius: 6px; }
.astro-bottom { border-top: 1px dashed rgba(43,27,46,0.1); padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.rate-box { display: flex; flex-direction: column; }
.rate-label { font-size: 10.5px; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.rate-val { font-size: 16px; font-weight: 700; color: var(--saffron-deep); }
.action-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-action { display: inline-flex; align-items: center; gap: 5px; padding: 8px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1.5px solid; transition: all .2s; font-family: inherit; }
.btn-chat { background: var(--green-bg); color: var(--green); border-color: rgba(46,125,50,0.3); }
.btn-chat:hover { background: var(--green); color: #fff; }
.btn-call { background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); color: #fff; border-color: transparent; box-shadow: 0 4px 12px rgba(232,93,4,0.25); }
.btn-call:hover { transform: scale(1.03); }
.btn-video { background: var(--night); color: var(--gold); border-color: var(--gold); }
.btn-video:hover { background: var(--night-2); }

/* Call / consultation modal */
.call-modal-overlay { position: fixed; inset: 0; background: rgba(20,14,32,0.85); backdrop-filter: blur(8px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.call-modal-overlay.active { display: flex; }
.call-card { background: var(--night-2); color: #fff; border-radius: 24px; width: 100%; max-width: 400px; padding: 32px 24px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(212,175,55,0.2); position: relative; }
.call-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 16px; border: 3px solid var(--gold); object-fit: cover; }
.call-status-text { font-size: 12px; color: var(--saffron-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.call-astro-name { font-family: 'Cinzel', serif; font-size: 22px; color: #fff; margin-bottom: 6px; }
.call-rate-info { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.call-timer { font-size: 32px; font-weight: 700; font-family: monospace; color: var(--gold); background: rgba(0,0,0,0.3); padding: 10px 20px; border-radius: 12px; display: inline-block; margin-bottom: 24px; letter-spacing: 2px; }
.call-controls { display: flex; justify-content: center; gap: 16px; }
.btn-control { width: 50px; height: 50px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: transform .2s; }
.btn-control:hover { transform: scale(1.1); }
.btn-mute { background: rgba(255,255,255,0.15); color: #fff; }
.btn-end { background: var(--red); color: #fff; }
