.elementor-140 .elementor-element.elementor-element-e6e5403{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-140 .elementor-element.elementor-element-78cbb48{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ef6b9b8 *//* ==================================================
   BIKE ON RENT PAGE HERO
   GLOBAL BRAND VERSION
================================================== */

:root {
  /* Replace with your final images */
  --rent-page-hero-desktop-image:
    url("http://shimlainnrentals.com/wp-content/uploads/2026/07/banner-1.jpg");

  --rent-page-hero-mobile-image:
    url("http://shimlainnrentals.com/wp-content/uploads/2026/07/mobile-banner-1.jpg");

  /* Banner controls */
  --rent-page-hero-max-width:
    var(--brand-container-wide, 1400px);

  --rent-page-hero-height: 620px;
  --rent-page-hero-bottom-height: 88px;

  --rent-page-hero-desktop-position: center center;
  --rent-page-hero-mobile-position: center top;

  --rent-page-hero-side-space:
    var(--brand-page-gutter, 30px);

  --rent-page-hero-content-width: 690px;
  --rent-page-hero-title-size: 60px;

  /* Global brand connections */
  --rent-page-hero-green:
    var(--brand-primary, #193929);

  --rent-page-hero-dark-green:
    var(--brand-primary-dark, #102a1e);

  --rent-page-hero-light-green:
    var(--brand-primary-light, #315c45);

  --rent-page-hero-gold:
    var(--brand-accent, #b9924c);

  --rent-page-hero-light-gold:
    var(--brand-accent-light, #d6b264);

  --rent-page-hero-white:
    var(--brand-white, #ffffff);

  --rent-page-hero-heading-font:
    var(--brand-font-heading, "Manrope", Arial, sans-serif);

  --rent-page-hero-body-font:
    var(--brand-font-body, "Inter", Arial, sans-serif);

  --rent-page-hero-button-radius:
    var(--brand-radius-md, 10px);

  --rent-page-hero-small-radius:
    var(--brand-radius-sm, 6px);

  --rent-page-hero-pill-radius:
    var(--brand-radius-pill, 999px);

  --rent-page-hero-transition:
    var(--brand-transition, 280ms ease);

  --rent-page-hero-shadow:
    var(
      --brand-shadow-md,
      0 16px 38px rgba(16, 42, 30, 0.18)
    );
}


/* ==================================================
   HERO
================================================== */

.rent-page-hero {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  min-height: var(--rent-page-hero-height);

  overflow: hidden;

  font-family: var(--rent-page-hero-body-font);

  background-image: var(--rent-page-hero-desktop-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--rent-page-hero-desktop-position);
}

.rent-page-hero *,
.rent-page-hero *::before,
.rent-page-hero *::after {
  box-sizing: border-box;
}


/* ==================================================
   OVERLAY
================================================== */

.rent-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      color-mix(
        in srgb,
        var(--rent-page-hero-dark-green) 96%,
        transparent
      ) 0%,
      color-mix(
        in srgb,
        var(--rent-page-hero-dark-green) 91%,
        transparent
      ) 27%,
      color-mix(
        in srgb,
        var(--rent-page-hero-dark-green) 66%,
        transparent
      ) 48%,
      color-mix(
        in srgb,
        var(--rent-page-hero-dark-green) 18%,
        transparent
      ) 72%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 45%,
      color-mix(
        in srgb,
        var(--rent-page-hero-dark-green) 48%,
        transparent
      ) 100%
    );
}


/* ==================================================
   INNER CONTENT
================================================== */

.rent-page-hero__inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  width: min(
    var(--rent-page-hero-max-width),
    calc(
      100% -
      (var(--rent-page-hero-side-space) * 2)
    )
  );

  min-height:
    calc(
      var(--rent-page-hero-height) -
      var(--rent-page-hero-bottom-height)
    );

  margin: 0 auto;
  padding: 34px 0;
}

.rent-page-hero__content {
  width: 100%;
  max-width: var(--rent-page-hero-content-width);
}


/* ==================================================
   EYEBROW
================================================== */

.rent-page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: var(--rent-page-hero-light-gold);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rent-page-hero__eyebrow span {
  display: inline-block;

  width: 38px;
  height: 2px;

  background: var(--rent-page-hero-gold);
  border-radius: var(--rent-page-hero-pill-radius);
}


/* ==================================================
   TITLE
================================================== */

.rent-page-hero__title {
  max-width: 690px;
  margin: 0;

  color: var(--rent-page-hero-white);

  font-family: var(--rent-page-hero-heading-font);
  font-size: clamp(
    44px,
    4.6vw,
    var(--rent-page-hero-title-size)
  );
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.5px;

  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.rent-page-hero__title span {
  display: block;
  color: var(--rent-page-hero-light-gold);
}


/* ==================================================
   DESCRIPTION
================================================== */

.rent-page-hero__description {
  max-width: 610px;
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  line-height: 1.65;
}


/* ==================================================
   BUTTONS
================================================== */

.rent-page-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 25px;
}

.rent-page-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;
  padding: 0 21px;

  border: 1px solid transparent;
  border-radius: var(--rent-page-hero-button-radius);

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;

  transition:
    background var(--rent-page-hero-transition),
    border-color var(--rent-page-hero-transition),
    color var(--rent-page-hero-transition),
    transform var(--rent-page-hero-transition),
    box-shadow var(--rent-page-hero-transition);
}

.rent-page-hero__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;

  fill: currentColor;
}

.rent-page-hero__button:hover {
  transform: translateY(-2px);
}


/* Primary button */

.rent-page-hero__button--primary {
  color: var(--rent-page-hero-dark-green);
  background: var(--rent-page-hero-gold);

  box-shadow: var(--rent-page-hero-shadow);
}

.rent-page-hero__button--primary:hover {
  color: var(--rent-page-hero-dark-green);
  background: var(--rent-page-hero-white);
}


/* Call button */

.rent-page-hero__button--call {
  justify-content: flex-start;

  padding-left: 8px;

  color: var(--rent-page-hero-white);
  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);
}

.rent-page-hero__button--call:hover {
  color: var(--rent-page-hero-white);
  background: rgba(255, 255, 255, 0.2);

  border-color: var(--rent-page-hero-gold);
}


/* ==================================================
   CALL BUTTON CONTENT
================================================== */

.rent-page-hero__call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  flex-shrink: 0;

  color: var(--rent-page-hero-dark-green);
  background: var(--rent-page-hero-gold);

  border-radius: var(--rent-page-hero-small-radius);
}

.rent-page-hero__call-icon svg {
  width: 18px;
  height: 18px;
}

.rent-page-hero__call-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.rent-page-hero__call-content small {
  color: rgba(255, 255, 255, 0.66);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.rent-page-hero__call-content strong {
  color: var(--rent-page-hero-white);

  font-size: 14px;
  line-height: 1.1;
}


/* ==================================================
   BENEFIT POINTS
================================================== */

.rent-page-hero__points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px 20px;

  margin-top: 23px;
}

.rent-page-hero__point {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(255, 255, 255, 0.87);

  font-size: 12px;
  font-weight: 600;
}

.rent-page-hero__point > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 23px;
  height: 23px;
  flex-shrink: 0;

  color: var(--rent-page-hero-light-gold);

  background:
    color-mix(
      in srgb,
      var(--rent-page-hero-gold) 20%,
      transparent
    );

  border:
    1px solid
    color-mix(
      in srgb,
      var(--rent-page-hero-light-gold) 35%,
      transparent
    );

  border-radius: 50%;
}

