/* ================================
   BRAND LANDING PAGE (Model Lists)
   ================================ */

.hh-landing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hh-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.hh-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hh-subtitle {
  color: #555;
  font-size: 1.1rem;
}

/* Brand Section */
.hh-brand-section {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #f7f7f7;
  border-radius: 12px;
}

.hh-brand-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3rem;
}

/* Washer Type Blocks */
.hh-type-block {
  margin-bottom: 2rem;
}

.hh-type-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Series Blocks */
.hh-series-block {
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  border: 1px solid #e5e5e5;
}

.hh-series-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #222;
}

/* Model List */
.hh-model-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hh-model-list li {
  margin: 0.3rem 0;
}

.hh-model-list a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.hh-model-list a:hover {
  text-decoration: underline;
}

/* ============================================
   DARK MODE — BRAND LANDING PAGE
============================================ */

/* Wrapper */
html.dark .hh-landing {
  color: #e5e7eb; /* slate-200 */
}

/* Header */
html.dark .hh-header h1 {
  color: #f3f4f6; /* slate-100 */
}

html.dark .hh-subtitle {
  color: #cbd5e1; /* slate-300 */
}

/* Brand Section */
html.dark .hh-brand-section {
  background: #1f2937; /* slate-800 */
  border-radius: 12px;
  border: 1px solid #374151; /* slate-700 */
}

html.dark .hh-brand-title {
  color: #f3f4f6;
  border-bottom-color: #4b5563; /* slate-600 */
}

/* Washer Type Blocks */
html.dark .hh-type-block h3 {
  color: #e5e7eb;
}

/* Series Blocks */
html.dark .hh-series-block {
  background: #111827; /* slate-900 */
  border: 1px solid #374151; /* slate-700 */
  border-radius: 10px;
}

html.dark .hh-series-title {
  color: #f3f4f6;
}

/* Model List */
html.dark .hh-model-list li {
  color: #d1d5db; /* slate-300 */
}

html.dark .hh-model-list a {
  color: #93c5fd; /* blue-300 */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

html.dark .hh-model-list a:hover {
  color: #60a5fa; /* blue-400 */
  text-decoration: underline;
}