:root {
  --ink: #172124;
  --muted: #5d6b70;
  --line: #d5dfe1;
  --surface: #ffffff;
  --surface-soft: #f3f7f7;
  --surface-blue: #eef4f7;
  --teal: #0a7883;
  --teal-dark: #07535b;
  --blue: #34569a;
  --amber: #cf8a17;
  --charcoal: #1d292c;
  --shadow: 0 18px 45px rgba(20, 42, 46, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 60;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }
.container { width: calc(100% - 40px); max-width: var(--container); margin-inline: auto; }

.utility-bar { color: #fff; background: var(--charcoal); font-size: 0.78rem; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.utility-inner div { display: flex; gap: 18px; }
.utility-inner a { color: rgba(255,255,255,.82); }
.utility-inner a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(213,223,225,.9);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 6px; font-size: .9rem; font-weight: 900; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: .72rem; }
.site-nav { display: flex; align-items: center; gap: 23px; font-size: .9rem; font-weight: 750; }
.site-nav a { padding: 10px 0; }
.site-nav a:hover { color: var(--teal); }
.site-nav .nav-cta { padding: 10px 15px; color: #fff; background: var(--teal); border-radius: var(--radius); }
.site-nav .nav-cta:hover { color: #fff; background: var(--teal-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 9px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.product-hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; background: #f7f9f9; }
.product-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-hero-content { position: relative; z-index: 1; padding: 105px 0 95px; }
.product-hero-content > * { max-width: 750px; }
.eyebrow { margin: 0 0 12px; color: var(--teal); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .eyebrow { overflow-wrap: break-word; }
h1 { margin-bottom: 18px; font-size: clamp(1.4rem, 2.75vw, 2.55rem); line-height: 1.08; }
h2 { margin-bottom: 14px; font-size: clamp(1.1rem, 1.8vw, 1.6rem); line-height: 1.18; }
h3 { margin-bottom: 10px; font-size: 1.26rem; line-height: 1.25; }
.hero-lede { max-width: 650px; color: #405055; font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 850; cursor: pointer; transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--teal); }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { color: #fff; background: var(--blue); }
.button.secondary:hover { background: #29457e; }
.button.outline { color: var(--ink); background: rgba(255,255,255,.72); border-color: #8fa1a5; }
.button.outline:hover { background: #fff; border-color: var(--teal); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-tags span { padding: 8px 12px; color: #324246; background: rgba(255,255,255,.8); border: 1px solid #cbd6d8; border-radius: 999px; font-size: .85rem; font-weight: 700; }

.fact-band { color: #fff; background: var(--blue); }
.fact-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.fact-grid div { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.fact-grid div:last-child { border-right: 0; }
.fact-grid strong, .fact-grid span { display: block; }
.fact-grid strong { font-size: 1.52rem; }
.fact-grid span { color: rgba(255,255,255,.78); font-size: .83rem; }

.section { padding: 88px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p, .finder-layout p, .material-copy > p, .about-copy p, .contact-copy > p { color: var(--muted); }
.wide-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.wide-heading > div { max-width: 760px; }
.text-link { color: var(--teal); font-weight: 850; white-space: nowrap; }

.finder-section { background: var(--surface-soft); }
.finder-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1fr); align-items: center; gap: 55px; }
.quick-search { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.quick-search label { display: block; margin-bottom: 8px; font-weight: 850; }
.quick-search > div { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.quick-search input { min-width: 0; height: 50px; padding: 12px 14px; border: 1px solid #bdcbce; border-radius: var(--radius); outline: none; }
.quick-search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,120,131,.14); }
.quick-search small { display: block; margin-top: 10px; color: var(--muted); }

.featured-products { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.product-tile { min-width: 0; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.product-tile:hover { transform: translateY(-3px); border-color: #a8c4c8; box-shadow: var(--shadow); }
.product-tile img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 15px; background: #fff; }
.product-tile span, .product-tile strong, .product-tile small { display: block; }
.product-tile .product-label { color: var(--teal); font-size: .74rem; font-weight: 850; text-transform: uppercase; }
.product-tile strong { margin-top: 3px; }
.product-tile small { margin-top: 5px; color: var(--muted); }

.categories-section { background: var(--surface-soft); }
.category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.category-card { min-height: 330px; display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.category-card-featured { color: #fff; background: var(--charcoal); border-color: var(--charcoal); }
.category-card > span { color: var(--teal); font-size: .8rem; font-weight: 900; }
.category-card-featured > span { color: #5fd0d7; }
.category-card h3 { margin-top: 26px; font-size: 1.55rem; }
.category-card ul { margin: 4px 0 26px; padding-left: 20px; color: var(--muted); }
.category-card-featured ul { color: rgba(255,255,255,.72); }
.category-card a { margin-top: auto; color: var(--teal); font-weight: 850; }
.category-card-featured a { color: #67d5dc; }

.material-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(350px,.85fr); align-items: center; gap: 60px; }
.material-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.material-list div { padding: 18px 0 18px 18px; border-left: 3px solid var(--teal); }
.material-list strong, .material-list span { display: block; }
.material-list span { margin-top: 4px; color: var(--muted); font-size: .9rem; }
.material-visual { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius); background: var(--blue); }
.material-visual img { width: 100%; height: 520px; object-fit: cover; }
.visual-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; background: rgba(23,33,36,.9); }
.visual-caption strong, .visual-caption span { display: block; }
.visual-caption span { color: rgba(255,255,255,.7); }

.custom-section { color: #fff; background: var(--charcoal); }
.custom-section .eyebrow { color: #5fd0d7; }
.custom-layout { display: grid; grid-template-columns: minmax(0,.65fr) minmax(0,1.2fr); gap: 60px; }
.process-steps { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 32px; }
.process-steps span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; margin-bottom: 15px; color: var(--charcoal); background: #65d4db; border-radius: 50%; font-size: .78rem; font-weight: 900; }
.process-steps strong { display: block; }
.process-steps p { margin: 8px 0 0; color: rgba(255,255,255,.7); font-size: .92rem; }

.about-section { background: var(--surface-blue); }
.about-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1fr); gap: 65px; }
.about-copy p { font-size: 1.02rem; }

.contact-section { background: #fff; }
.contact-layout { display: grid; grid-template-columns: minmax(0,.75fr) minmax(420px,1fr); align-items: start; gap: 56px; }
.contact-details { display: grid; gap: 12px; margin: 28px 0 0; }
.contact-details div { display: grid; grid-template-columns: 100px 1fr; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-weight: 750; }
.contact-details dd { margin: 0; overflow-wrap: anywhere; }
.contact-details a { color: var(--teal); font-weight: 800; }
.inquiry-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; padding: 25px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.inquiry-form label { display: grid; gap: 7px; font-size: .88rem; font-weight: 800; }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select { width: 100%; min-height: 46px; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #bdcbce; border-radius: var(--radius); outline: none; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,120,131,.14); }
.form-intro { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 500; }
.form-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.full { grid-column: 1 / -1; }
.form-status { min-height: 1.4em; margin: 0; color: var(--teal-dark); font-weight: 750; }
.form-status.is-error { color: #a6401a; }
.form-status.is-success { color: var(--teal-dark); }

.site-footer { padding: 46px 0 26px; color: #fff; background: var(--charcoal); }
.footer-main { display: grid; grid-template-columns: 1.35fr repeat(3,1fr); gap: 38px; }
.footer-main > div { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-main strong { margin-bottom: 5px; }
.footer-main p, .footer-main a, .footer-bottom { color: rgba(255,255,255,.68); }
.footer-main p { margin: 0; }
.footer-main a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); font-size: .82rem; }

/* Internal page layouts */
.page-hero { padding: 78px 0 64px; background: var(--surface-soft); border-bottom: 1px solid var(--line); }
.page-hero .container { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 45px; }
.page-hero h1 { max-width: 850px; font-size: clamp(1.35rem,2.5vw,2.25rem); }
.page-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.page-badge { min-width: 190px; padding: 22px; color: #fff; background: var(--blue); border-radius: var(--radius); }
.page-badge strong, .page-badge span { display: block; }
.page-badge strong { font-size: 2rem; }
.page-badge span { color: rgba(255,255,255,.75); }
.breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: .82rem; }
.breadcrumb a { color: var(--teal); }

.product-center-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.product-center-card { min-height: 290px; display: flex; flex-direction: column; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.product-center-card.featured { color: #fff; background: var(--blue); border-color: var(--blue); }
.product-center-card span { color: var(--teal); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.product-center-card.featured span { color: #8fe3e8; }
.product-center-card p { color: var(--muted); }
.product-center-card.featured p { color: rgba(255,255,255,.75); }
.product-center-card a { margin-top: auto; color: var(--teal); font-weight: 850; }
.product-center-card.featured a { color: #fff; }

.catalog-intro { padding-bottom: 38px; }
.catalog-review-notice { padding: 16px 0; color: #5b4b2b; background: #fff7e6; border-bottom: 1px solid #ecd7a8; }
.catalog-review-notice .container { display: flex; align-items: baseline; gap: 12px; }
.catalog-review-notice strong { color: #72520d; white-space: nowrap; }
.catalog-review-notice span { font-size: .92rem; }
.catalog-toolbar { position: sticky; top: 76px; z-index: 20; padding: 16px 0; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.catalog-controls { display: grid; grid-template-columns: minmax(240px,1fr) repeat(2,minmax(170px,.35fr)); gap: 12px; }
.catalog-controls label { display: grid; gap: 5px; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.catalog-controls input, .catalog-controls select { width: 100%; height: 46px; padding: 10px 12px; color: var(--ink); background: #fff; border: 1px solid #bdcbce; border-radius: var(--radius); outline: none; }
.catalog-controls input:focus, .catalog-controls select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,120,131,.12); }
.catalog-status { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 16px; color: var(--muted); font-size: .9rem; }
.catalog-status strong { color: var(--ink); }
.catalog-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; padding-bottom: 80px; }
.catalog-card { min-width: 0; display: flex; flex-direction: column; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.catalog-card[hidden] { display: none; }
.catalog-image { width: 100%; aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 14px; overflow: hidden; background: #fff; }
.catalog-image img { width: 100%; height: 100%; object-fit: contain; }
.catalog-placeholder { width: 72%; aspect-ratio: 1; border: 10px solid #d7dfe1; border-radius: 40% 35% 45% 30%; }
.catalog-card .catalog-transmission { color: var(--teal); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.catalog-card h2 { margin: 6px 0 6px; font-size: 1.05rem; line-height: 1.25; }
.catalog-card p { min-height: 2.7em; margin-bottom: 12px; color: var(--muted); font-size: .84rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.material-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.material-chips span { padding: 4px 7px; color: #405055; background: var(--surface-soft); border-radius: 999px; font-size: .67rem; font-weight: 800; }
.catalog-card .card-link { margin-top: 14px; color: var(--teal); font-size: .84rem; font-weight: 850; }
.empty-results { display: none; padding: 40px; text-align: center; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.empty-results.is-visible { display: block; }

.product-detail { padding: 58px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); align-items: start; gap: 58px; }
.product-detail-image { position: sticky; top: 110px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.product-detail-image img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-detail-copy h1 { margin-bottom: 16px; font-size: clamp(1.25rem,2vw,1.85rem); }
.product-summary { color: var(--muted); font-size: 1.05rem; }
.spec-list { margin: 30px 0; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-weight: 750; }
.spec-list dd { margin: 0; white-space: pre-line; overflow-wrap: anywhere; }
.product-cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.fitment-note { padding: 16px 18px; color: #5b4b2b; background: #fff7e6; border-left: 3px solid var(--amber); }
.legal-page { padding: 68px 0 88px; }
.legal-layout { display: grid; grid-template-columns: minmax(0,1fr) 250px; align-items: start; gap: 64px; }
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 38px; font-size: 1.18rem; }
.legal-content h3 { margin-top: 26px; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--teal); font-weight: 750; }
.legal-content ul { padding-left: 22px; }
.legal-nav { position: sticky; top: 108px; display: grid; gap: 8px; padding: 20px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.legal-nav strong { margin-bottom: 4px; }
.legal-nav a { color: var(--teal); font-size: .9rem; font-weight: 750; }
.error-page { min-height: 62vh; display: grid; align-items: center; padding: 76px 0; background: var(--surface-soft); }
.error-copy { max-width: 720px; }
.error-code { display: block; margin-bottom: 10px; color: var(--teal); font-size: 1rem; font-weight: 900; letter-spacing: .08em; }
.detail-sections { display: grid; gap: 28px; margin-top: 44px; }
.detail-sections section { padding-top: 26px; border-top: 1px solid var(--line); }
.detail-sections h2 { font-size: 1.18rem; }
.detail-sections p, .detail-sections li { color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.related-card { padding: 14px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.related-card img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.related-card strong, .related-card span { display: block; }
.related-card span { margin-top: 8px; color: var(--teal); font-size: .72rem; font-weight: 800; }
.related-card strong { margin-top: 3px; }

.blog-preview-section { background: var(--surface-soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.blog-card { display: flex; flex-direction: column; min-height: 260px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.blog-card:hover { transform: translateY(-2px); border-color: #a8c4c8; box-shadow: var(--shadow); }
.blog-card time, .blog-card span { color: var(--teal); font-size: .74rem; font-weight: 900; text-transform: uppercase; }
.blog-card h2, .blog-card h3 { margin: 12px 0 10px; font-size: 1.18rem; }
.blog-card p { color: var(--muted); }
.blog-card .text-link { margin-top: auto; white-space: normal; }
.dynamic-posts { display: contents; }
.article-page { padding: 62px 0 88px; }
.article-layout { display: grid; grid-template-columns: minmax(0,820px) 260px; align-items: start; gap: 62px; }
.article-content { min-width: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 22px; color: var(--muted); font-size: .86rem; }
.article-content h2 { margin-top: 36px; }
.article-content p, .article-content li { color: var(--muted); }
.article-content ul { padding-left: 22px; }
.article-actions { position: sticky; top: 108px; display: grid; gap: 10px; padding: 20px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.article-actions strong { margin-bottom: 2px; }
.article-actions a:not(.button) { color: var(--teal); font-weight: 800; }

.admin-shell { min-height: 100vh; padding: 34px 0 70px; background: var(--surface-soft); }
.admin-top { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.admin-top p { max-width: 720px; color: var(--muted); }
.admin-login { display: grid; grid-template-columns: minmax(240px,1fr) auto; gap: 10px; max-width: 620px; margin-bottom: 24px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-login label { display: grid; gap: 6px; color: var(--muted); font-size: .84rem; font-weight: 800; }
.admin-login input, .admin-panel input, .admin-panel textarea, .admin-panel select { width: 100%; min-height: 44px; padding: 10px 12px; background: #fff; border: 1px solid #bdcbce; border-radius: var(--radius); outline: none; }
.admin-login input:focus, .admin-panel input:focus, .admin-panel textarea:focus, .admin-panel select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,120,131,.14); }
.admin-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.72fr); gap: 18px; align-items: start; }
.admin-panel { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-panel h2 { margin-bottom: 12px; }
.admin-panel form { display: grid; gap: 12px; }
.admin-panel label { display: grid; gap: 6px; color: var(--muted); font-size: .84rem; font-weight: 800; }
.admin-metrics { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-bottom: 16px; }
.admin-metric { padding: 14px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.admin-metric strong, .admin-metric span { display: block; }
.admin-metric strong { font-size: 1.45rem; }
.admin-metric span { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th, .admin-table td { padding: 10px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.admin-list { display: grid; gap: 10px; }
.admin-list article { padding: 12px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.admin-list h3 { margin: 0 0 4px; font-size: 1rem; }
.admin-list p { margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.admin-note { color: var(--muted); font-size: .88rem; }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 10px; }
  .site-nav .nav-cta { margin-top: 7px; text-align: center; }
  .finder-layout, .material-layout, .custom-layout, .about-layout, .contact-layout, .product-detail-grid, .legal-layout, .article-layout, .admin-grid { grid-template-columns: 1fr; }
  .featured-products, .catalog-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-grid, .product-center-grid, .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .material-visual { min-height: 420px; }
  .material-visual img { height: 420px; }
  .product-detail-image { position: static; max-width: 620px; }
  .legal-nav, .article-actions { position: static; }
}

@media (max-width: 760px) {
  .utility-bar { display: none; }
  .container { width: calc(100% - 28px); }
  .header-inner { min-height: 68px; }
  .brand small { display: none; }
  .product-hero { min-height: 760px; align-items: start; background: #f7f9f9; }
  .product-hero-image { object-position: 68% center; opacity: .43; }
  .product-hero-content { padding: 76px 0 48px; }
  .product-hero-content > * { max-width: 100%; }
  h1 { font-size: 1.22rem; line-height: 1.12; }
  h2 { font-size: 1rem; line-height: 1.2; }
  .hero-lede { color: #27383c; }
  .hero-actions, .button { width: 100%; }
  .fact-grid { grid-template-columns: repeat(2,1fr); }
  .fact-grid div:nth-child(2) { border-right: 0; }
  .fact-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .section { padding: 62px 0; }
  .wide-heading { display: block; }
  .wide-heading .text-link { display: inline-block; margin-top: 12px; }
  .quick-search > div, .inquiry-form, .catalog-controls, .form-actions { grid-template-columns: 1fr; }
  .featured-products, .catalog-grid, .category-grid, .product-center-grid, .related-grid, .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .material-list, .process-steps { grid-template-columns: 1fr; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-badge { max-width: 240px; }
  .catalog-toolbar { top: 68px; }
  .catalog-status { flex-direction: column; gap: 5px; }
  .catalog-review-notice .container { align-items: flex-start; flex-direction: column; gap: 4px; }
  .product-detail-grid { gap: 30px; }
}

@media (max-width: 500px) {
  .product-hero { min-height: 790px; }
  .product-hero-image { object-position: 72% center; }
  h1 { font-size: 1.05rem; }
  h2 { font-size: .92rem; }
  .hero-tags span { width: 100%; }
  .featured-products, .catalog-grid, .category-grid, .product-center-grid, .related-grid, .blog-grid, .admin-login, .admin-metrics { grid-template-columns: 1fr; }
  .category-card { min-height: auto; }
  .material-visual, .material-visual img { height: 350px; min-height: 350px; }
  .inquiry-form { padding: 18px; }
  .contact-details div, .spec-list div { grid-template-columns: 1fr; gap: 3px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 56px 0 45px; }
  .product-detail-image { padding: 12px; }
}
