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

*, ::after, ::before { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #1e293b; background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; }

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

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.98); backdrop-filter: blur(8px); border-bottom: 1px solid #e2e8f0; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.header-logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.header-logo-icon { width: 2.25rem; height: 2.25rem; background: #f43f5e; border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-logo-icon svg { color: #fff; }
.header-brand-name { font-size: 1rem; font-weight: 700; color: #0f172a; letter-spacing: -.02em; display: block; }
.header-brand-tagline { font-size: .625rem; color: #94a3b8; font-weight: 500; display: block; }
.header-nav { display: flex; align-items: center; gap: .25rem; }
.header-nav a { padding: .5rem .75rem; font-size: .875rem; font-weight: 500; color: #475569; border-radius: .5rem; transition: all .15s; }
.header-nav a:hover { color: #f43f5e; background: #fff1f2; }

/* Footer */
.footer { background: #0f172a; color: #94a3b8; }
.footer-inner { padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.footer-logo-icon { width: 2rem; height: 2rem; background: #f43f5e; border-radius: .75rem; display: flex; align-items: center; justify-content: center; }
.footer-logo-name { font-size: 1.125rem; font-weight: 700; color: #fff; }
.footer-desc { font-size: .875rem; line-height: 1.6; }
.footer h4 { color: #fff; font-size: .875rem; font-weight: 600; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer ul li a { font-size: .875rem; color: #94a3b8; transition: color .15s; }
.footer ul li a:hover { color: #fb7185; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 2rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .75rem; }
.footer-bottom a { color: #94a3b8; transition: color .15s; }
.footer-bottom a:hover { color: #fb7185; }

/* Breadcrumbs */
.breadcrumbs { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #64748b; padding: 1.25rem 0; flex-wrap: wrap; }
.breadcrumbs a { color: #94a3b8; transition: color .15s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs-sep { color: #334155; }

/* Hero */
.hero-dark { background: #0f172a; color: #fff; padding: 4rem 0; position: relative; overflow: hidden; }
.hero-dark .hero-h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin-bottom: .75rem; }
.hero-dark .hero-sub { font-size: 1rem; color: #94a3b8; margin-bottom: 1.25rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.hero-tag { padding: .375rem .75rem; border: 1px solid rgba(255,255,255,.15); border-radius: .375rem; font-size: .75rem; font-weight: 500; color: #e2e8f0; background: rgba(255,255,255,.05); }

/* Cards */
.card { background: #fff; border-radius: 1rem; border: 1px solid #e2e8f0; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.card-body { padding: 1.25rem; }

/* Trade cards on homepage */
.trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.trade-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem 1.5rem; border-radius: 1.25rem; border: 1px solid #e2e8f0; background: #fff; text-align: center; transition: all .3s; position: relative; overflow: hidden; }
.trade-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.12); border-color: transparent; }
.trade-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.trade-card:hover .trade-icon { transform: scale(1.1); }
.trade-name { font-weight: 700; color: #0f172a; font-size: 1.125rem; display: block; }
.trade-desc { font-size: .875rem; color: #64748b; display: block; margin-top: .25rem; }
.trade-link { display: flex; align-items: center; gap: .25rem; font-size: .75rem; font-weight: 500; margin-top: .25rem; }
.trade-arrow { font-size: .875rem; }

/* Department cards */
.dept-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.dept-card { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-radius: .75rem; border: 1px solid #e2e8f0; background: #fff; transition: all .2s; }
.dept-card:hover { border-color: #fda4af; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.dept-icon { width: 2.5rem; height: 2.5rem; border-radius: .625rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dept-info { flex: 1; min-width: 0; margin: 0 .75rem; }
.dept-name { font-weight: 600; color: #0f172a; transition: color .2s; font-size: .9375rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dept-card:hover .dept-name { color: #e11d48; }
.dept-meta { font-size: .75rem; color: #94a3b8; margin-top: .125rem; display: flex; align-items: center; gap: .25rem; }
.dept-arrow { color: #cbd5e1; transition: color .2s; flex-shrink: 0; }
.dept-card:hover .dept-arrow { color: #f43f5e; }

/* City grid */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.city-card { display: flex; align-items: center; justify-content: space-between; padding: 1rem; border-radius: .75rem; border: 1px solid #e2e8f0; background: #fff; transition: all .2s; }
.city-card:hover { border-color: #fda4af; box-shadow: 0 4px 12px rgba(0,0,0,.07); }
.city-name { font-weight: 500; color: #0f172a; font-size: .9375rem; transition: color .2s; }
.city-card:hover .city-name { color: #e11d48; }
.city-meta { font-size: .75rem; color: #94a3b8; display: flex; align-items: center; gap: .25rem; margin-top: .125rem; }

/* Artisan cards */
.artisan-list { display: flex; flex-direction: column; gap: 1rem; }
.artisan-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem; border-radius: .75rem; border: 1px solid #e2e8f0; background: #fff; }
.artisan-avatar { width: 3rem; height: 3rem; border-radius: .75rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; color: #fff; }
.artisan-name { font-weight: 600; color: #0f172a; font-size: 1rem; }
.artisan-desc { font-size: .875rem; color: #64748b; margin-top: .375rem; line-height: 1.5; }
.artisan-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: .5rem; }
.artisan-tag { padding: .25rem .625rem; border-radius: .375rem; font-size: .75rem; border: 1px solid; }
.artisan-meta { display: flex; align-items: center; gap: 1rem; margin-top: .625rem; flex-wrap: wrap; }
.artisan-meta a, .artisan-meta span { display: flex; align-items: center; gap: .25rem; font-size: .75rem; color: #64748b; }
.artisan-meta a:hover { color: #e11d48; }
.artisan-featured { font-size: .625rem; padding: .25rem .5rem; border-radius: 1rem; background: #fefce8; border: 1px solid #fde047; color: #854d0e; font-weight: 500; }

/* Stars */
.stars { display: inline-flex; align-items: center; gap: .125rem; }
.star-full { color: #fbbf24; }
.star-empty { color: #e2e8f0; }

/* Sidebar */
.page-cols { display: grid; grid-template-columns: 1fr 18rem; gap: 2.5rem; align-items: start; }
.sidebar-card { border-radius: 1rem; border: 1px solid #e2e8f0; overflow: hidden; }
.sidebar-head { padding: 1.25rem; border-bottom: 1px solid #f1f5f9; background: #f8fafc; }
.sidebar-head h3 { font-weight: 700; color: #0f172a; font-size: .9375rem; }
.sidebar-head p { font-size: .75rem; color: #94a3b8; margin-top: .125rem; }
.sidebar-body { padding: 1rem; }
.sidebar-info-row { display: flex; align-items: center; gap: .5rem; padding: .625rem 0; border-bottom: 1px solid #f1f5f9; font-size: .875rem; color: #475569; }
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-label { color: #94a3b8; min-width: 5rem; font-size: .8125rem; }
.sidebar-city-link { display: flex; align-items: center; justify-content: space-between; padding: .5rem .75rem; border-radius: .5rem; font-size: .875rem; color: #475569; transition: all .15s; }
.sidebar-city-link:hover { background: #f8fafc; color: #e11d48; }

/* Other trades bar */
.trades-bar { background: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: .75rem 0; }
.trades-bar-inner { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.trades-bar-label { font-size: .75rem; font-weight: 500; color: #94a3b8; white-space: nowrap; }
.trades-bar-link { font-size: .75rem; padding: .375rem .75rem; border-radius: 1rem; border: 1px solid #e2e8f0; color: #475569; background: #fff; transition: all .15s; white-space: nowrap; }
.trades-bar-link:hover { border-color: #94a3b8; color: #0f172a; }

/* Features section */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem; background: #fff; border-radius: 1.25rem; border: 1px solid #e2e8f0; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.feature-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: #fff1f2; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-title { font-weight: 700; color: #0f172a; margin-bottom: .5rem; }
.feature-desc { font-size: .875rem; color: #64748b; line-height: 1.6; }

/* CTA band */
.cta-band { background: #0f172a; color: #fff; padding: 5rem 0; text-align: center; }
.cta-band h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.cta-band p { color: #94a3b8; font-size: 1.125rem; margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-btn { display: inline-flex; align-items: center; gap: .5rem; padding: 1rem 2rem; background: #f43f5e; color: #fff; font-weight: 600; border-radius: .75rem; font-size: 1.125rem; transition: background .2s; }
.cta-btn:hover { background: #e11d48; }

/* Badge */
.badge { display: inline-flex; align-items: center; gap: .375rem; padding: .375rem .875rem; border-radius: 1rem; font-size: .75rem; font-weight: 500; }

/* Section spacing */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-title { font-size: 1.875rem; font-weight: 700; color: #0f172a; }
.section-sub { color: #64748b; font-size: 1.0625rem; margin-top: .5rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #f1f5f9; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; list-style: none; transition: background .15s; }
.faq-item summary:hover { background: #f8fafc; }
.faq-q-text { font-weight: 500; color: #1e293b; font-size: .9375rem; }
.faq-chevron { color: #94a3b8; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] .faq-chevron { transform: rotate(90deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; font-size: .875rem; color: #64748b; line-height: 1.7; }

/* SEO content */
.seo-content { color: #64748b; font-size: .9375rem; line-height: 1.8; }
.seo-content h2 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 1.5rem 0 .75rem; }
.seo-content h3 { font-size: 1.0625rem; font-weight: 600; color: #0f172a; margin: 1.25rem 0 .5rem; }
.seo-content h4 { font-size: 1rem; font-weight: 600; color: #1e293b; margin: 1rem 0 .5rem; }
.seo-content p { margin-bottom: 1rem; }
.seo-content ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.seo-content ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: decimal; }
.seo-content li { margin-bottom: .375rem; }
.seo-content strong { color: #1e293b; }
.seo-content blockquote { border-left: 4px solid #f43f5e; background: #fff1f2; padding: 1rem 1.25rem; margin: 1.25rem 0; border-radius: 0 .5rem .5rem 0; color: #1e293b; font-style: italic; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: .5rem; padding: 2rem 0; }
.pagination a, .pagination span { padding: .5rem 1rem; border-radius: .5rem; font-size: .875rem; border: 1px solid #e2e8f0; color: #475569; }
.pagination .active { background: #f43f5e; color: #fff; border-color: #f43f5e; }

/* Responsive */
@media (max-width: 1024px) {
  .trade-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero-dark .hero-h1 { font-size: 1.75rem; }
  .trade-grid { grid-template-columns: 1fr 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .page-cols { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .trade-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}