/* ==========================================================================
   CMH mobile GmbH — Website Stylesheet
   ========================================================================== */

:root {
  /* Brand colors (from Vertriebspräsentation) */
  --navy-900: #0a192f;
  --navy-800: #0f172a;
  --navy-700: #0e1b33;
  --navy-600: #16233c;
  --navy-500: #273b5c;
  --slate: #5b6b7a;
  --teal: #1c7293;
  --deep-blue: #0a5b82;
  --amber: #f59e0b;
  --amber-dark: #d9820a;

  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #5b6b7a;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #b9c3d4;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 25, 47, 0.16);

  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--navy-900);
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border-color: var(--border);
  color: var(--navy-900);
}
.btn-outline-dark:hover {
  border-color: var(--navy-900);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 58px;
  width: auto;
}

.main-nav .nav-mobile-cta {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  background: var(--bg-alt);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .header-cta .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
  }
  .main-nav a {
    padding: 16px 18px;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .main-nav .nav-mobile-cta {
    display: block;
    margin-top: 16px;
  }
  .main-nav .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, var(--navy-600), var(--navy-900) 55%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 158, 11, 0.35) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 19px;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-on-dark-muted);
}

.hero-meta strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

/* Hero visual: system diagram card */
.hero-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.hero-visual .visual-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

/* ---- Stat bar ---- */
.stat-bar {
  background: var(--navy-800);
  color: #fff;
  padding: 0;
}

.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-bar .stat {
  padding: 32px 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-bar .stat:first-child {
  border-left: none;
}

.stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}

.stat .label {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

@media (max-width: 720px) {
  .stat-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-bar .stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-bar .stat:nth-child(1),
  .stat-bar .stat:nth-child(2) {
    border-top: none;
  }
}

/* ==========================================================================
   Cards / Grids
   ========================================================================== */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--deep-blue));
  color: var(--amber);
  margin-bottom: 20px;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 19px;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-blue);
  text-decoration: none;
}

/* Product feature card (light amber accent) */
/* Bordered feature row (icon left, text right) */
.feature-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row .icon-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

.feature-row .icon-badge svg {
  width: 22px;
  height: 22px;
}

.feature-row h4 {
  font-size: 16px;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.feature-row p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ==========================================================================
   Alternating content sections
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: -1;
  }
}

.split-media {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-navy {
  background: var(--navy-900);
  color: #fff;
}

.bg-navy .section-head p {
  color: var(--text-on-dark-muted);
}

.bg-navy h2,
.bg-navy h3 {
  color: #fff;
}

/* ==========================================================================
   Process / Steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step .step-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 12px;
}

.step h4 {
  font-size: 16.5px;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Quote / CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--deep-blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--text-on-dark-muted);
  margin-bottom: 0;
  max-width: 480px;
}

/* ==========================================================================
   Tabs (Produkte page)
   ========================================================================== */

.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.tabs-nav button {
  background: none;
  border: none;
  padding: 14px 6px;
  margin-right: 26px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.tabs-nav button.active {
  color: var(--navy-900);
  border-bottom-color: var(--amber);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadein 0.25s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .tab-intro {
    grid-template-columns: 1fr;
  }
}

.tab-intro .icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}
.tab-intro .icon-badge svg {
  width: 30px;
  height: 30px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--navy-800);
}

/* ==========================================================================
   Branch / Anwendungen cards
   ========================================================================== */

.branch-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: #fff;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.branch-card .icon-badge {
  background: rgba(245, 158, 11, 0.15);
  margin-bottom: auto;
}

.branch-card h3 {
  color: #fff;
  font-size: 18px;
}

.branch-card p {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* ==========================================================================
   System diagram (Produkte page)
   ========================================================================== */

.system-diagram {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  color: #fff;
}

.diagram-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .diagram-row {
    grid-template-columns: 1fr;
  }
}

.diagram-node {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.diagram-node .icon-badge {
  margin: 0 auto 14px;
  background: rgba(245, 158, 11, 0.15);
}

.diagram-node h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.diagram-node p {
  color: var(--text-on-dark-muted);
  font-size: 13px;
  margin-bottom: 0;
}

.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 22px;
}

/* ---- Sequential flow (Systemlösung) ---- */
.flow-group {
  margin-bottom: 40px;
}

.flow-group:last-child {
  margin-bottom: 0;
}

.flow-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 16px;
}

.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.flow-node {
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.flow-node .icon-badge {
  margin: 0 auto 14px;
  background: rgba(245, 158, 11, 0.15);
}

.flow-node h4 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.flow-node p {
  color: var(--text-on-dark-muted);
  font-size: 12.5px;
  margin-bottom: 0;
}

.flow-arrow {
  flex: 0 0 auto;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 20px;
}

@media (max-width: 820px) {
  .flow {
    flex-direction: column;
  }
  .flow-arrow {
    width: 100%;
    height: 28px;
  }
  .flow-arrow span {
    display: inline-block;
    transform: rotate(90deg);
  }
}

/* ==========================================================================
   Partner logos strip
   ========================================================================== */

.partner-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.partner-chip {
  padding: 14px 26px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 15px;
  background: var(--bg-alt);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--deep-blue);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-hint {
  font-size: 12.5px;
  color: var(--text-muted);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.consent input {
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14.5px;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact info cards */
.contact-info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card .row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-card .row:last-child {
  margin-bottom: 0;
}

.contact-info-card .row .icon-badge {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.contact-info-card .row .icon-badge svg {
  width: 20px;
  height: 20px;
}

.contact-info-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 14.5px;
}

.contact-info-card span,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 14.5px;
  text-decoration: none;
}

.map-placeholder {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder button {
  width: 100%;
  padding: 40px 20px;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 14.5px;
}

.map-placeholder iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 22px;
  color: var(--navy-900);
  margin-top: 2.2em;
}
.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 17px;
  color: var(--navy-900);
  margin-top: 1.6em;
}

.legal p, .legal li {
  color: var(--text-muted);
  font-size: 15.5px;
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 1em;
}

.legal li {
  margin-bottom: 0.4em;
}

.page-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 56px 0;
}

.page-hero .eyebrow {
  color: var(--amber);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 13.5px;
  color: var(--text-on-dark-muted);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-900);
  color: var(--text-on-dark-muted);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 14.5px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.product-photo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-top: 28px;
}