.rent-page-hero__point svg {
  width: 13px;
  height: 13px;

  fill: currentColor;
}


/* ==================================================
   BOTTOM BAR
================================================== */

.rent-page-hero__bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: var(--rent-page-hero-bottom-height);

  background:
    color-mix(
      in srgb,
      var(--rent-page-hero-dark-green) 90%,
      transparent
    );

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
}

.rent-page-hero__bottom-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: min(
    var(--rent-page-hero-max-width),
    calc(
      100% -
      (var(--rent-page-hero-side-space) * 2)
    )
  );

  margin: 0 auto;
}


/* ==================================================
   BOTTOM ITEMS
================================================== */

.rent-page-hero__bottom-item {
  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 60px;
  padding: 8px 24px;

  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.rent-page-hero__bottom-item:first-child {
  padding-left: 0;
}

.rent-page-hero__bottom-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.rent-page-hero__bottom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  flex-shrink: 0;

  color: var(--rent-page-hero-gold);

  border:
    1px solid
    color-mix(
      in srgb,
      var(--rent-page-hero-gold) 40%,
      transparent
    );

  border-radius: 50%;
}

.rent-page-hero__bottom-icon svg {
  width: 19px;
  height: 19px;

  fill: currentColor;
}

.rent-page-hero__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rent-page-hero__bottom-content strong {
  color: var(--rent-page-hero-white);

  font-size: 12px;
  line-height: 1.2;
}

