/* ACCOR Technology — Static Site Stylesheet
   Brand: #27b1e3 (primary blue), #1a2a3a (dark navy)
   Responsive: mobile-first, breakpoints 768px / 1024px
*/

/* ── Variables ─────────────────────────────────────────── */
:root {
  --blue:       #27b1e3;
  --blue-dark:  #1a8ab5;
  --navy:       #1a2a3a;
  --navy-light: #243347;
  --white:      #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid:   #e0e0e0;
  --gray-text:  #666666;
  --text:       #333333;
  --yellow-bg:  #fff3cd;
  --yellow-bd:  #ffc107;
  --red:        #cc3333;
  --radius:     4px;
  --shadow:     0 2px 8px rgba(0,0,0,0.12);
  --max-w:      1140px;
  --transition: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { color: var(--navy); font-weight: 700; line-height: 1.25; margin-bottom: .5em; }
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 48px 0; }
.section--gray { background: var(--gray-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1,.section--navy h2,.section--navy h3 { color: var(--white); }

/* ── Maintenance Banner ─────────────────────────────────── */
.maintenance-banner {
  background: var(--yellow-bg);
  border-bottom: 2px solid var(--yellow-bd);
  color: #856404;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.maintenance-banner a { color: #533f03; font-weight: 700; }
.maintenance-banner a:hover { color: #000; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo img { height: 48px; width: auto; }
.site-logo:hover { opacity: .9; }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.site-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

/* ── Hero Section ───────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d58 60%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 20px 80px;
}
.hero-section h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: .5em;
}
.hero-section .hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: .9;
  max-width: 700px;
  margin: 0 auto 2em;
  line-height: 1.5;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  color: var(--white);
  padding: 24px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Product Grid ───────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.product-card img {
  max-height: 60px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.product-card h3 { color: var(--navy); margin-bottom: .4em; }
.product-card p { font-size: 0.9rem; color: var(--gray-text); }
.product-card .card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-card .card-badge {
  display: inline-block;
  background: var(--gray-light);
  color: var(--gray-text);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Industry Cards ─────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.industry-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.industry-card h3 { color: var(--white); margin-bottom: .5em; }
.industry-card p { font-size: 0.9rem; opacity: .85; }
.industry-card a { color: var(--blue); font-weight: 600; }

/* ── Feature List ───────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-item h4 { margin-bottom: .2em; }
.feature-item p  { font-size: 0.9rem; color: var(--gray-text); margin: 0; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr; gap: 24px; }
.step {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q { font-weight: 700; color: var(--navy); margin-bottom: .4em; font-size: 1rem; }
.faq-a { font-size: 0.95rem; color: var(--gray-text); }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}
.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-style: normal;
  font-weight: 600;
}
.testimonial-title {
  font-size: 0.75rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ── Press / News ───────────────────────────────────────── */
.news-item {
  border-bottom: 1px solid var(--gray-mid);
  padding: 24px 0;
}
.news-item:first-child { padding-top: 0; }
.news-item h3 { margin-bottom: .3em; }
.news-item h3 a { color: var(--navy); }
.news-item h3 a:hover { color: var(--blue); text-decoration: none; }
.news-meta { font-size: 0.82rem; color: var(--gray-text); margin-bottom: .6em; }

/* ── Contact Box ─────────────────────────────────────────── */
.contact-box {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.contact-box h3 { margin-bottom: 16px; }
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.contact-person:last-child { border-bottom: none; padding-bottom: 0; }
.contact-person strong { color: var(--navy); font-size: 1rem; }
.contact-person span { font-size: 0.85rem; color: var(--gray-text); }
.contact-person a { color: var(--blue); }

/* ── Page Header (inner pages) ───────────────────────────── */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0 36px;
}
.page-header h1 { color: var(--white); margin-bottom: .3em; }
.page-header p  { opacity: .8; max-width: 680px; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }

/* ── PDF Download Grid ───────────────────────────────────── */
.pdf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pdf-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition);
}
.pdf-card:hover { border-color: var(--blue); }
.pdf-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #cc3333;
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.pdf-card h4 { margin-bottom: .1em; font-size: 0.95rem; }
.pdf-card p  { font-size: 0.82rem; color: var(--gray-text); margin: 0; }
.pdf-card a  { font-size: 0.82rem; font-weight: 600; }

/* ── Video Placeholder ───────────────────────────────────── */
.video-placeholder {
  background: #111;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
  padding: 20px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ── Two-col Layout ─────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── Application Line Cards ──────────────────────────────── */
.app-line-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.app-line-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.app-line-card img { max-height: 50px; margin: 0 auto 16px; }
.app-line-card h3 { margin-bottom: .4em; }
.app-line-card p  { font-size: 0.9rem; color: var(--gray-text); }
.app-line-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: var(--blue); text-decoration: none; }
.footer-col p { font-size: 0.9rem; margin-bottom: .6em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 32px; }
.mb-lg  { margin-bottom: 48px; }
.mt-md  { margin-top: 32px; }
.highlight-box {
  background: var(--gray-light);
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

/* ── Responsive: 768px ───────────────────────────────────── */
@media (min-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  .stats-bar .container { grid-template-columns: repeat(4, 1fr); }
  .product-grid          { grid-template-columns: repeat(2, 1fr); }
  .industry-grid         { grid-template-columns: repeat(2, 1fr); }
  .feature-grid          { grid-template-columns: repeat(2, 1fr); }
  .steps                 { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-cols           { grid-template-columns: repeat(3, 1fr); }
  .two-col               { grid-template-columns: 1fr 1fr; }
  .app-line-grid         { grid-template-columns: repeat(2, 1fr); }
  .pdf-grid              { grid-template-columns: repeat(2, 1fr); }
  .video-grid            { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: 1024px ──────────────────────────────────── */
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .maintenance-banner, .site-header, .site-footer, .hero-btns { display: none; }
  body { font-size: 12pt; color: #000; }
  a    { color: #000; text-decoration: underline; }
  .page-header { background: none; color: #000; border-bottom: 2px solid #000; }
  .page-header h1 { color: #000; }
}

/* ── Page Title Banner ──────────────────────────────────── */
.page-title-banner {
  background: #27b1e3;
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}
.page-title-banner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Two-Column Inner Layout ────────────────────────────── */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .inner-layout { grid-template-columns: 1fr; }
  .inner-sidebar { order: -1; }
}
.inner-main { min-width: 0; }

/* ── Sidebar ────────────────────────────────────────────── */
.inner-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-box {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.sidebar-box img { width: 100%; display: block; }
.sidebar-box-body { padding: 14px; }
.sidebar-box-body h4 { font-size: .95rem; margin-bottom: 8px; color: #1a2a3a; }
.sidebar-box-body p { font-size: .85rem; color: #555; margin-bottom: 10px; }

.btn-red {
  display: inline-block;
  background: #cc3333;
  color: #fff;
  padding: 8px 18px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
}
.btn-red:hover { background: #aa2222; color: #fff; text-decoration: none; }

.sidebar-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-align: center;
}
.sidebar-badge { font-size: .7rem; font-weight: 700; color: #1a2a3a; line-height: 1.3; }
.sidebar-badge span { display: block; font-size: 1.2rem; color: #27b1e3; }

.sidebar-download {
  background: #1a2a3a;
  color: #fff;
  padding: 16px;
  border-radius: 4px;
}
.sidebar-download h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.sidebar-download p { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.sidebar-download .btn-download {
  display: block;
  background: #27b1e3;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  text-decoration: none;
}
.sidebar-download .btn-download:hover { background: #1a8ab5; text-decoration: none; }

/* ── Wholesale / MRO Buttons ────────────────────────────── */
.btn-wholesale {
  display: inline-block;
  background: #cc3333;
  color: #fff;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  margin-right: 12px;
  margin-top: 8px;
}
.btn-wholesale:hover { background: #aa2222; color: #fff; text-decoration: none; }

.btn-mro {
  display: inline-block;
  background: #27b1e3;
  color: #fff;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  margin-top: 8px;
}
.btn-mro:hover { background: #1a8ab5; color: #fff; text-decoration: none; }

/* ── Product Listing Grid (category pages) ──────────────── */
.product-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .product-listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .product-listing-grid { grid-template-columns: 1fr; } }

.product-listing-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.product-listing-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.product-listing-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-listing-card-body h4 {
  font-size: .85rem;
  margin-bottom: 6px;
  color: #1a2a3a;
  line-height: 1.3;
}
.product-listing-card-body .card-meta {
  font-size: .75rem;
  color: #888;
  margin-bottom: auto;
  padding-bottom: 10px;
}
.btn-readmore {
  display: inline-block;
  background: #27b1e3;
  color: #fff;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 10px;
}
.btn-readmore:hover { background: #1a8ab5; color: #fff; text-decoration: none; }

/* ── Product Detail Layout ──────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .product-detail-layout { grid-template-columns: 1fr; } }

.product-detail-image img {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.product-detail-image .finish-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-detail-image .finish-thumbs button {
  padding: 6px 14px;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
.product-detail-image .finish-thumbs button.active,
.product-detail-image .finish-thumbs button:hover {
  border-color: #27b1e3;
  background: #27b1e3;
  color: #fff;
}

.product-detail-info h1 { font-size: 1.3rem; margin-bottom: 12px; }
.product-detail-info .spec-link {
  font-size: .85rem;
  color: #27b1e3;
  text-decoration: underline;
  display: block;
  margin-bottom: 16px;
}
.product-options-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin-top: 16px;
}
.product-options-table th,
.product-options-table td {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
}
.product-options-table th {
  background: #f5f5f5;
  font-weight: 700;
  color: #1a2a3a;
  width: 35%;
  text-align: left;
}

/* ── Brand Nav Strip (on product pages) ─────────────────── */
.brand-nav {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.brand-nav a {
  padding: 8px 16px;
  background: #f0f0f0;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
}
.brand-nav a:hover, .brand-nav a.active {
  background: #27b1e3;
  color: #fff;
  border-color: #27b1e3;
  text-decoration: none;
}

/* ── Video Placeholder ──────────────────────────────────── */
.video-placeholder {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin: 32px 0;
  border-radius: 4px;
}
.video-placeholder p { color: rgba(255,255,255,.7); margin: 0 0 12px; font-size: .9rem; }
.video-placeholder a { color: #27b1e3; font-weight: 700; }

/* ── PUSHON Footer Logo ─────────────────────────────────── */
.pushon-footer-logo {
  text-align: center;
  padding: 32px 0 16px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}
.pushon-footer-logo img { max-width: 120px; margin: 0 auto; }

/* ── Feature List (inner pages) ─────────────────────────── */
.feature-list { list-style: none; padding: 0; margin: 16px 0; }
.feature-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: .9rem;
}
.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27b1e3;
  font-weight: 700;
}
