/** Shopify CDN: Minification failed

Line 1244:0 Unexpected "<"
Line 1364:0 Expected "}" to go with "{"

**/
/* ====================================== */
/* TEMPO POWER LANDING — GLOBAL BASE      */
/* ====================================== */

.tempo-page {
  background: #000;
  color: #fff;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ========================= */
/* HERO                      */
/* ========================= */

.tempo-hero {
  position: relative;
  min-height: 82vh;
  color: #fff;
  overflow: hidden;
}

.tempo-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/cdn/shop/files/header-tempo-power-large.jpg?v=1763422117");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(1.9) contrast(1.16) saturate(1.08);
}

.tempo-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.02) 0%,
    rgba(0,0,0,0.32) 45%,
    rgba(0,0,0,0.80) 95%
  );
}

.tempo-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1.5rem 2vh;
}

.tempo-hero__logo-wrap {
  display: flex;
  justify-content: center;
}

.tempo-hero__logo {
  max-width: 130px;
  width: 18vw;
  transform: translateY(40vh); /* pushes logo down toward frame line */
}

/* ========================= */
/* TYPOGRAPHY / HEADERS      */
/* ========================= */

.tempo-section-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.tempo-section-kicker {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,0.75);
}

.tempo-section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.15;
  color: #d7ca9e;
  margin: 0;
}

/* ========================= */
/* OVERVIEW BAND             */
/* ========================= */

.tempo-overview {
  background: #151515;
  padding: 48px 20px 40px;
}

.tempo-overview__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tempo-overview__body p {
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 0.75rem;
}

/* Designed for block */
.tempo-designed {
  text-align: center;
  margin: 32px 0 24px;
}

.tempo-designed__label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #fff;
}

.tempo-designed__sub {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin: 0;
  color: #d7ca9e;
}

/* CTA */
.tempo-overview__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.tempo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 0; /* square corners */
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #d2c295;
  background: transparent;
  color: #d2c295;
  transition: all 0.2s ease;
}

.tempo-btn--outline:hover,
.tempo-btn--outline:focus-visible {
  background: #d2c295;
  color: #111;
}

/* ========================= */
/* ICON GRID                  */
/* ========================= */

.tempo-icons {
  margin-top: 24px;
}

.tempo-icons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 32px;
}

.tempo-icon {
  text-align: center;
}

.tempo-icon__img {
  max-width: 80px;
  width: 60%;
  margin: 0 auto 12px;
  display: block;
}

.tempo-icon__label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.tempo-icons__disclaimer {
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 1000px) {
  .tempo-icons__grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
  }
}


/* Full-page action 5 image – centre, slightly zoomed out */
.tempo-image--action5 img {
  width: 100vw;
  height: 80vh;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

/* 3-image strip – full width, shorter / zoomed out */
.tempo-grid3--wide .tempo-grid3__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tempo-grid3--wide .tempo-grid3__item img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .tempo-grid3--wide .tempo-grid3__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tempo-grid3--wide .tempo-grid3__item img {
    height: 50vh;
  }
}

/* ========================= */
/* FULL-PAGE IMAGES + CROPS  */
/* ========================= */

/* Default full-page behaviour */
.tempo-image--full img {
  width: 100vw;
  height: 88vh;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.tempo-image--dark {
  background: #050505;
}

/* Utility crops — per-image control */
.tempo-image--top img {
  object-position: center 30%;
}

.tempo-image--mid img {
  object-position: center 50%;
}

.tempo-image--low img {
  object-position: center 70%;
}

/* ========================= */
/* SPLIT SECTIONS            */
/* ========================= */

.tempo-split {
    background: #111;
}

.tempo-split--dark {
  background: #101010;
}

.tempo-split--tech {
  background: #141414;
}

.tempo-split__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.tempo-split__inner--reverse {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0px;
  align-items: center;
}

.tempo-split__col--text p {
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #e4e4e4;
  margin: 0 0 .75rem;
 }


.tempo-split__col--text {
    margin-left: 32px;
    margin-right: 32px;
}

.tempo-split__col--media img,
.tempo-split__col--media video {
  width: 100%;
  display: block;
  border-radius: 0px;
}

.tempo-video-inline {
  max-height: 520px;
}



@media (max-width: 900px) {
  .tempo-split__inner,
  .tempo-split__inner--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .tempo-split--routing .tempo-split__col--media img {
    height: auto;
    max-height: none;
  }
}

/* ========================= */
/* VCS SECTION               */
/* ========================= */

section.tempo-vcs {
  background: #111111;
  padding: 80px 20px 70px;
  text-align: center;
}

.tempo-vcs__inner {
  max-width: 900px;
  margin: 0 auto;
}

.tempo-vcs__logo {
  width: 235px;
  margin: 0 auto 28px auto;
  display: block;
}

.tempo-vcs__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7ca9e;
  margin: 0 0 22px 0;
}