.rent-page-hero__bottom-content small {
  color: rgba(255, 255, 255, 0.6);

  font-size: 10px;
  line-height: 1.3;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {
  :root {
    --rent-page-hero-height: 520px;
    --rent-page-hero-title-size: 54px;
    --rent-page-hero-side-space: 20px;
  }

  .rent-page-hero__content {
    max-width: 590px;
  }

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

  .rent-page-hero__bottom-item:nth-child(2) {
    border-right: 0;
  }

  .rent-page-hero__bottom-item:first-child,
  .rent-page-hero__bottom-item:nth-child(3) {
    padding-left: 0;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {
  :root {
    --rent-page-hero-height: auto;
    --rent-page-hero-bottom-height: auto;
    --rent-page-hero-side-space: 18px;
  }

  .rent-page-hero {
    min-height: 620px;

    background-image: var(--rent-page-hero-mobile-image);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: var(--rent-page-hero-mobile-position);
  }

  .rent-page-hero__overlay {
    background:
      linear-gradient(
        180deg,
        transparent 0%,
        color-mix(
          in srgb,
          var(--rent-page-hero-dark-green) 8%,
          transparent
        ) 10%,
        color-mix(
          in srgb,
          var(--rent-page-hero-dark-green) 25%,
          transparent
        ) 20%,
        color-mix(
          in srgb,
          var(--rent-page-hero-dark-green) 65%,
          transparent
        ) 33%,
        color-mix(
          in srgb,
          var(--rent-page-hero-dark-green) 94%,
          transparent
        ) 43%,
        var(--rent-page-hero-dark-green) 100%
      );
  }

  .rent-page-hero__inner {
    align-items: flex-end;

    width: 100%;
    min-height: 535px;

    padding: 230px 18px 30px;
  }

  .rent-page-hero__content {
    max-width: 100%;
  }

  .rent-page-hero__eyebrow {
    margin-bottom: 12px;

    font-size: 10px;
    letter-spacing: 1px;
  }

  .rent-page-hero__eyebrow span {
    width: 28px;
  }

  .rent-page-hero__title {
    font-size: clamp(37px, 10vw, 49px);
    letter-spacing: -1.8px;
  }

  .rent-page-hero__description {
    margin-top: 15px;

    font-size: 15px;
    line-height: 1.55;
  }

  .rent-page-hero__actions {
    align-items: stretch;
    flex-direction: column;

    margin-top: 21px;
  }

  .rent-page-hero__button {
    width: 100%;
  }

  .rent-page-hero__button--call {
    justify-content: center;
  }

  .rent-page-hero__points {
    display: none;
  }

  .rent-page-hero__bottom {
    background: var(--rent-page-hero-dark-green);

    backdrop-filter: none;
  }

  .rent-page-hero__bottom-inner {
    grid-template-columns: repeat(2, 1fr);

    width: 100%;
  }

  .rent-page-hero__bottom-item {
    min-height: 84px;
    padding: 12px 14px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rent-page-hero__bottom-item:first-child,
  .rent-page-hero__bottom-item:nth-child(3) {
    padding-left: 14px;
  }

  .rent-page-hero__bottom-item:nth-child(2),
  .rent-page-hero__bottom-item:nth-child(4) {
    border-right: 0;
  }

  .rent-page-hero__bottom-item:nth-child(3),
  .rent-page-hero__bottom-item:nth-child(4) {
    border-bottom: 0;
  }

  .rent-page-hero__bottom-icon {
    width: 35px;
    height: 35px;
  }

  .rent-page-hero__bottom-icon svg {
    width: 17px;
    height: 17px;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {
  .rent-page-hero {
    min-height: 590px;
  }

  .rent-page-hero__inner {
    min-height: 510px;

    padding: 190px 14px 28px;
  }

  .rent-page-hero__title {
    font-size: 37px;
  }

  .rent-page-hero__description {
    font-size: 14px;
  }

  .rent-page-hero__button {
    min-height: 50px;
  }

  .rent-page-hero__bottom-item {
    gap: 8px;
    padding: 10px 9px;
  }

  .rent-page-hero__bottom-item:first-child,
  .rent-page-hero__bottom-item:nth-child(3) {
    padding-left: 9px;
  }

  .rent-page-hero__bottom-icon {
    width: 32px;
    height: 32px;
  }

  .rent-page-hero__bottom-icon svg {
    width: 15px;
    height: 15px;
  }

  .rent-page-hero__bottom-content strong {
    font-size: 10px;
  }

  .rent-page-hero__bottom-content small {
    font-size: 8px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-58cd083 *//* =====================================================
   BIKE RENTAL GRID
===================================================== */

.bike-grid-section,
.bike-grid-section * {
  box-sizing: border-box;
}

.bike-grid-section {
  --bike-grid-green: #193929;
  --bike-grid-dark-green: #102a1e;
  --bike-grid-light-green: #315c45;
  --bike-grid-gold: #b9924c;
  --bike-grid-light-gold: #d6b264;
  --bike-grid-cream: #f7f4ed;
  --bike-grid-border: #e4ded2;
  --bike-grid-white: #ffffff;
  --bike-grid-text: #526058;

  position: relative;
  width: 100%;
  padding: 105px 30px;
  overflow: hidden;
  background: var(--bike-grid-cream);
}

.bike-grid-section::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(185, 146, 76, 0.08);
}

.bike-grid-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.bike-grid-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.bike-grid-heading-content {
  max-width: 750px;
}

.bike-grid-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;

  color: var(--bike-grid-gold);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bike-grid-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--bike-grid-gold);
}

.bike-grid-heading h2 {
  max-width: 750px;
  margin: 0;

  color: var(--bike-grid-dark-green);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -2px;
}

.bike-grid-heading-content > p {
  max-width: 680px;
  margin: 19px 0 0;

  color: var(--bike-grid-text);
  font-size: 16px;
  line-height: 1.75;
}

.bike-grid-heading-note {
  min-width: 280px;
  padding: 17px 20px;
  border: 1px solid rgba(185, 146, 76, 0.3);
  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 13px;

  background: rgba(255, 255, 255, 0.62);
}

.bike-grid-note-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--bike-grid-gold);
  background: rgba(185, 146, 76, 0.12);
}

.bike-grid-note-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.bike-grid-heading-note > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bike-grid-heading-note small {
  color: #7e887f;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bike-grid-heading-note strong {
  color: var(--bike-grid-dark-green);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}


/* =====================================================
   GRID
===================================================== */

.bike-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}


/* =====================================================
   BIKE CARD
===================================================== */

.bike-grid-card {
  position: relative;
  min-width: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--bike-grid-border);
  border-radius: 16px;
  background: var(--bike-grid-white);

  box-shadow: 0 12px 36px rgba(16, 42, 30, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.bike-grid-card:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 146, 76, 0.55);
  box-shadow: 0 22px 55px rgba(16, 42, 30, 0.13);
}

.bike-grid-card-featured {
  border-color: rgba(185, 146, 76, 0.6);
}


/* Bike Image */

.bike-grid-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebeae5;
}

