/* ===== KindiVets — Shared Stylesheet ===== */
:root {
  --red:       #CA001B;
  --red-dark:  #9A0014;
  --navy:      #003087;
  --white:     #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100:  #F0F2F5;
  --gray-200:  #E2E6EA;
  --gray-400:  #9AA0A6;
  --gray-700:  #3C4043;
  --black:     #1A1A1A;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Arial', 'Helvetica Neue', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:var(--font-body); color:var(--black); background:var(--white); line-height:1.6; }

/* ── NAV ── */
nav { background:var(--white); border-bottom:3px solid var(--red); position:sticky; top:0; z-index:1000; box-shadow:0 2px 12px rgba(0,0,0,0.08); }
.nav-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:0 32px; height:224px; }
.nav-logo img { height:208px; width:auto; display:block; }
.nav-links { display:flex; align-items:center; list-style:none; }
.nav-links > li { position:relative; }
.nav-links > li > a { display:block; padding:8px 16px; font-size:13px; font-weight:600; color:var(--gray-700); text-decoration:none; letter-spacing:0.03em; text-transform:uppercase; transition:color 0.2s; }
.nav-links > li > a:hover { color:var(--red); }
.has-dropdown:hover .dropdown { display:block; }
.dropdown { display:none; position:absolute; top:100%; left:0; background:var(--white); border-top:3px solid var(--red); box-shadow:0 8px 24px rgba(0,0,0,0.12); min-width:220px; z-index:999; }
.dropdown a { display:block; padding:12px 20px; font-size:13px; color:var(--gray-700); text-decoration:none; border-bottom:1px solid var(--gray-200); transition:background 0.15s,color 0.15s; }
.dropdown a:hover { background:var(--gray-100); color:var(--red); }
.nav-cta { background:var(--red) !important; color:var(--white) !important; padding:10px 20px !important; border-radius:4px; }
.nav-cta:hover { background:var(--red-dark) !important; }