.tempo-vcs__lead {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  max-width: 920px;
  margin: 0 auto 24px auto;
}

.tempo-vcs__line {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.22em;
  color: #d7ca9e;
  text-transform: uppercase;
  margin: 8px 0;
}

.tempo-vcs__body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  max-width: 840px;
  margin: 28px auto 0 auto;
}

/* VCS full-page image */
.tempo-vcs__image img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ========================= */
/* APPROVED BY RIDERS        */
/* ========================= */

section.tempo-frix {
  background: #111111;
  padding: 100px 20px;
}

.tempo-frix__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tempo-frix__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7ca9e;
  margin: 0 0 26px 0;
}

.tempo-frix__body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

/* ========================= */
/* 4-IMAGE DETAIL GRID       */
/* ========================= */

.tempo-grid4 {
  padding: 40px 20px 48px;
  background: #101010;
}

.tempo-grid4--dark {
  background: #111;
}

.tempo-grid4__inner {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tempo-grid4__item img {
  width: 100%;
  display: block;
}

/* ========================= */
/* 3-IMAGE GRID              */
/* ========================= */

.tempo-grid3 {
  padding: 40px 20px 48px;
  background: #111;
}

.tempo-grid3--dark {
  background: #141414;
}

.tempo-grid3__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tempo-grid3__item img {
  width: 100%;
  display: block;
}

/* ========================= */
/* 2-IMAGE CAROUSEL          */
/* ========================= */

.tempo-carousel {
  background: #000;
  padding: 32px 0;
}

.tempo-carousel__inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.tempo-carousel__radio {
  display: none;
}

.tempo-carousel__track {
  display: flex;
  width: 200%; /* two slides */
  transition: transform 0.45s ease;
}

.tempo-carousel__slide {
  flex: 0 0 100%;
}

.tempo-carousel__slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slide positions */
#tempo-slide1:checked ~ .tempo-carousel__track {
  transform: translateX(0);
}

#tempo-slide2:checked ~ .tempo-carousel__track {
  transform: translateX(-100%);
}

/* Dots */
.tempo-carousel__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.tempo-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

/* Active dot states */
#tempo-slide1:checked ~ .tempo-carousel__dots .tempo-carousel__dot--1,
#tempo-slide2:checked ~ .tempo-carousel__dots .tempo-carousel__dot--2 {
  opacity: 1;
  background: #ffffff;
  transform: scale(1.15);
}

/* Hide any scrollbars just in case */
.tempo-carousel__inner::-webkit-scrollbar {
  display: none;
}
.tempo-carousel__inner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================= */
/* TEXT BLOCKS               */
/* ========================= */

.tempo-text-block {
  padding: 48px 20px;
  background: #0d0d0d;
}

.tempo-text-block--dark {
  background: #101010;
}

.tempo-text-block__inner {
  max-width: 900px;
  margin: 0 auto;
}

.tempo-text-block__inner p {
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}
/* COMPACT & POWERFUL SYSTEM */
.tempo-text-block--compact {
  background: #0d0d0d;
  padding: 100px 20px 80px;
  text-align: center;
}

.tempo-compact__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.22em;
  color: #d7ca9e;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.tempo-compact__body {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 26px;
  color: #eaeaea;
}
/**********************************************/
/* T.E.M.P.O. POWER — GEOMETRY SECTION        */
/**********************************************/

/* Intro above image/table */
.tempo-geometry-intro {
  background: #0d0d0d;
  padding: 60px 20px 30px;
  text-align: center;
}

