/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { margin-top: var(--space-2xl); }
.pagination__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}
.pagination__inner a,
.pagination__inner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text-primary);
}
.pagination__inner a:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}
.pagination__inner .current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pagination__inner .prev,
.pagination__inner .next {
  font-size: 0.8rem;
  padding: 0 1rem;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-form-wrap {
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}
.search-form {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.search-form input[type="search"] {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
}
.search-form button {
  padding: 0.875rem 1.25rem;
  background: var(--teal);
  border: none;
  cursor: pointer;
  color: var(--navy);
  transition: background var(--transition);
}
.search-form button:hover { background: var(--teal-dark); color: var(--white); }

/* ============================================================
   HARDWARE SINGLE
   ============================================================ */
.product-hero {
  background: var(--navy);
  padding: var(--space-3xl) 0;
}
.product-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}
.product-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.product-meta-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}
.product-meta-item__value {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   STATUS BADGES
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.status-badge--live    { background: rgba(16,185,129,0.1); color: #065f46; }
.status-badge--testing { background: rgba(245,158,11,0.1); color: #92400e; }
.status-badge--planned { background: var(--gray-100); color: var(--gray-600); }
.status-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.status-badge--live .status-badge__dot    { background: var(--green); }
.status-badge--testing .status-badge__dot { background: var(--amber); }
.status-badge--planned .status-badge__dot { background: var(--gray-400); }

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area { margin-top: var(--space-3xl); }
.comments-title {
  font-size: 1.35rem;
  margin-bottom: var(--space-xl);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal-light);
}
.comment-list { list-style: none; padding: 0; }
.comment {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}
.comment-meta { margin-bottom: 0.5rem; }
.comment-author { font-weight: 700; color: var(--navy); }
.comment-content p { font-size: 0.95rem; color: var(--text-secondary); }

/* ============================================================
   WP CLASSES (required by WordPress)
   ============================================================ */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; text-align: center; }
.alignwide  { width: calc(100% + 4rem); margin-left: -2rem; margin-right: -2rem; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 0.4rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ============================================================
   ENTRY CONTENT - WP BLOCKS
   ============================================================ */
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.entry-content .wp-block-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.entry-content .wp-block-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.entry-content .wp-block-table tr:nth-child(even) td { background: var(--gray-50); }
.entry-content .wp-block-pullquote {
  border-top: 4px solid var(--teal);
  border-bottom: 4px solid var(--teal);
  padding: 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0;
}
