/* ============================================================
   app.css — workateck.com ATS  v10
   ============================================================ */

/* --- Reset & Base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:   #1a3a6b;
  --color-accent:    #e8132a;
  --color-bg:        #f3f4f6;
  --color-surface:   #ffffff;
  --color-border:    #e5e7eb;
  --color-text:      #111827;
  --color-muted:     #6b7280;
  --color-success:   #10b981;
  --color-warning:   #f59e0b;
  --radius:          12px;
  --radius-sm:       8px;
  --shadow-sm:       0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:       0 10px 40px rgba(0,0,0,.10);
  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--color-bg); color: var(--color-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* --- Layout ------------------------------------------------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons ------------------------------------------------ */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .6rem 1.2rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; cursor: pointer; border: 1.5px solid transparent; transition: all .15s; text-decoration: none; white-space: nowrap; }
.btn-primary  { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover  { background: #122d56; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,58,107,.3); }
.btn-outline  { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover  { background: var(--color-primary); color: #fff; text-decoration: none; }
.btn-ghost    { background: transparent; color: var(--color-muted); border-color: var(--color-border); }
.btn-ghost:hover    { background: var(--color-border); text-decoration: none; }
.btn-danger   { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-sm       { padding: .35rem .8rem; font-size: .82rem; }
.btn-lg       { padding: .85rem 2rem; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }

/* --- Header ------------------------------------------------- */
.site-header { background: var(--color-primary); color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 rgba(255,255,255,.1), var(--shadow-md); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: .15rem; text-decoration: none; }
.logo-eck { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -.5px; }
.logo-careers { font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 400; margin-left: .15rem; }
.header-nav { display: flex; align-items: center; gap: 1rem; }
.header-nav a { color: rgba(255,255,255,.85); font-size: .875rem; }
.header-nav .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); }
.header-nav .btn-outline:hover { background: rgba(255,255,255,.1); }
.header-nav .btn-primary { background: var(--color-accent); border-color: var(--color-accent); }

/* --- Hero --------------------------------------------------- */
.hero { background: linear-gradient(135deg, #0f2444 0%, #1a3a6b 60%, #1e4a8a 100%); color: white; padding: 4rem 0 5rem; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.hero .container { position: relative; }
.hero-eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: -.03em; line-height: 1.1; }
.hero h1 span { color: #60a5fa; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; max-width: 500px; }

/* --- Search bar -------------------------------------------- */
.search-bar { display: flex; gap: .5rem; flex-wrap: wrap; max-width: 860px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: .5rem; backdrop-filter: blur(10px); }
.search-bar input, .search-bar select {
  padding: .65rem 1rem; border: none;
  border-radius: var(--radius-sm); background: rgba(255,255,255,.12);
  color: white; font-size: .9rem; min-width: 180px; flex: 1; outline: none;
  font-family: var(--font);
}
.search-bar input::placeholder { color: rgba(255,255,255,.5); }
.search-bar select option { background: #1a3a6b; color: white; }
.search-bar input:focus, .search-bar select:focus { background: rgba(255,255,255,.18); }
.search-bar .btn-primary { background: var(--color-accent); border-color: var(--color-accent); flex-shrink: 0; padding: .65rem 1.5rem; border-radius: var(--radius-sm); }

/* --- Stats bar --------------------------------------------- */
.stats-bar { background: rgba(255,255,255,.06); border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; gap: 2rem; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.4rem; font-weight: 700; color: #fff; }
.stat-item span { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }

/* --- Listings ---------------------------------------------- */
.listings-wrap { padding: 2.5rem 1.5rem 4rem; max-width: 1160px; margin: 0 auto; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; color: var(--color-muted); font-size: .875rem; }
.clear-filters { color: var(--color-accent); font-weight: 500; }

.store-group { margin-bottom: 3rem; }
.store-group-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.store-group-header h2 { font-size: 1.15rem; font-weight: 700; color: var(--color-text); }
.store-city { font-size: .85rem; color: var(--color-muted); font-weight: 400; margin-left: .5rem; }
.store-divider { height: 2px; background: linear-gradient(90deg, var(--color-primary) 0%, transparent 60%); margin-bottom: 1rem; border-radius: 2px; }

.job-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }

/* --- Job Card ---------------------------------------------- */
.job-card { display: flex; flex-direction: column; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.4rem; text-decoration: none; color: var(--color-text); transition: all .2s; position: relative; }
.job-card:hover { box-shadow: var(--shadow-lg); border-color: #93c5fd; transform: translateY(-2px); text-decoration: none; }
.job-card.featured { border-left: 3px solid var(--color-accent); }

.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .75rem; }
.job-card-store-logo { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, var(--color-primary), #2563eb); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: white; letter-spacing: -.5px; flex-shrink: 0; }

.job-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .3rem; color: var(--color-text); line-height: 1.3; }
.job-store-name { font-size: .82rem; color: var(--color-muted); margin-bottom: .75rem; }

.job-meta { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .6rem; }
.tag { background: #eff6ff; color: #1d4ed8; font-size: .72rem; padding: .2rem .6rem; border-radius: 20px; font-weight: 500; }
.tag-dept { background: #f0fdf4; color: #15803d; }

.job-pay { font-size: .875rem; color: #374151; font-weight: 500; margin-bottom: auto; }

.job-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid #f3f4f6; }
.apply-hint { font-size: .75rem; color: var(--color-accent); font-weight: 500; }
.job-age { font-size: .75rem; color: var(--color-muted); }
.badge-featured { position: absolute; top: .8rem; right: .8rem; background: var(--color-accent); color: white; font-size: .68rem; padding: .15rem .5rem; border-radius: 20px; font-weight: 600; letter-spacing: .02em; }

/* --- Apply Form -------------------------------------------- */
.apply-wrap { max-width: 760px; padding-top: 2rem; padding-bottom: 3rem; }
.apply-job-header { margin-bottom: 1.5rem; }
.back-link { font-size: .85rem; color: var(--color-muted); }
.apply-job-title h1 { font-size: 1.5rem; margin-top: .3rem; font-weight: 700; }
.apply-job-meta { display: flex; gap: .5rem; color: var(--color-muted); font-size: .875rem; margin-top: .3rem; flex-wrap: wrap; }
.apply-account-prompt { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius); padding: .8rem 1rem; margin-bottom: 1.5rem; font-size: .875rem; }

.apply-form fieldset { border: none; margin-bottom: 2rem; }
.form-section legend { font-size: 1rem; font-weight: 600; color: var(--color-primary); border-bottom: 2px solid var(--color-primary); padding-bottom: .4rem; margin-bottom: 1.2rem; width: 100%; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-group { display: flex; flex-direction: column; gap: .3rem; flex: 1; min-width: 160px; }
.form-group-lg { flex: 2; }
.form-group-sm { flex: 0 0 100px; min-width: 80px; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--color-text); }
.optional { font-weight: 400; color: var(--color-muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: .65rem .9rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: var(--font); color: var(--color-text); background: var(--color-surface);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(26,58,107,.08); }
.field-error { font-size: .8rem; color: var(--color-accent); }

/* File upload */
.file-upload-area { border: 2px dashed var(--color-border); border-radius: var(--radius); padding: 2rem; text-align: center; cursor: pointer; position: relative; transition: .15s; }
.file-upload-area:hover, .file-upload-area.drag-over { border-color: var(--color-primary); background: #f0f4ff; }
.file-upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-upload-label { display: flex; flex-direction: column; gap: .3rem; pointer-events: none; }
.file-icon { font-size: 2rem; }
.file-types { font-size: .8rem; color: var(--color-muted); }
.file-selected { color: var(--color-primary); font-weight: 500; }

.checkbox-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; }
.form-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.form-note { font-size: .8rem; color: var(--color-muted); }

/* --- Login page -------------------------------------------- */
.login-wrap { max-width: 420px; margin: 4rem auto; padding: 0 1.5rem; }
.login-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); }
.login-card h1 { font-size: 1.4rem; margin-bottom: 1.5rem; font-weight: 700; }

/* --- Alerts ------------------------------------------------ */
.alert { padding: .8rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .875rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* --- Pagination -------------------------------------------- */
.pagination { display: flex; gap: .4rem; margin-top: 2rem; justify-content: center; }
.pagination a { padding: .4rem .75rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-size: .85rem; color: var(--color-text); }
.pagination a.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.pagination a:hover { border-color: var(--color-primary); text-decoration: none; }

/* --- Misc --------------------------------------------------- */
.empty-state { text-align: center; color: var(--color-muted); padding: 2rem; font-size: .9rem; }

/* --- Footer ------------------------------------------------- */
.site-footer { background: #0f172a; color: rgba(255,255,255,.5); padding: 2.5rem 0; font-size: .85rem; margin-top: 0; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.site-footer a { color: rgba(255,255,255,.7); }
.footer-links { display: flex; gap: 1.5rem; }

/* --- Job detail (public) ------------------------------------ */
.job-detail-wrap { max-width: 1060px; padding: 1.5rem 1.5rem 3rem; margin: 0 auto; }
.job-detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
@media(max-width:760px){ .job-detail-grid { grid-template-columns: 1fr; } .job-detail-sidebar { order:-1; } }
.job-detail-header { margin-bottom: 2rem; }
.store-badge-lg { display: inline-block; background: #eff6ff; color: #1d4ed8; font-size: .8rem; font-weight: 700; padding: .2rem .75rem; border-radius: 20px; margin-bottom: .75rem; }
.job-detail-header h1 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.03em; }
.job-detail-meta { display: flex; gap: .5rem; flex-wrap: wrap; color: var(--color-muted); font-size: .875rem; margin-bottom: .8rem; }
.job-pay-lg { font-size: 1.1rem; font-weight: 600; color: #059669; }
.job-section { margin-bottom: 2rem; }
.job-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: .8rem; color: var(--color-primary); }
.job-body { font-size: .95rem; line-height: 1.75; color: #374151; }
.apply-cta-mobile { display: none; margin-top: 1.5rem; }
@media(max-width:760px){ .apply-cta-mobile { display:block; } }
.already-applied { color: #059669; font-weight: 500; font-size: .9rem; }

/* Apply card */
.apply-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 5rem; margin-bottom: 1rem; box-shadow: var(--shadow-md); }
.apply-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.apply-card-store { font-size: .83rem; color: var(--color-muted); margin-bottom: 1rem; }
.apply-card-details { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; margin-bottom: 1rem; }
.apply-card-details div { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px solid #f3f4f6; }
.apply-card-details span:first-child { color: var(--color-muted); }
.related-jobs h4 { font-size: .8rem; font-weight: 600; color: var(--color-muted); margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .05em; }
.related-job-link { display: flex; flex-direction: column; padding: .5rem 0; border-bottom: 1px solid #f3f4f6; font-size: .875rem; text-decoration: none; color: var(--color-text); }
.related-job-link span { font-size: .78rem; color: var(--color-muted); }
.related-job-link:hover { color: var(--color-primary); }

/* --- Job description markdown rendering -------------------- */
.job-body .job-section-header { font-size:1rem; font-weight:700; margin:1.4rem 0 .5rem; color:var(--color-primary); }
.job-body h2.job-section-header { font-size:1.05rem; }
.job-body .job-list { margin:.4rem 0 .8rem 1.4rem; }
.job-body .job-list li { margin-bottom:.3rem; font-size:.95rem; line-height:1.6; }
.job-body p { font-size:.95rem; line-height:1.75; margin-bottom:.5rem; }

/* --- Applicant status cards -------------------------------- */
.app-status-card { background:#fff; border:1.5px solid #e5e7eb; border-radius:var(--radius); padding:1.2rem; }
.app-status-card.card-hired { border-color:#10b981; }
.app-status-card.card-rejected { opacity:.75; }
.app-status-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:.8rem; }
.app-status-footer { display:flex; justify-content:space-between; font-size:.82rem; color:#9ca3af; padding-top:.6rem; border-top:1px solid #f3f4f6; }
.hired-banner { margin-top:.8rem; background:#d1fae5; color:#065f46; padding:.6rem .8rem; border-radius:6px; font-size:.85rem; }
.stage-pill { font-size:.72rem; padding:.2rem .6rem; border-radius:20px; font-weight:600; white-space:nowrap; }

/* --- Responsive -------------------------------------------- */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .search-bar { flex-direction: column; }
  .search-bar input, .search-bar select { min-width: 100%; }
  .job-list { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .header-nav .btn:not(:last-child) { display: none; }
  .stats-bar { gap: 1rem; }
  .hero { padding: 2.5rem 0 3.5rem; }
}

/* --- Hero layout with rotator ------------------------------ */
.hero-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: center; }
@media(max-width: 900px) { .hero-layout { grid-template-columns: 1fr; } .hero-rotator { display: none; } }

/* --- Job Rotator ------------------------------------------- */
.hero-rotator { display: flex; flex-direction: column; gap: .8rem; }
.rotator-cards { position: relative; }
.rotator-card {
  display: none; flex-direction: column; gap: .6rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 14px;
  padding: 1.4rem; text-decoration: none; color: white;
  transition: transform .2s, box-shadow .2s;
}
.rotator-card.active { display: flex; }
.rotator-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.3); text-decoration: none; }
.rotator-featured-badge { font-size: .72rem; color: #fcd34d; font-weight: 600; margin-bottom: -.2rem; }
.rotator-store { font-size: .78rem; color: rgba(255,255,255,.6); }
.rotator-title { font-size: 1.15rem; font-weight: 700; line-height: 1.2; color: #fff; }
.rotator-meta { display: flex; gap: .4rem; flex-wrap: wrap; }
.rtag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); font-size: .72rem; padding: .2rem .6rem; border-radius: 20px; font-weight: 500; }
.rotator-pay { font-size: .9rem; font-weight: 600; color: #6ee7b7; }
.rotator-cta { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

.rotator-dots { display: flex; gap: .5rem; justify-content: center; padding-top: .2rem; }
.rotator-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; padding: 0; transition: .2s; }
.rotator-dot.active { background: #fff; width: 20px; border-radius: 4px; }

/* --- Footer ------------------------------------------------- */
.site-footer { background: #0f172a; color: rgba(255,255,255,.5); padding: 3rem 0 0; font-size: .875rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width:500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-eck { font-size: 1.3rem; }
.footer-brand .logo-careers { color: rgba(255,255,255,.4); }
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li { display: flex; flex-direction: column; gap: .1rem; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .85rem; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-col ul li span { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); text-decoration: none; }
.social-links { display: flex; gap: .8rem; margin-top: .8rem; }
.social-links a { color: rgba(255,255,255,.4); transition: color .15s; }
.social-links a:hover { color: #fff; text-decoration: none; }

/* --- About section ----------------------------------------- */
.about-section { background: #fff; padding: 4rem 0; border-bottom: 1px solid #e5e7eb; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:800px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-accent); margin-bottom: .6rem; }
.about-section h2 { font-size: 1.8rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 1rem; color: var(--color-primary); }
.about-section p { font-size: .95rem; line-height: 1.75; color: #4b5563; margin-bottom: .8rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-value { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 1.1rem; }
.about-value-icon { font-size: 1.4rem; margin-bottom: .4rem; }
.about-value h4 { font-size: .85rem; font-weight: 700; color: var(--color-primary); margin-bottom: .3rem; }
.about-value p { font-size: .8rem; color: #6b7280; margin: 0; line-height: 1.5; }
.locations-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.location-item { display: flex; align-items: center; gap: .8rem; padding: .7rem .9rem; background: #f8fafc; border-radius: var(--radius-sm); border: 1px solid #e5e7eb; font-size: .875rem; }
.location-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.location-item a { font-weight: 600; color: var(--color-primary); }
.location-item span { color: #9ca3af; font-size: .8rem; margin-left: auto; }

/* --- City Job Pages ---------------------------------------- */
.city-hero { background: linear-gradient(135deg, #0f2444 0%, #1a3a6b 60%, #1e4a8a 100%); color: white; padding: 3rem 0 3.5rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.city-hero h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: .6rem; }
.city-hero h1 span { color: #60a5fa; }
.city-hero p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 1.8rem; line-height: 1.7; }
.city-stats { display: flex; gap: 2rem; }
.city-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; }
.city-stat span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }

/* City store cards */
.city-stores { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 1.5rem 0; }
.city-store-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.city-store-card { display: flex; align-items: center; gap: .8rem; padding: .8rem 1.2rem; background: #f8fafc; border: 1.5px solid #e5e7eb; border-radius: var(--radius); text-decoration: none; color: var(--color-text); transition: .15s; flex: 1; min-width: 220px; }
.city-store-card:hover { border-color: var(--color-primary); background: #eff6ff; text-decoration: none; }
.city-store-logo { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg, var(--color-primary), #2563eb); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; color: white; flex-shrink: 0; }
.city-store-info strong { display: block; font-size: .9rem; font-weight: 600; color: var(--color-primary); }
.city-store-info span { font-size: .78rem; color: var(--color-muted); }
.city-store-arrow { margin-left: auto; color: var(--color-muted); font-size: 1rem; }

/* Other cities */
.other-cities { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; }
.other-cities h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--color-muted); }
.other-city-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.other-city-card { display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.2rem; background: #fff; border: 1.5px solid #e5e7eb; border-radius: var(--radius); text-decoration: none; color: var(--color-text); transition: .15s; }
.other-city-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); text-decoration: none; transform: translateY(-1px); }
.other-city-card strong { font-size: .9rem; font-weight: 600; color: var(--color-primary); }
.other-city-card span { font-size: .78rem; color: var(--color-muted); }

/* Nav city dropdown */
.nav-city-dropdown { position: relative; }
.nav-city-btn { display: inline-flex; align-items: center; gap: .3rem; color: rgba(255,255,255,.85); font-size: .875rem; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
.nav-city-btn:hover { color: #fff; }
.nav-city-menu { display: none; position: absolute; top: calc(100% + .5rem); right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; z-index: 200; overflow: hidden; }
.nav-city-dropdown:hover .nav-city-menu,
.nav-city-dropdown:focus-within .nav-city-menu { display: block; }
.nav-city-item { display: flex; flex-direction: column; padding: .7rem 1rem; text-decoration: none; color: var(--color-text); border-bottom: 1px solid #f3f4f6; transition: background .1s; }
.nav-city-item:last-child { border-bottom: none; }
.nav-city-item:hover { background: #f8fafc; text-decoration: none; }
.nav-city-item strong { font-size: .875rem; font-weight: 600; color: var(--color-primary); }
.nav-city-item span { font-size: .75rem; color: var(--color-muted); }