.tempo-geometry-intro__inner {
  max-width: 780px;
  margin: 0 auto;
}

.tempo-geometry-intro__body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #eaeaea;
  margin: 18px 0 0;
}

/* Main 2-column geometry block */
.tempo-geometry {
  background: #0d0d0d;
  padding: 40px 20px 60px;
}

.tempo-geometry__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

/* Geometry image smaller, no crop */
.tempo-geometry__image-col img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
  margin: 0 auto;
}

/* Table column */
.tempo-geometry__table-col {
  display: flex;
  justify-content: center;
}

/* Table container */
.tempo-geometry-table {
  max-width: 720px;
  width: 100%;
}

/* Table itself */
.tempo-geometry-table table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

/* Header row */
.tempo-geometry-table thead th {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  padding: 14px 6px;
  color: #d7ca9e;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* "SIZE" right-aligned */
.tempo-geometry-table thead th:first-child {
  text-align: right;
  padding-right: 14px;
}

/* S / M / L / XL centered */
.tg-size {
  text-align: center;
}

/* First column labels right aligned */
.tg-label,
.tempo-geometry-table tbody td:first-child {
  text-align: right;
  padding-right: 14px;
  width: 42%;
}

/* Body cells */
.tempo-geometry-table tbody td {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 11px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s ease;
  text-align: center;
}

/* Keep gold hover only on the individual data cells (SIZE/S/M/L/XL) */
.tempo-geometry-table tbody td:hover {
  background: rgba(215, 202, 158, 0.16);
}

/* Note text – Roboto 300, 10px, line-height 15px */
.tempo-geometry-note {
  margin-top: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .tempo-geometry__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tempo-geometry__image-col {
    order: 1;
  }

  .tempo-geometry__table-col {
    order: 2;
  }

  .tempo-geometry {
    padding-top: 30px;
  }
}

@media (max-width: 780px) {
  .tempo-geometry-table table {
    font-size: 13px;
  }

  .tg-label,
  .tempo-geometry-table tbody td:first-child {
    width: 55%;
  }
}
/* === BATTERY EXTENDER SECTION === */
.tempo-extender {
  background: #0d0d0d;
  padding: 80px 20px;
}

.tempo-extender__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.tempo-extender__image img {
  max-width: 320px;
}

.tempo-extender__text h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: #d7ca9e;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

.tempo-extender__text p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: white;
  margin-bottom: 12px;
}

.tempo-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: white;
  border: 1px solid white;
  letter-spacing: 0.12em;
  font-size: 14px;
}

@media (max-width: 900px) {
  .tempo-extender__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* === STAY CONNECTED LEFT-ALIGNED VERSION === */
.tempo-stay {
  position: relative;
  background-image: url("/cdn/shop/files/stayconnected-large.jpg?v=1761933017");
  background-size: cover;
  background-position: center;
  min-height: 420px;
  padding: 90px 20px;
  display: flex;
  align-items: center;
}

.tempo-stay__overlay {
  position: absolute;
  inset: 50;
  background: rgba(0, 0, 0, 0.55);
}

.tempo-stay__inner {
  position: relative;
  max-width: 520px;
  margin-left: 6vw;
  text-align: left;
}

.tempo-stay__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  color: white;
  font-size: 32px;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

.tempo-stay__body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: white;
  margin-bottom: 18px;
}