/* ── HERO ── */
.hero { position:relative; min-height:600px; display:flex; align-items:center; overflow:hidden; background:linear-gradient(135deg,var(--navy) 0%,#001f5e 60%,#0a0a0a 100%); }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center 30%; opacity:0.28; }
.hero-content { position:relative; z-index:2; max-width:1280px; margin:0 auto; padding:80px 32px; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.hero-text h1 { font-family:var(--font-display); font-size:clamp(30px,3.8vw,50px); font-weight:700; color:var(--white); line-height:1.15; margin-bottom:20px; }
.hero-text h1 span { color:var(--red); }
.hero-text p { font-size:17px; color:rgba(255,255,255,0.82); margin-bottom:32px; line-height:1.7; }
.hero-badges { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.hero-badge { background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); color:var(--white); font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:5px 12px; border-radius:3px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero-img-panel { border-radius:8px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.4); }
.hero-img-panel img { width:100%; height:420px; object-fit:cover; display:block; }

/* ── TRUST BAR ── */
.trust-bar { background:var(--navy); padding:22px 32px; }
.trust-bar-inner { max-width:1280px; margin:0 auto; display:flex; justify-content:center; gap:40px; flex-wrap:wrap; align-items:center; }
.trust-item { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,0.9); font-size:13px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; }

/* ── BUTTONS ── */
.btn-primary { background:var(--red); color:var(--white); padding:13px 26px; font-size:14px; font-weight:700; text-decoration:none; border-radius:4px; letter-spacing:0.03em; text-transform:uppercase; transition:background 0.2s; display:inline-block; }
.btn-primary:hover { background:var(--red-dark); }
.btn-outline { border:2px solid rgba(255,255,255,0.6); color:var(--white); padding:12px 26px; font-size:14px; font-weight:700; text-decoration:none; border-radius:4px; letter-spacing:0.03em; text-transform:uppercase; transition:border-color 0.2s,background 0.2s; display:inline-block; }
.btn-outline:hover { background:rgba(255,255,255,0.1); }
.btn-navy { background:var(--navy); color:var(--white); padding:13px 26px; font-size:14px; font-weight:700; text-decoration:none; border-radius:4px; letter-spacing:0.03em; text-transform:uppercase; transition:background 0.2s; display:inline-block; }
.btn-navy:hover { background:#001f5e; }

/* ── LAYOUT ── */
section { padding:80px 32px; }
.section-inner { max-width:1280px; margin:0 auto; }
.eyebrow { font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--red); margin-bottom:12px; }
h2.section-title { font-family:var(--font-display); font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--navy); margin-bottom:16px; line-height:1.2; }
.section-lead { font-size:16px; color:var(--gray-700); max-width:720px; margin-bottom:48px; line-height:1.7; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.round-img { border-radius:8px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,48,0.12); }
.round-img img { width:100%; height:380px; object-fit:cover; display:block; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background:linear-gradient(135deg,var(--navy) 0%,#001f5e 100%); padding:64px 32px; }
.page-hero-inner { max-width:1280px; margin:0 auto; }
.page-hero h1 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,44px); font-weight:700; color:var(--white); margin-bottom:14px; }
.page-hero p { font-size:16px; color:rgba(255,255,255,0.78); max-width:660px; line-height:1.7; }
.breadcrumb { font-size:12px; color:rgba(255,255,255,0.5); margin-bottom:16px; }
.breadcrumb a { color:rgba(255,255,255,0.5); text-decoration:none; }
.breadcrumb a:hover { color:var(--red); }

/* ── PITCH ── */
.pitch-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.pitch-intro p { font-size:15px; color:var(--gray-700); line-height:1.8; margin-bottom:18px; }
.pitch-cards { display:grid; gap:14px; }
.pitch-card { background:var(--white); border:1px solid var(--gray-200); border-left:4px solid var(--red); padding:18px 22px; border-radius:4px; }
.pitch-card h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:5px; }
.pitch-card p { font-size:13px; color:var(--gray-700); line-height:1.6; }
.pitch-hooks { margin-top:28px; background:var(--navy); border-radius:6px; padding:26px; }
.pitch-hooks h4 { color:rgba(255,255,255,0.6); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:14px; }
.hook { display:flex; gap:12px; margin-bottom:12px; align-items:flex-start; }
.hook-num { background:var(--red); color:var(--white); font-size:11px; font-weight:700; width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.hook p { font-size:13px; color:rgba(255,255,255,0.85); line-height:1.5; font-style:italic; }

/* ── DISTRIBUTOR CARDS ── */
.dist-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px; }
.dist-card { background:var(--white); border:1px solid var(--gray-200); border-radius:6px; overflow:hidden; transition:box-shadow 0.2s,transform 0.2s; }
.dist-card:hover { box-shadow:0 8px 32px rgba(0,0,48,0.12); transform:translateY(-2px); }
.dist-card-header { background:var(--navy); padding:20px 22px; }
.dist-card-header .icon { font-size:26px; margin-bottom:8px; display:block; }
.dist-card-header h3 { color:var(--white); font-size:15px; font-weight:700; }
.dist-card-body { padding:18px 22px; }
.dist-card-body .angle { font-size:11px; font-weight:700; color:var(--red); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:8px; }
.dist-card-body p { font-size:13px; color:var(--gray-700); line-height:1.6; margin-bottom:10px; }
.dist-card-body blockquote { font-style:italic; font-size:13px; color:var(--navy); border-left:3px solid var(--red); padding-left:12px; margin-top:10px; line-height:1.6; }

/* ── PRODUCTS ── */
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.product-card { border:1px solid var(--gray-200); border-radius:6px; overflow:hidden; transition:box-shadow 0.2s,transform 0.2s; text-decoration:none; color:inherit; display:block; }
.product-card:hover { box-shadow:0 8px 32px rgba(0,0,48,0.12); transform:translateY(-3px); }
.product-card-img { height:180px; overflow:hidden; background:var(--gray-100); display:flex; align-items:center; justify-content:center; font-size:52px; }
.product-card-img img { width:100%; height:100%; object-fit:cover; }
.product-card-body { padding:22px; }
.product-card-body h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.product-card-body p { font-size:13px; color:var(--gray-700); line-height:1.6; margin-bottom:14px; }
.learn { font-size:12px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:0.05em; }

/* ── WHY LIST ── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.why-list { list-style:none; display:grid; gap:14px; }
.why-list li { display:flex; gap:14px; align-items:flex-start; background:var(--white); padding:18px; border-radius:4px; border:1px solid var(--gray-200); }
.why-icon { width:38px; height:38px; background:var(--red); color:var(--white); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; }
.why-text h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.why-text p { font-size:13px; color:var(--gray-700); line-height:1.6; }

/* ── CERTIFICATIONS ── */
.cert-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:36px; }
.cert-card { text-align:center; padding:28px 18px; border:2px solid var(--gray-200); border-radius:6px; transition:border-color 0.2s; }
.cert-card:hover { border-color:var(--red); }
.cert-icon { font-size:36px; margin-bottom:14px; display:block; }
.cert-card h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:5px; }
.cert-card p { font-size:12px; color:var(--gray-400); }