.bike-grid-image::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(16, 42, 30, 0),
    rgba(16, 42, 30, 0.33)
  );
}

.bike-grid-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.bike-grid-card:hover .bike-grid-image img {
  transform: scale(1.045);
}

.bike-grid-category {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;

  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;

  color: var(--bike-grid-white);
  background: rgba(16, 42, 30, 0.86);

  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bike-grid-card-featured .bike-grid-category {
  color: var(--bike-grid-dark-green);
  background: var(--bike-grid-light-gold);
  border-color: var(--bike-grid-light-gold);
}


/* Card Content */

.bike-grid-card-content {
  flex: 1;
  padding: 23px;

  display: flex;
  flex-direction: column;
}

.bike-grid-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.bike-grid-type {
  display: block;
  margin-bottom: 5px;

  color: var(--bike-grid-gold);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.bike-grid-title-row h3 {
  margin: 0;

  color: var(--bike-grid-dark-green);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.bike-grid-price {
  flex-shrink: 0;
  text-align: right;
}

.bike-grid-price strong {
  display: block;

  color: var(--bike-grid-green);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 800;
}

.bike-grid-price span {
  display: block;
  margin-top: 2px;

  color: #8c948e;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.bike-grid-description {
  margin: 17px 0 0;

  color: var(--bike-grid-text);
  font-size: 13px;
  line-height: 1.65;
}


/* Feature Chips */

.bike-grid-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 19px;
}

.bike-grid-features span {
  position: relative;
  padding: 7px 10px 7px 22px;
  border-radius: 30px;

  color: var(--bike-grid-green);
  background: #f0f4f1;

  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
}

.bike-grid-features span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;

  width: 5px;
  height: 5px;
  border-radius: 50%;

  background: var(--bike-grid-gold);
  transform: translateY(-50%);
}


/* Card Button */

.bike-grid-button {
  width: 100%;
  min-height: 49px;
  margin-top: auto;
  padding: 13px 15px;
  border: 1px solid var(--bike-grid-green);
  border-radius: 7px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: var(--bike-grid-green);
  background: transparent;

  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.bike-grid-features + .bike-grid-button {
  margin-top: 22px;
}

.bike-grid-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;

  transition: transform 0.25s ease;
}

.bike-grid-button:hover {
  color: var(--bike-grid-white);
  border-color: var(--bike-grid-green);
  background: var(--bike-grid-green);
}

.bike-grid-button:hover svg {
  transform: translateX(4px);
}

.bike-grid-card-featured .bike-grid-button {
  color: var(--bike-grid-dark-green);
  border-color: var(--bike-grid-light-gold);
  background: var(--bike-grid-light-gold);
}

.bike-grid-card-featured .bike-grid-button:hover {
  color: var(--bike-grid-white);
  border-color: var(--bike-grid-green);
  background: var(--bike-grid-green);
}


/* =====================================================
   BOTTOM INFORMATION BAR
===================================================== */

.bike-grid-footer {
  margin-top: 42px;
  padding: 21px 24px;
  border: 1px solid rgba(185, 146, 76, 0.28);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: rgba(255, 255, 255, 0.66);
}

.bike-grid-footer-text {
  display: flex;
  align-items: center;
  gap: 13px;
}

.bike-grid-footer-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--bike-grid-gold);
  background: rgba(185, 146, 76, 0.12);
}

