/*! CRITICAL RESETS - must come first */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}
/* =============================================================
   Omid Home — Full Design System
   Matches the original Omid_Home.html design exactly
   omidh.integra-ai.be
============================================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --accent:    #F25C05;
  --ink:       #0a0a0a;
  --ink-2:     #1a1a1a;
  --muted:     #6b6b66;
  --line:      #e7e4dd;
  --bg:        #ffffff;
  --bg-soft:   #f6f3ec;
  --bg-warm:   #efeae0;
  --font-display: 'DM Serif Display', ui-serif, Georgia, serif;
  --font-body:    'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --max: 1320px;
  --pad-y: 96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
body.omid-page {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
}
body.omid-page a { color: inherit; text-decoration: none; }
body.omid-page button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

/* ── Container ── */
.omid-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────────────────
   PROMO BAR
───────────────────────────────────────── */
.omid-promo {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 200;
}
.omid-promo-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   TOPBAR
───────────────────────────────────────── */
.omid-topbar {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.omid-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 24px;
}
.omid-topbar-tickers {
  display: flex;
  gap: 36px;
  overflow: hidden;
}
.omid-topbar-tickers span {
  white-space: nowrap;
  opacity: 0.85;
}
.omid-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.omid-topbar-sep { opacity: 0.4; }

/* ─────────────────────────────────────────
   SITE HEADER
───────────────────────────────────────── */
.omid-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
}
body.admin-bar .omid-site-header { top: 32px; }

.omid-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 84px;
  gap: 48px;
}

/* Logo */
.omid-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}
.omid-logo-omid { color: var(--ink); }
.omid-logo-home { color: var(--accent); font-style: italic; }

/* Nav */
.omid-nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  margin: 0; padding: 0;
}
.omid-nav-item { position: relative; }
.omid-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 30px 16px;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.omid-nav-link:hover { color: var(--accent); }
.omid-nav-link:hover::after,
.omid-nav-item:hover .omid-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--accent);
}
.omid-chevron { flex-shrink: 0; transition: transform .15s; }
.omid-nav-item:hover .omid-chevron { transform: rotate(180deg); }

/* Megamenu */
.omid-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 880px;
  max-width: 95vw;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 0;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  grid-template-rows: 1fr auto;
  gap: 40px;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .15s ease, transform .15s ease;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12);
}
.omid-nav-item:hover .omid-megamenu,
.omid-nav-item:focus-within .omid-megamenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.omid-mm-col h6 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.omid-mm-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.omid-mm-col a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.omid-mm-col a:hover { color: var(--accent); }
.omid-mm-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.omid-mm-new {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.omid-mm-feature {
  background: var(--bg-warm);
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.omid-mm-feature-accent { background: #e8d5c0; }
.omid-mm-feature-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #d4c9b5 100%);
}
.omid-mm-feature-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  z-index: 2;
}
.omid-mm-feature-label {
  position: relative;
  z-index: 2;
  padding: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.omid-mm-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.omid-mm-foot span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.omid-mm-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.omid-mm-foot a:hover { text-decoration: underline; }

/* Header actions */
.omid-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.omid-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background .15s;
  background: none;
  border: none;
  cursor: pointer;
}
.omid-icon-btn:hover { background: rgba(0,0,0,0.05); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.omid-footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 32px;
  font-family: var(--font-body);
  margin-top: 0;
}
.omid-footer .omid-logo { display: inline-flex; margin-bottom: 16px; }
.omid-footer .omid-logo-omid { color: #fff; }
.omid-footer .omid-logo-home { color: var(--accent); }
.omid-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.omid-footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
  max-width: 260px;
  line-height: 1.65;
}
.omid-footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
  font-weight: 500;
}
.omid-footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.omid-footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .15s;
}
.omid-footer ul a:hover { color: #fff; }

/* Newsletter form */
.omid-newsletter {
  display: flex;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.15);
}
.omid-newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff;
  outline: none;
  min-width: 0;
}
.omid-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.omid-newsletter button {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.omid-newsletter button:hover { background: rgba(255,255,255,0.18); }

.omid-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────
   HIDE THEME HEADER/FOOTER
───────────────────────────────────────── */
.site-header.wp-block-template-part,
footer.site-footer.wp-block-template-part {
  display: none !important;
}
.wp-site-blocks { padding-top: 0 !important; }
.wp-block-post-content { padding: 0 !important; }
.wp-block-post-content.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
}
.hostinger-ai-page-title, .wp-block-post-title { display: none !important; }

/* ─────────────────────────────────────────
   PAGE CONTENT — reusable components
───────────────────────────────────────── */

