/* ============================================================
   CleanA Sanitary Ware — replica stylesheet
   Design tokens extracted from the original site
   ============================================================ */

:root {
  --accent: #B87333;
  --accent-hover: #A0622A;
  --primary: #0A0A0A;
  --brand-primary: #2D3748;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --surface-alt: #F7F8FA;
  --border: #E2E8F0;
  --footer-dark: #1E293B;
  --text-light: #F1F5F9;
  --navy: #4A6274;
  --radius: 6px;
  --header-h: 68px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============ Layout helpers ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section + section {
  border: 0;
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
}

.brand span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand-primary);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s;
  padding: 2px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--accent);
}

.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 12px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ============ Page banner (About / Products / Contact) ============ */
.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
}

.page-banner .banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-banner h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.page-banner p {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .page-banner h1 {
    font-size: 48px;
  }
}

/* ============ Home hero ============ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 24px;
  width: 100%;
}

.hero-content .inner {
  max-width: 672px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
}

.hero .cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 60px;
  }
}

/* ============ Buttons ============ */
.btn-accent {
  display: inline-block;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.link-accent {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}

.link-accent:hover {
  color: var(--accent-hover);
}

/* ============ Section basics ============ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.section-head p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 36px;
  }
}

/* ============ Stats ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat .label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .stat .number {
    font-size: 48px;
  }
}

/* ============ Home product cards ============ */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prod-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.prod-card .thumb {
  aspect-ratio: 6 / 5;
  overflow: hidden;
}

.prod-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.prod-card:hover .thumb img {
  transform: scale(1.05);
}

.prod-card .body {
  padding: 24px;
}

.prod-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.prod-card .desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
}

.prod-card .view {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}

.prod-card:hover .view {
  color: var(--accent-hover);
}

/* ============ Why choose ============ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  margin: 0 auto;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(184, 115, 51, 0.3);
  color: var(--accent);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.feature-card:hover .feature-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.feature-card h3 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
}

/* ============ Factory ============ */
.factory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .factory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.factory-grid .cell {
  overflow: hidden;
  border-radius: var(--radius);
}

.factory-grid img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  transition: transform 0.5s;
}

.factory-grid .cell:hover img {
  transform: scale(1.05);
}

.factory-cta {
  margin-top: 32px;
  text-align: center;
}

/* ============ About page ============ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-story h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.about-story .para {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.625;
  color: var(--text-secondary);
}

.about-story .mini-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.mini-stat .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.mini-stat .cap {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cap-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  transition: box-shadow 0.3s;
}

.cap-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.cap-card svg {
  color: var(--accent);
}

.cap-card h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.cap-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
}

.production-imgs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .production-imgs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.production-imgs img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cert-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cert-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.cert-item svg {
  color: var(--navy);
  transition: color 0.3s;
}

.cert-item:hover svg {
  color: var(--accent);
}

.cert-item span {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.market-tags span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ============ Products page ============ */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-primary);
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 6px -1px rgba(184, 115, 51, 0.3);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.catalog-card {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.catalog-card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  padding: 10px;
}

.catalog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.catalog-card:hover .thumb img {
  transform: scale(1.05);
}

.catalog-card .body {
  padding: 12px;
}

.catalog-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.catalog-card p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============ CTA band ============ */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.cta-band p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.cta-band .btn-accent {
  margin-top: 24px;
}

/* ============ Contact page ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  flex-shrink: 0;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.1);
  color: var(--accent);
}

.contact-item .cap {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-item .val {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ============ Footer ============ */
.site-footer {
  background: var(--footer-dark);
  color: var(--text-light);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
}

.footer-brand span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.625;
  color: rgba(241, 245, 249, 0.7);
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(241, 245, 249, 0.7);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(241, 245, 249, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.social-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-row span {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(241, 245, 249, 0.2);
  color: rgba(241, 245, 249, 0.6);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.social-row span:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(241, 245, 249, 0.5);
}

/* ============ Views & routing ============ */
.view {
  display: none;
}

.view.active {
  display: block;
}

main {
  padding-top: var(--header-h);
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ Product detail modal ============ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-dialog {
  position: relative;
  max-height: 90vh;
  width: 100%;
  max-width: 768px;
  overflow-y: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: #f1f5f9;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 32px;
}

.modal-img img {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
}

.modal-info {
  padding: 24px;
}

.modal-info h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-info > p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-secondary);
}

.modal-info h3 {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.spec-table {
  margin-top: 8px;
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table td {
  padding: 8px 12px 8px 0;
  vertical-align: top;
}

.spec-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.spec-table td:last-child {
  color: var(--text-secondary);
}

.modal-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-tag {
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-secondary);
}

body.no-scroll {
  overflow: hidden;
}