.bike-grid-footer-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.bike-grid-footer-text p {
  max-width: 780px;
  margin: 0;

  color: var(--bike-grid-text);
  font-size: 12px;
  line-height: 1.6;
}

.bike-grid-whatsapp {
  min-height: 47px;
  padding: 12px 18px;
  border-radius: 7px;
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: var(--bike-grid-white);
  background: var(--bike-grid-green);

  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.bike-grid-whatsapp:hover {
  color: var(--bike-grid-white);
  background: var(--bike-grid-dark-green);
  transform: translateY(-2px);
}

.bike-grid-whatsapp svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .bike-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bike-grid-section {
    padding: 80px 25px;
  }

  .bike-grid-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .bike-grid-heading-note {
    min-width: 0;
  }

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

  .bike-grid-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .bike-grid-section {
    padding: 65px 16px;
  }

  .bike-grid-heading {
    margin-bottom: 30px;
  }

  .bike-grid-kicker {
    margin-bottom: 11px;
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .bike-grid-kicker::before {
    width: 28px;
  }

  .bike-grid-heading h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1.2px;
  }

  .bike-grid-heading-content > p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .bike-grid-heading-note {
    width: 100%;
    padding: 14px 15px;
  }

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

  .bike-grid-image {
    aspect-ratio: 16 / 11;
  }

  .bike-grid-card-content {
    padding: 20px;
  }

  .bike-grid-title-row h3 {
    font-size: 21px;
  }

  .bike-grid-description {
    margin-top: 14px;
  }

  .bike-grid-features {
    margin-top: 15px;
  }

  .bike-grid-features + .bike-grid-button {
    margin-top: 18px;
  }

  .bike-grid-footer {
    margin-top: 28px;
    padding: 18px;
    gap: 18px;
  }

  .bike-grid-footer-text {
    align-items: flex-start;
  }

  .bike-grid-whatsapp {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bike-grid-card,
  .bike-grid-image img,
  .bike-grid-button,
  .bike-grid-button svg,
  .bike-grid-whatsapp {
    transition: none;
  }
}/* End custom CSS */