/* Buttons */
.oh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.oh-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.oh-btn-primary:hover { background: #d94e00; border-color: #d94e00; }
.oh-btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.oh-btn-outline:hover { background: var(--ink); color: #fff; }
.oh-btn-white { background: #fff; color: var(--accent); border-color: #fff; }
.oh-btn-white:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.oh-btn-outline-white { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
.oh-btn-outline-white:hover { border-color: #fff; }

/* Eyebrow */
.oh-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}
.oh-eyebrow .dot { color: var(--accent); margin-right: 6px; }

/* Wrap */
.oh-wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .oh-wrap { padding: 0 20px; } }

/* Section */
.oh-section { padding: var(--pad-y) 0; }
.oh-section + .oh-section { border-top: 1px solid var(--line); }
.oh-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.oh-section-head h2 { font-family: var(--font-display); font-size: clamp(36px,4vw,56px); letter-spacing: -0.025em; line-height: 1.02; font-weight: 400; margin: 8px 0 0; }
.oh-section-head .meta { color: var(--muted); max-width: 380px; font-size: 14px; }

/* Hero */
.oh-hero { padding: 32px 0 96px; border-bottom: 1px solid var(--line); }
.oh-hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: end; min-height: 620px; }
.oh-hero-text { padding-bottom: 32px; display: flex; flex-direction: column; gap: 36px; }
.oh-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0;
}
.oh-hero-text h1 em { font-style: italic; color: var(--accent); }
.oh-hero-text .lede { font-size: 16px; color: var(--ink-2); max-width: 440px; line-height: 1.65; margin: 0; }
.oh-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.oh-hero-media {
  background: var(--bg-warm);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.oh-hero-media .oh-media-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.oh-hero-stats { display: flex; gap: 0; border-top: 1px solid var(--line); padding-top: 32px; margin-top: 0; }
.oh-hero-stat { flex: 1; padding-right: 24px; }
.oh-hero-stat:not(:last-child) { border-right: 1px solid var(--line); margin-right: 24px; }
.oh-hero-stat .num { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.03em; line-height: 1; }
.oh-hero-stat .lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 6px; }

/* Category tiles */
.oh-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.oh-cat-tile { background: var(--bg-warm); overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .2s; }
.oh-cat-tile:hover { transform: translateY(-3px); }
.oh-cat-media { aspect-ratio: 3/4; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.oh-cat-media span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.oh-cat-info { padding: 20px; border-top: 1px solid var(--line); }
.oh-cat-info h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; font-weight: 400; margin: 0 0 4px; }
.oh-cat-info p { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0; }

/* Values / Cards */
.oh-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.oh-value { padding: 32px; border: 1px solid var(--line); }
.oh-value .num { font-family: var(--font-display); font-size: 48px; color: var(--accent); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.oh-value h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin: 0 0 10px; }
.oh-value p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* Reviews section */
.oh-reviews { background: var(--ink); color: #fff; padding: var(--pad-y) 0; }
.oh-reviews .oh-section-head h2 { color: #fff; }
.oh-reviews .meta { color: rgba(255,255,255,0.5); }
.oh-review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.oh-review { border: 1px solid rgba(255,255,255,0.1); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.oh-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.oh-review blockquote { font-family: var(--font-display); font-size: 20px; line-height: 1.3; letter-spacing: -0.01em; flex-grow: 1; margin: 0; }
.oh-review-by .name { font-weight: 600; font-size: 14px; }
.oh-review-by .who { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* CTA Band */
.oh-band { background: var(--accent); color: #fff; padding: 80px 0; }
.oh-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.oh-band h2 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); letter-spacing: -0.03em; font-weight: 400; max-width: 560px; margin: 0; }
.oh-band-ctas { display: flex; gap: 12px; flex-shrink: 0; }

/* Category page */
.oh-catpage-header { background: var(--bg-soft); padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
.oh-crumb { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 24px; }
.oh-crumb a { color: var(--muted); text-decoration: none; }
.oh-crumb a:hover { color: var(--accent); }
.oh-crumb .sep { margin: 0 10px; }
.oh-crumb .now { color: var(--accent); }
.oh-catpage-header h1 { font-family: var(--font-display); font-size: clamp(56px,8vw,112px); letter-spacing: -0.04em; line-height: 0.92; font-weight: 400; margin-bottom: 32px; }
.oh-catpage-intro { display: flex; gap: 64px; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; }
.oh-catpage-intro p { max-width: 480px; font-size: 16px; color: var(--ink-2); margin: 0; }
.oh-subcats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.oh-subcat-pill { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; padding: 9px 16px; border: 1px solid var(--line); background: var(--bg); cursor: pointer; transition: all .15s; }
.oh-subcat-pill:hover, .oh-subcat-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.oh-catpage-body { display: grid; grid-template-columns: 240px 1fr; gap: 56px; padding: 64px 0; }
.oh-filters { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 120px; align-self: flex-start; }
.oh-filter-group h6 { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 12px; }
.oh-filter-item { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 4px 0; cursor: pointer; }
.oh-filter-item input[type=checkbox] { accent-color: var(--accent); width: 14px; height: 14px; }
.oh-products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.oh-count { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.oh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px 24px; }
.oh-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.oh-card-media { aspect-ratio: 3/4; background: var(--bg-warm); overflow: hidden; position: relative; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; transition: opacity .2s; }
.oh-card:hover .oh-card-media { opacity: 0.9; }
.oh-card-media span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.oh-card-badge { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 8px; background: var(--accent); color: #fff; }
.oh-card-badge.sale { background: var(--ink); }
.oh-card h3 { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; font-weight: 400; margin-bottom: 4px; }
.oh-price { font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.oh-price .was { text-decoration: line-through; color: var(--muted); margin-right: 8px; font-weight: 400; }

/* Showroom */
.oh-showroom-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.oh-showroom-map { background: var(--bg-warm); min-height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.oh-showroom-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.oh-info-block { margin-bottom: 28px; }
.oh-info-block .lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 8px; }
.oh-hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.oh-hours-row:last-child { border-bottom: 0; }
.oh-hours-row .closed { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }

/* About */
.oh-about-hero { padding: 96px 0 64px; }
.oh-about-hero h1 { font-family: var(--font-display); font-size: clamp(64px,9vw,140px); margin: 0; letter-spacing: -0.035em; line-height: 0.92; font-weight: 400; max-width: 1100px; }
.oh-about-hero h1 em { color: var(--accent); font-style: italic; }
.oh-about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.oh-team { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.oh-team-member .photo { aspect-ratio: 3/4; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.oh-team-member .photo span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.oh-team-member .name { font-family: var(--font-display); font-size: 18px; font-weight: 400; }
.oh-team-member .role { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* Contact */
.oh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 64px 0; }
.oh-form { display: flex; flex-direction: column; gap: 20px; }
.oh-field { display: flex; flex-direction: column; gap: 8px; }
.oh-field label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.oh-field input, .oh-field textarea, .oh-field select {
  border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-family: var(--font-body); font-size: 16px;
  background: transparent; color: var(--ink); outline: none; transition: border-color .15s; width: 100%;
}
.oh-field input:focus, .oh-field textarea:focus, .oh-field select:focus { border-bottom-color: var(--accent); }
.oh-field textarea { min-height: 120px; resize: vertical; }
.oh-contact-side { background: var(--bg-soft); padding: 48px; display: flex; flex-direction: column; gap: 36px; align-self: start; }
.oh-contact-block { display: flex; flex-direction: column; gap: 8px; }
.oh-contact-block .lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.oh-contact-block p, .oh-contact-block a { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.oh-contact-block a:hover { color: var(--accent); }

/* PDP */
.oh-pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 48px 0 80px; }
.oh-pdp-gallery { display: flex; gap: 12px; }
.oh-pdp-thumbs { display: flex; flex-direction: column; gap: 8px; }
.oh-pdp-thumb { width: 64px; height: 80px; background: var(--bg-soft); border: 1px solid var(--line); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .15s; }
.oh-pdp-thumb.active { border-color: var(--ink); }
.oh-pdp-main { flex: 1; background: var(--bg-warm); min-height: 560px; display: flex; align-items: center; justify-content: center; }
.oh-pdp-info h1 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); letter-spacing: -0.03em; font-weight: 400; margin: 8px 0 20px; line-height: 1.05; }

/* Responsive */
@media (max-width: 1024px) {
  .omid-topbar-tickers span:not(:first-child) { display: none; }
  .omid-megamenu { width: 95vw; }
}
@media (max-width: 900px) {
  .oh-hero-grid, .oh-about-grid, .oh-showroom-grid, .oh-contact-grid, .oh-pdp { grid-template-columns: 1fr; gap: 32px; }
  .oh-cats { grid-template-columns: 1fr 1fr; }
  .oh-values, .oh-review-grid { grid-template-columns: 1fr; }
  .oh-team { grid-template-columns: repeat(2,1fr); }
  .oh-catpage-body { grid-template-columns: 1fr; }
  .omid-footer-grid { grid-template-columns: 1fr 1fr; }
  .oh-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .omid-nav { display: none; }
  .omid-topbar-tickers { display: none; }
  .omid-header-inner { grid-template-columns: 1fr auto; }
  .oh-band-inner { flex-direction: column; align-items: flex-start; }
  .oh-grid { grid-template-columns: 1fr; }
}
