* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: "Segoe UI", sans-serif; color:#333; background:#fff; }
a { text-decoration:none; color:inherit; }

/* HEADER */
header { background:#fff; border-bottom:1px solid #eee; position:sticky; top:0; z-index:100; }
.header-inner { max-width:1200px; margin:0 auto; padding:0 20px; height:70px; display:flex; align-items:center; gap:40px; }
.logo a { font-size:24px; font-weight:700; color:#333; }
.logo span { color:#FF6B35; }
nav { display:flex; gap:24px; flex:1; }
nav a { font-size:15px; color:#555; transition:color .2s; }
nav a:hover { color:#FF6B35; }
.header-actions { display:flex; gap:12px; }

/* BUTTONS */
.btn-primary { background:#FF6B35; color:#fff; padding:10px 20px; border-radius:8px; font-weight:600; transition:background .2s; border:none; cursor:pointer; }
.btn-primary:hover { background:#e55a24; }
.btn-outline { border:2px solid #FF6B35; color:#FF6B35; padding:10px 20px; border-radius:8px; font-weight:600; transition:all .2s; background:transparent; cursor:pointer; }
.btn-outline:hover { background:#FF6B35; color:#fff; }
.btn-large { padding:14px 32px; font-size:17px; }

/* HERO */
.hero { background:linear-gradient(135deg, #fff5f0 0%, #fff 100%); padding:80px 20px; text-align:center; }
.hero h1 { font-size:42px; font-weight:800; color:#222; line-height:1.2; margin-bottom:20px; }
.hero p { font-size:18px; color:#666; margin-bottom:36px; }
.hero-buttons { display:flex; gap:16px; justify-content:center; margin-bottom:48px; }
.hero-stats { display:flex; gap:48px; justify-content:center; }
.stat { text-align:center; }
.stat strong { display:block; font-size:32px; font-weight:800; color:#FF6B35; }
.stat span { font-size:14px; color:#888; }

/* CONTAINER */
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* CATEGORIES */
.categories-section { padding:60px 20px; background:#f9f9f9; }
.categories-section h2 { text-align:center; font-size:28px; margin-bottom:36px; }
.categories-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:16px; }
.cat-card { background:#fff; border-radius:12px; padding:24px 16px; text-align:center; border:1px solid #eee; transition:all .2s; display:flex; flex-direction:column; align-items:center; gap:12px; }
.cat-card:hover { border-color:#FF6B35; transform:translateY(-2px); box-shadow:0 4px 16px rgba(255,107,53,.15); }
.cat-card i { font-size:28px; color:#FF6B35; }
.cat-card span { font-size:14px; font-weight:600; color:#333; }

/* BOUTIQUES */
.boutiques-section { padding:60px 20px; }
.boutiques-section h2 { text-align:center; font-size:28px; margin-bottom:36px; }
.boutiques-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; }
.boutique-card { background:#fff; border-radius:16px; overflow:hidden; border:1px solid #eee; transition:all .2s; }
.boutique-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,.1); }
.boutique-banner { height:100px; display:flex; align-items:center; justify-content:center; }
.boutique-logo { width:70px; height:70px; border-radius:50%; border:3px solid #fff; object-fit:cover; background:#fff; }
.boutique-info { padding:16px; }
.boutique-info h3 { font-size:17px; font-weight:700; margin-bottom:4px; }
.boutique-info p { font-size:13px; color:#888; margin-bottom:10px; }
.boutique-stats { display:flex; gap:16px; font-size:13px; color:#555; }
.boutique-stats i { color:#FF6B35; margin-right:4px; }
.empty-state { text-align:center; padding:60px; color:#aaa; grid-column:1/-1; }
.empty-state i { font-size:48px; margin-bottom:16px; display:block; }

/* HOW IT WORKS */
.how-it-works { padding:60px 20px; background:#f9f9f9; }
.how-it-works h2 { text-align:center; font-size:28px; margin-bottom:36px; }
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:32px; max-width:1200px; margin:0 auto; }
.step { text-align:center; }
.step-icon { width:72px; height:72px; background:#FF6B35; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.step-icon i { font-size:28px; color:#fff; }
.step h3 { font-size:18px; font-weight:700; margin-bottom:8px; }
.step p { font-size:14px; color:#666; line-height:1.6; }

/* ARTISAN CTA */
.artisan-cta { background:#FF6B35; padding:60px 20px; text-align:center; color:#fff; }
.artisan-cta h2 { font-size:32px; margin-bottom:16px; }
.artisan-cta p { font-size:18px; margin-bottom:32px; opacity:.9; }
.artisan-cta .btn-primary { background:#fff; color:#FF6B35; }
.artisan-cta .btn-primary:hover { background:#f0f0f0; }

/* FOOTER */
footer { background:#222; color:#aaa; padding:48px 20px 24px; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:32px; max-width:1200px; margin:0 auto 32px; }
footer h4 { color:#fff; font-size:16px; margin-bottom:16px; }
footer a { display:block; font-size:14px; margin-bottom:8px; color:#aaa; transition:color .2s; }
footer a:hover { color:#FF6B35; }
footer p { font-size:14px; line-height:1.6; }
.footer-bottom { text-align:center; border-top:1px solid #333; padding-top:24px; font-size:13px; }

/* RESPONSIVE */
@media(max-width:768px) {
  .hamburger { display:flex !important; }
  .mobile-menu { display:none; }
  .mobile-menu.open { display:flex !important; flex-direction:column; position:fixed; top:64px; left:0; right:0; background:var(--primary,#4A1942); padding:16px; gap:12px; z-index:999; border-top:2px solid var(--accent,#E8C547); }
  .mobile-menu a { color:#fff; padding:12px 16px; border-radius:8px; font-size:16px; text-decoration:none; border:1px solid rgba(255,255,255,.2); text-align:center; }
  nav { display:none; }
  .hero h1 { font-size:28px; }
  .hero-buttons { flex-direction:column; align-items:center; }
  nav { display:none; }
  .header-actions .btn-outline { padding:8px 12px; font-size:13px; }
  .header-actions .btn-primary { padding:8px 12px; font-size:13px; }
  nav { display:none; }
}