/* ── CONTRACT ── */
.contract-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:36px; }
.contract-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-top:4px solid var(--red); padding:26px 22px; border-radius:4px; }
.contract-card .icon { font-size:28px; margin-bottom:14px; display:block; }
.contract-card h4 { color:var(--white); font-size:15px; font-weight:700; margin-bottom:8px; }
.contract-card p { color:rgba(255,255,255,0.7); font-size:13px; line-height:1.6; }
.contract-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.step { display:flex; gap:14px; align-items:flex-start; }
.step-num { font-family:var(--font-display); font-size:32px; font-weight:700; color:var(--red); line-height:1; flex-shrink:0; }
.step h5 { color:var(--white); font-size:13px; font-weight:700; margin-bottom:4px; }
.step p { color:rgba(255,255,255,0.65); font-size:12px; line-height:1.5; }

/* ── SPEC TABLE ── */
.spec-table { width:100%; border-collapse:collapse; font-size:14px; }
.spec-table th { background:var(--navy); color:var(--white); padding:12px 16px; text-align:left; font-size:12px; letter-spacing:0.05em; text-transform:uppercase; }
.spec-table td { padding:13px 16px; border-bottom:1px solid var(--gray-200); color:var(--gray-700); }
.spec-table tr:nth-child(even) td { background:var(--gray-100); }
.spec-table tr:last-child td { border-bottom:none; }

/* ── FAQ ── */
.faq-grid { display:grid; gap:14px; max-width:860px; }
.faq-item { background:var(--white); border:1px solid var(--gray-200); border-radius:4px; overflow:hidden; }
.faq-q { padding:18px 22px; font-weight:700; font-size:14px; color:var(--navy); cursor:pointer; display:flex; justify-content:space-between; align-items:center; user-select:none; }
.faq-q:hover { background:var(--gray-100); }
.faq-q .arrow { color:var(--red); font-size:16px; transition:transform 0.2s; }
.faq-a { padding:0 22px; max-height:0; overflow:hidden; transition:max-height 0.3s ease,padding 0.3s; font-size:14px; color:var(--gray-700); line-height:1.7; }
.faq-item.open .faq-a { max-height:300px; padding:0 22px 18px; }
.faq-item.open .arrow { transform:rotate(180deg); }