.tempo-stay__cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid white;
  color: white;
  letter-spacing: 0.12em;
}
/* === TEMPO vs META COMPARISON – center everything === */
.tempo-page .tempo-comparison {
  background:#111;
  color:#e6e6e6;
  text-align:center;
  padding:4rem 1rem 5rem;
}
.tempo-page .tempo-comparison h2 {
  color:#d4c99e;
  font-family:"Roboto Condensed",sans-serif;
  font-size:1.4rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:0.8rem;
}
.tempo-page .tempo-comparison p{
  font-size:0.95rem;
  color:#ccc;
  margin-bottom:3rem;
}
.tempo-page .tempo-comparison .comparison-table{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  max-width:1000px;
  margin:0 auto;
  align-items:start;
  column-gap:2rem;
}
.tempo-page .tempo-comparison .labels{
  text-align:right;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.tempo-page .tempo-comparison .labels .label-spacer {
  height: 100px; /* final tuned value for exact alignment */
  flex-shrink: 0;
}
.tempo-page .tempo-comparison .labels p{
  font-size:0.9rem;
  color:#ddd;
  letter-spacing:.05rem;
  margin:4px;
}
.tempo-page .tempo-comparison .column{
  display:flex;
  flex-direction:column;
  align-items:center;
}
.tempo-page .tempo-comparison .bike-logo{
  height:95px;
  width:auto;
  margin-bottom:0.3rem;
  opacity:0.95;
}
.tempo-page .tempo-comparison .rating{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.35rem;
}
.tempo-page .tempo-comparison .rating img{
  width:150px;
  height:auto;
}
/* Mobile tweaks: tighten row label spacing in Tempo vs Meta table */
@media (max-width: 768px){
  .tempo-page .tempo-comparison .labels{
    gap: 0.1rem !important;          /* reduce flex gap between rows */
  }

  .tempo-page .tempo-comparison .labels .label-spacer{
    height: 90px;                    /* slightly less space above first row */
  }

  .tempo-page .tempo-comparison .labels p{
    font-size: 0.8rem;               /* a touch smaller so they wrap nicer */
    line-height: 1.05;               /* tighten vertical line spacing */
    margin: 0 !important;            /* kill any inherited margins */
  }
}

/* TEMPO CERTIFICATION – EFBE overlay */
.tempo-certification {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 300px;
  background: url('/cdn/shop/files/tempopower-zoom.jpg?v=1763662387')
              center 30% / cover no-repeat;
  overflow: hidden;
}

.cert-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 8%;
  gap: 8%;
}

.cert-logo img {
  width: 160px;
  height: auto;
  opacity: 0.95;
}

.cert-text {
  max-width: 540px;
  color: #e6e6e6;
  font-family: 'Roboto', sans-serif;
}

.cert-text h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  color: #c2b988;
  letter-spacing: 0.1em;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.cert-text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0.8rem;
  color: #ddd;
}

@media (max-width: 900px) {
  .tempo-certification { height: auto; padding: 3rem 0; }
  .cert-overlay { flex-direction: column; gap: 1.5rem; padding: 2rem 6%; }
  .cert-logo img { width: 130px; }
  .cert-text { max-width: 90%; text-align: center; }
}
/* === OUR COMMITMENTS === */
.tempo-page .tempo-commitments {
  background:#111;
  color:#e6e6e6;
  text-align:center;
  padding:4rem 1rem 4.5rem;
}

.tempo-page .tempo-commitments h2 {
  font-family:"Roboto Condensed",sans-serif;
  font-weight:300;
  letter-spacing:0.3rem;
  color:#d4c99e;
  text-transform:uppercase;
  margin-bottom:2rem;
  font-size:26px;
  line-height: 31px;
}

