*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #1a1a1a; background: #fff; }
a { color: #C0392B; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

nav { background: #fff; border-bottom: 2px solid #C0392B; padding: 14px 0; }
nav .brand { font-size: 1.5rem; font-weight: 800; color: #C0392B; }
nav .brand span { color: #1a1a1a; }
nav .nav-inner { display: flex; align-items: center; justify-content: space-between; }
nav .nav-links a { margin-left: 20px; color: #1a1a1a; font-weight: 500; }

.hero { background: linear-gradient(135deg, #C0392B 0%, #96281B 100%); color: #fff; padding: 64px 20px; text-align: center; }
.hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; }
.hero p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto 28px; }
.hero .cta { background: #fff; color: #C0392B; font-weight: 700; padding: 14px 32px; border-radius: 6px; display: inline-block; font-size: 1rem; }

.search-bar { background: #F8F8F8; padding: 24px 20px; border-bottom: 1px solid #eee; }
.search-bar input { width: 100%; max-width: 500px; padding: 12px 18px; border: 2px solid #C0392B; border-radius: 6px; font-size: 1rem; }

.shops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 32px 0; }
.shop-card { border: 1px solid #eee; border-radius: 8px; padding: 20px; background: #fff; transition: box-shadow 0.2s; }
.shop-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.10); }
.shop-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.shop-card .location { color: #666; font-size: 0.9rem; margin-bottom: 10px; }
.shop-card .badge { background: #FFF3F3; color: #C0392B; font-size: 0.78rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; display: inline-block; }

.shop-detail { padding: 40px 0; }
.breadcrumb { font-size: 0.88rem; color: #888; margin-bottom: 20px; }
.breadcrumb a { color: #C0392B; }
.shop-header { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 32px; }
.shop-icon { width: 72px; height: 72px; background: #C0392B; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; flex-shrink: 0; }
.shop-name { font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.shop-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #F8F8F8; border-radius: 8px; padding: 24px; margin-bottom: 28px; }
.meta-item label { font-size: 0.8rem; color: #888; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 4px; }
.meta-item span { font-size: 1rem; color: #1a1a1a; font-weight: 500; }
.meta-item a { color: #C0392B; }

.comment-participer { background: #FFF3F3; border-left: 4px solid #C0392B; border-radius: 0 8px 8px 0; padding: 24px; margin-bottom: 28px; }
.comment-participer h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: #C0392B; }
.comment-participer .steps { list-style: none; counter-reset: steps; }
.comment-participer .steps li { counter-increment: steps; padding: 8px 0 8px 36px; position: relative; border-bottom: 1px solid #f0dede; }
.comment-participer .steps li:last-child { border-bottom: none; }
.comment-participer .steps li::before { content: counter(steps); position: absolute; left: 0; top: 6px; background: #C0392B; color: #fff; width: 24px; height: 24px; border-radius: 50%; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.open-info { background: #fff; border: 2px dashed #ddd; border-radius: 8px; padding: 20px; text-align: center; color: #999; }
.open-info strong { display: block; color: #1a1a1a; margin-bottom: 6px; }

.value-section { background: #F8F8F8; padding: 48px 20px; margin: 40px 0 0; }
.value-section h2 { text-align: center; font-size: 1.8rem; font-weight: 800; margin-bottom: 32px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: #fff; border-radius: 8px; padding: 24px; text-align: center; }
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: #555; }

footer { background: #1a1a1a; color: #bbb; padding: 32px 20px; margin-top: 48px; }
footer .footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer .brand { color: #fff; font-weight: 800; font-size: 1.1rem; }
footer a { color: #bbb; }
footer p { font-size: 0.85rem; margin-top: 8px; }

.city-header { padding: 40px 0 20px; }
.city-header h1 { font-size: 2rem; font-weight: 800; }
.city-header p { color: #555; margin-top: 8px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .shop-meta { grid-template-columns: 1fr; }
  .shop-header { flex-direction: column; }
}