/* ── FOOTER ── */
footer { background:var(--black); color:rgba(255,255,255,0.75); padding:60px 32px 32px; }
.footer-inner { max-width:1280px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand img { height:176px; width:auto; margin-bottom:18px; }
.footer-brand p { font-size:13px; line-height:1.7; color:rgba(255,255,255,0.55); }
.footer-mantra { font-family:var(--font-display); font-size:14px; font-style:italic; color:var(--red); margin-top:14px; }
.footer-col h5 { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:14px; }
.footer-col a { display:block; color:rgba(255,255,255,0.7); text-decoration:none; font-size:13px; margin-bottom:9px; transition:color 0.2s; }
.footer-col a:hover { color:var(--red); }
.footer-contact-item { display:flex; gap:10px; align-items:center; margin-bottom:9px; font-size:13px; color:rgba(255,255,255,0.7); }
.footer-contact-item .ci { color:var(--red); font-size:15px; flex-shrink:0; }
.footer-divider { border-color:rgba(255,255,255,0.1); margin:0 0 22px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:11px; color:rgba(255,255,255,0.35); }
.footer-bottom a { color:rgba(255,255,255,0.35); text-decoration:none; }
.footer-bottom a:hover { color:var(--red); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-content,.pitch-grid,.why-grid,.two-col { grid-template-columns:1fr; gap:36px; }
  .dist-grid,.contract-grid,.products-grid { grid-template-columns:1fr; }
  .cert-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .contract-steps { grid-template-columns:1fr; }
  .nav-inner { height:auto; padding:16px 24px; flex-wrap:wrap; gap:16px; }
  .nav-logo img { height:100px; }
}

/* ── PRODUCT CATALOGUE TABLE (product-catalogue.html) ── */
.cat-header {
  background: linear-gradient(135deg, var(--navy) 0%, #001f5e 100%);
  padding: 40px 48px 36px;
  display: flex; align-items: center; gap: 32px;
}
.cat-header .logo-mark {
  width: 56px; height: 56px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0;
}
.cat-header h2 { font-family: Georgia,serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cat-header p  { font-size: 14px; color: rgba(255,255,255,0.65); }
.cat-header .badge { margin-left:auto; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.2); border-radius:4px; padding:10px 18px; text-align:center; flex-shrink:0; }
.cat-header .badge .num { font-size:28px; font-weight:700; color:var(--white); line-height:1; }
.cat-header .badge .lbl { font-size:11px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:0.06em; }
.filter-bar { background:var(--white); border-bottom:2px solid var(--gray-200); padding:16px 48px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.filter-bar span { font-size:12px; font-weight:700; color:var(--gray-400); text-transform:uppercase; letter-spacing:0.06em; margin-right:4px; }
.filter-btn { border:1px solid var(--gray-200); background:var(--white); color:var(--gray-700); font-size:12px; font-weight:600; padding:6px 14px; border-radius:20px; cursor:pointer; transition:all 0.15s; }
.filter-btn:hover,.filter-btn.active { background:var(--navy); color:var(--white); border-color:var(--navy); }
.table-wrap { padding:32px 48px 48px; }
.prod-table { width:100%; border-collapse:separate; border-spacing:0; background:var(--white); border-radius:8px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,48,0.08); }
.prod-table thead tr th { background:var(--navy); color:var(--white); padding:14px 20px; text-align:left; font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; }
.prod-table thead tr th:first-child { width:100px; text-align:center; }
.prod-table thead tr th:nth-child(2) { width:260px; }
.prod-table thead tr th:nth-child(3) { width:180px; }
.prod-table tbody tr { transition:background 0.15s; border-bottom:1px solid var(--gray-200); }
.prod-table tbody tr:last-child { border-bottom:none; }
.prod-table tbody tr:hover { background:#f0f4ff; }
.prod-table tbody tr.highlight { background:#fff5f5; }
.prod-table tbody tr.highlight:hover { background:#ffe8e8; }
.prod-table tbody td { padding:14px 20px; vertical-align:middle; font-size:14px; color:var(--gray-700); }
.prod-table tbody td:first-child { text-align:center; padding:10px 16px; }
.thumb-wrap { width:68px; height:68px; border-radius:6px; overflow:hidden; border:1px solid var(--gray-200); display:inline-flex; align-items:center; justify-content:center; background:var(--gray-100); }
.thumb-wrap svg { width:68px; height:68px; }
.prod-name { font-weight:700; font-size:14px; color:var(--navy); display:block; margin-bottom:2px; }
.prod-name.highlight-name { color:var(--red); }
.cat-pill { display:inline-block; font-size:11px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; padding:3px 10px; border-radius:12px; }
.cat-surgical    { background:#e8edf8; color:var(--navy); }
.cat-intensive   { background:#fff0e8; color:#b84a00; }
.cat-diagnostics { background:#e8f7eb; color:#1a7a2e; }
.cat-general     { background:#f5f0ff; color:#5b21b6; }
.cat-wound       { background:#fef9e8; color:#92620a; }
.cat-infection   { background:#e8faf5; color:#0a7a5a; }
.cat-anesthesia  { background:#fce8f0; color:#a3004f; }
.cat-rehab       { background:#e8f0fc; color:#1a4fd6; }
.prod-desc { font-size:13px; color:var(--gray-400); line-height:1.5; margin-top:3px; }
.key-badge { display:inline-block; font-size:10px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; background:var(--red); color:var(--white); padding:2px 7px; border-radius:3px; margin-left:8px; vertical-align:middle; }
.tbl-footer { background:var(--gray-100); border-top:2px solid var(--gray-200); padding:14px 20px; display:flex; justify-content:space-between; align-items:center; }
.tbl-footer span { font-size:12px; color:var(--gray-400); }
.tbl-footer .legend { display:flex; gap:18px; }
.tbl-footer .legend-item { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--gray-700); }
.tbl-footer .legend-dot { width:10px; height:10px; border-radius:2px; }
@media(max-width:700px){
  .cat-header,.filter-bar,.table-wrap { padding-left:16px; padding-right:16px; }
  .thumb-wrap { width:52px; height:52px; }
  .thumb-wrap svg { width:52px; height:52px; }
  .cat-header .badge { display:none; }
  .table-wrap { padding:16px; }
}