.tempo-page .tempo-commitments .rf-block {
  max-width:920px;
  margin:0 auto 2.5rem;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.tempo-page .tempo-commitments .rf-logo {
  width:220px;
  height:auto;
  margin-bottom:1.2rem
}

.tempo-page .tempo-commitments p {
  font-weight:300;
  font-size:16px;
  line-height:26px;
  max-width:1100px;
  margin-bottom:1.2rem;
  color:#ccc;
}

/* ========================= */
/* TESTIMONIALS              */
/* ========================= */

.tempo-testimonials {
  background: #151515;
  padding: 48px 20px 56px;
}

.tempo-testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tempo-testimonials__title {
  text-align: center;
  margin-bottom: 32px;
}

.tempo-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tempo-testimonial {
  background: #1b1b1b;
  border-radius: 8px;
  padding: 20px 18px;
}

.tempo-testimonial__quote {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 0.75rem;
  color: #f0f0f0;
}

.tempo-testimonial__name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ========================= */
/* OUTRO                     */
/* ========================= */
.rf-selfshuttle {
  position:relative; width:100%; height:80vh; min-height:560px;
  background:url('/cdn/shop/files/meta-power-sx400-outro.jpg?v=1761954857')
              top center / cover no-repeat;
  display:flex; align-items:flex-end; justify-content:center; overflow:hidden;
}
.rf-selfshuttle__overlay { position:absolute; inset:0; background:rgba(0,0,0,0.45);
 display:flex; align-items:flex-end; justify-content:center; padding-bottom:4rem; }
.rf-selfshuttle__text { text-align:center; max-width:780px; color:#e6e6e6; padding:0 1.5rem; }
.rf-selfshuttle__text h2 { font-family:'Roboto Condensed',sans-serif; text-transform:uppercase;
 letter-spacing:0.1em; font-size:1.6rem; color:#d4c99e; margin-bottom:1rem; font-weight:400; }
.rf-selfshuttle__text p { font-family:'Roboto',sans-serif; font-weight:300; font-size:0.95rem;
 line-height:1.5; color:#ddd; margin:0 auto; }
@media (max-width:768px){ .rf-selfshuttle{height:70vh; min-height:460px;} 
 .rf-selfshuttle__overlay{padding-bottom:2.5rem;} 
 .rf-selfshuttle__text h2{font-size:1.3rem;} 
 .rf-selfshuttle__text p{font-size:0.88rem; line-height:1.45;} }
 
/* ========================= */
/* RESPONSIVE BREAKPOINTS    */
/* ========================= */

@media (max-width: 900px) {
  .tempo-icons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tempo-grid4__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tempo-grid3__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

@media (max-width: 640px) {
  .tempo-section-title {
    font-size: 28px;
  }

  .tempo-designed__label,
  .tempo-designed__sub {
    font-size: 14px;
    letter-spacing: 0.18rem;
  }

  .tempo-grid3__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tempo-testimonials__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tempo-hero__logo {
    width: 45vw;
    max-width: 200px;
    transform: translateY(10vh);
  }
}
/* ACTION 9 — centered rider crop */
.tempo-image--action9 img {
  width: 100%;
  height: 65vh; 
  object-fit: cover;
  object-position: center 50%; /* adjust up/down */
}
@media (max-width: 780px) {
  .tempo-image--action9 img {
    height: 60vh;
    object-position: center 40%;
  }
}

/* ACTION 7 – full-page rider shot */
.tempo-image--action7 img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: center 55%; /* push a touch lower so bike is well in frame */
}

@media (max-width: 780px) {
  .tempo-image--action7 img {
    height: 60vh;
    object-position: center 60%;
  }
}

<style>

/* BOSCH / 650 WH / EFBE feature band */
.tempo-bosch-summary {
  background: #141414;
  padding: 90px 20px;
}

.tempo-bosch-summary__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.tempo-bosch-summary__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7ca9e;
  margin-bottom: 14px;
}

.tempo-bosch-summary__body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: #eaeaea;
}

@media (max-width: 980px) {
  .tempo-bosch-summary__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* === COMPACT & POWERFUL SYSTEM TYPOGRAPHY === */

.tempo-text-block--compact {
  background: #0d0d0d;
  padding: 80px 20px 50px;
}

.tempo-text-block--compact .tempo-text-block__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.tempo-text-block--compact .tempo-section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.22em;
  color: #d7ca9e;
  margin: 0 0 18px 0;
}

.tempo-text-block--compact p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.tempo-text-block--compact .tempo-compact__note {
  font-size: 12px;
  line-height: 19px;
}

.tempo-text-block--compact .tempo-compact__note a {
  color: #ffffff;
  text-decoration: underline;
}

/* MODEL COLLECTION GRID */
.model-collection-grid {
  background:#111;
  padding:4rem 1rem 6rem;
  color:#e6e6e6;
}
.model-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  justify-items:center;
}
.model-card {
  position:relative;
  background:#1a1a1a;
  border-radius:8px;
  overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease;
}
.model-card:hover {
  transform:translateY(-4px);
  box-shadow:0 6px 14px rgba(0,0,0,.4);
}
.model-card img {
  width:100%;
  display:block;
}
.model-title {
  color:#fff;
  font-size:.95rem;
  margin-top:.5rem;
}
.model-price {
  color:#d4c99e;
  font-size:.9rem;
}
/* === DEBUG HIGH-SPECIFICITY FIXES === */
