* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #1a1a1a; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.site-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; flex-wrap: wrap; }
.logo img { height: 42px; display: block; }
.main-nav a { margin-left: 16px; text-decoration: none; color: #333; font-size: 0.9rem; }
.main-nav a:hover { color: #d4231f; }
.lang-switch { margin-left: 16px; padding-left: 16px; border-left: 1px solid #ddd; }
.lang-switch a { margin-left: 6px; font-weight: 600; }
.lang-switch a.lang-active { color: #d4231f; }

/* Hero with video background, matching the live site's full-bleed video hero */
.hero { position: relative; height: 480px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; }
.hero-overlay { position: relative; z-index: 1; background: rgba(0,0,0,0.35); padding: 40px 60px; border-radius: 8px; color: #fff; }
.hero-overlay h1 { font-size: 3rem; margin-bottom: 12px; color: #fff; }
.hero-overlay p { font-size: 1.1rem; }

.category-hero { width: 100%; height: 260px; background-size: cover; background-position: center; border-radius: 8px; margin: 30px 0; }

.category-grid, .listing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 0; }
@media (max-width: 1100px) { .category-grid, .listing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .category-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .category-grid, .listing-grid { grid-template-columns: 1fr; } }
.category-card, .listing-card { display: block; border-radius: 10px; text-decoration: none; color: inherit; overflow: hidden; background: #f8f8f8; box-shadow: 0 1px 4px rgba(0,0,0,.08); transition: box-shadow .2s, transform .2s; }
.category-card:hover, .listing-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,.14); transform: translateY(-2px); }
.category-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.category-card.featured { grid-column: span 2; }
.category-card.featured img { height: 220px; }
.category-card.featured h2 { font-size: 1.4rem; }
@media (max-width: 640px) { .category-card.featured { grid-column: span 1; } }
.category-card h2 { font-size: 1.15rem; padding: 16px; }
.listing-card img { width: 100%; height: 100px; object-fit: contain; padding: 16px 16px 0; background: #fff; }
.listing-card h3 { padding: 12px 16px 16px; font-size: 1rem; }

.home-section { max-width: 1200px; margin: 0 auto; padding: 40px 20px 20px; }
.home-section-title { font-size: 1.3rem; margin-bottom: 20px; color: #d4231f; }
.below-grid { margin-top: 20px; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.below-grid .category-card img { width: 100%; height: 260px; object-fit: cover; }
.below-grid .category-card h2 { font-size: 1.4rem; }
@media (max-width: 640px) {
  .below-grid { grid-template-columns: 1fr; }
  .below-grid .category-card img { height: 200px; }
}

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; padding: 20px 20px 60px; max-width: 1200px; margin: 0 auto; }
.testimonials blockquote { background: #fafafa; padding: 24px; border-left: 3px solid #d4231f; border-radius: 4px; }
.testimonials cite { display: block; margin-top: 12px; font-weight: 600; font-style: normal; }

.category-page, .brand-page, .static-page { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.category-page h1, .brand-page h1, .static-page h1 { margin: 30px 0 16px; color: #d4231f; }
.legal-page h2 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-page p { margin-bottom: 10px; }
.legal-page ul { margin-bottom: 10px; }
.static-page ul, .category-description ul { margin: 0 0 16px; padding-left: 20px; }
.category-description p { margin-bottom: 14px; }
.category-description h2 { font-size: 1.3rem; margin: 24px 0 10px; color: #1a1a1a; }
.category-description h3 { font-size: 1.1rem; margin: 18px 0 8px; }
.category-description li { margin-bottom: 8px; }
.category-description a { color: #d4231f; }
.category-description table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.92rem; }
.category-description th, .category-description td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #eee; }
.category-description th { background: #f8f8f8; font-weight: 600; }
.brand-logo { max-width: 200px; margin-bottom: 16px; }
.breadcrumb { margin: 20px 0 0; font-size: 0.85rem; }
.breadcrumb a { color: #d4231f; }

.site-footer { background: #1a1a1a; color: #ccc; padding: 40px 20px; margin-top: 60px; font-size: 0.85rem; }
.site-footer a { color: #fff; }
.disclaimer { margin-top: 20px; opacity: 0.7; }
.disclaimer h3 { font-size: 0.8rem; margin-bottom: 8px; }

@media (max-width: 640px) {
  .hero { height: 380px; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay { padding: 24px 30px; }
}
