/* Mobile-first polish shared by the homepage, content pages and vehicle details. */
@media (max-width: 820px) {
  :root {
    --mobile-gutter: 20px;
    --mobile-section: 68px;
  }

  html {
    scroll-padding-top: 72px;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    font-size: 15px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: 100% !important;
    max-width: none;
    padding-inline: var(--mobile-gutter);
  }

  .section {
    padding-block: var(--mobile-section);
  }

  .eyebrow,
  .section-head span {
    gap: 9px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 1.45px;
  }

  .eyebrow::before,
  .section-head span::before,
  .centered span::after {
    width: 26px;
  }

  .section-head h2,
  .about-copy h2,
  .content-title h2 {
    margin: 12px 0 21px;
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.04;
    letter-spacing: -.65px;
  }

  .button,
  .nav-cta {
    min-height: 50px;
    padding: 14px 19px;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
  }

  /* Header and touch-friendly full-screen navigation */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .topbar {
    display: none !important;
  }

  .nav-shell {
    height: 72px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  }

  .nav-inner {
    height: 72px;
    gap: 12px;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    max-height: 48px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid !important;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 12px;
    place-content: center;
    border-radius: 50%;
    background: #000;
  }

  .menu-toggle i {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: var(--brand-gold, #FBB900);
    transition: transform .22s ease, opacity .18s ease;
  }

  .menu-open .menu-toggle i:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .menu-toggle i:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle i:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-inner nav {
    position: fixed !important;
    inset: 72px 0 0 !important;
    z-index: 101;
    display: flex !important;
    gap: 0 !important;
    padding: 24px var(--mobile-gutter) max(28px, env(safe-area-inset-bottom)) !important;
    align-items: stretch !important;
    flex-direction: column;
    overflow-y: auto;
    background: #050505 !important;
    color: #fff;
    transform: translateX(105%);
    transition: transform .28s cubic-bezier(.22, .75, .2, 1);
  }

  .menu-open .nav-inner nav {
    transform: none;
  }

  .nav-inner nav::before {
    display: block;
    margin: 0 0 14px;
    color: #777;
    content: "Menu";
    font: 600 11px var(--display);
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }

  .nav-inner nav a {
    width: 100%;
    min-height: 52px;
    padding: 15px 4px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .13) !important;
    color: #fff;
    font-size: clamp(18px, 5.5vw, 23px) !important;
    line-height: 1.15;
  }

  .nav-inner nav a::after {
    display: none;
  }

  .nav-inner nav a.active,
  .nav-inner nav a[aria-current="page"] {
    color: var(--brand-gold, #FBB900);
  }

  #mainNav .header-shop-link {
    display: flex !important;
    min-height: 54px;
    margin-top: 18px;
    padding-inline: 18px !important;
    align-items: center;
    justify-content: space-between;
    border: 0 !important;
    background: var(--brand-gold, #FBB900);
    color: #000;
  }

  #mainNav .header-shop-link::after {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    color: #000;
    content: "→";
    font-size: 24px;
  }

  .nav-actions {
    display: none !important;
  }

  /* Homepage hero */
  .hero {
    height: min(760px, calc(100svh - 72px));
    min-height: 610px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.23) 0%, rgba(0,0,0,.4) 28%, rgba(0,0,0,.92) 100%) !important;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 76px);
  }

  .hero h1 {
    max-width: calc(100% - 20px);
    margin: 13px 0 17px;
    font-size: clamp(41px, 12vw, 57px);
    line-height: .98;
    letter-spacing: -1px;
  }

  .hero p {
    max-width: 100%;
    margin: 0 0 24px;
    color: #f0f0f0;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .hero-socials {
    top: 14px;
    right: var(--mobile-gutter);
    gap: 4px;
    padding: 5px;
  }

  .hero-socials a {
    width: 34px;
    height: 34px;
  }

  .hero-controls #heroPrev,
  .hero-controls #heroNext {
    top: auto !important;
    bottom: 20px !important;
    width: 48px !important;
    height: 48px !important;
    transform: none !important;
  }

  .hero-controls #heroPrev {
    left: var(--mobile-gutter) !important;
  }

  .hero-controls #heroNext {
    right: var(--mobile-gutter) !important;
  }

  .hero-controls #heroPrev::after,
  .hero-controls #heroNext::after {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .hero-index {
    display: none;
  }

  /* Service tiles become a compact touch carousel instead of a long wall */
  .tiles-wrap {
    margin-top: 0 !important;
    padding: 18px 0 26px;
    background: var(--brand-gray, #E2E2E2);
  }

  .tiles-wrap .container {
    padding-inline: 0;
  }

  .tiles {
    display: flex !important;
    gap: 12px;
    padding: 3px var(--mobile-gutter) 16px;
    overflow-x: auto;
    box-shadow: none;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .tiles::-webkit-scrollbar {
    display: none;
  }

  .tile {
    flex: 0 0 min(82vw, 330px);
    min-height: 232px;
    padding: 27px 24px 23px;
    border: 1px solid rgba(0,0,0,.12) !important;
    border-top: 4px solid var(--brand-gold, #FBB900) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    scroll-snap-align: center;
  }

  .tile .number {
    top: 14px;
    right: 18px;
    font-size: 50px;
  }

  .tile small {
    min-height: 0;
    font-size: 10px;
  }

  .tile h3 {
    margin: 15px 0 9px;
    font-size: 26px;
  }

  .tile p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  /* Homepage content sections */
  .about-grid,
  .repair-highlight-grid,
  .promo-grid,
  .promo-grid.reverse {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 34px !important;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
  }

  .feature-visual {
    order: 2;
  }

  .feature-copy {
    order: 1;
  }

  .about-visual {
    padding: 0 0 16px 16px !important;
  }

  .about-slider,
  .feature-image-shell {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  .feature-arrow {
    width: 44px;
    height: 44px;
  }

  .feature-arrow.prev {
    left: 10px;
  }

  .feature-arrow.next {
    right: 10px;
  }

  .feature-visual .stat {
    right: 0;
    bottom: 0;
    max-width: 72%;
    min-width: 0;
    padding: 17px 19px;
  }

  .feature-visual .stat b {
    font-size: 25px;
  }

  .feature-position {
    margin-bottom: 12px;
  }

  .feature-dots {
    gap: 5px;
    margin-top: 22px;
  }

  .feature-dots button {
    width: 20px;
    height: 6px;
  }

  .feature-dots button.active {
    width: 36px;
  }

  .about-list {
    gap: 11px;
    margin: 22px 0;
  }

  .about-actions,
  .promo-actions {
    gap: 10px;
    margin-top: 23px;
  }

  .repair-highlight,
  .promo-section,
  .offer-band {
    padding-block: var(--mobile-section);
  }

  .repair-copy h2,
  .promo-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(35px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .repair-copy p,
  .promo-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .repair-badges {
    gap: 7px;
    margin-top: 20px;
  }

  .repair-badges span {
    padding: 8px 10px;
    font-size: 9px;
  }

  .repair-visual,
  .promo-visual {
    min-height: 0 !important;
    padding: 0 10px 10px 0 !important;
  }

  .repair-visual::before,
  .promo-visual::before {
    inset: 18px 0 0 22px !important;
  }

  .repair-visual img,
  .promo-visual img {
    width: 100%;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover;
    box-shadow: 0 14px 32px rgba(0,0,0,.2);
  }

  .promo-grid.reverse .promo-copy,
  .promo-grid.reverse .promo-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .promo-grid.reverse .promo-copy {
    order: 1;
  }

  .promo-grid.reverse .promo-visual {
    order: 2;
  }

  .offer-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px;
    margin-top: 30px;
  }

  .offer-band .offer-point {
    min-height: 0 !important;
    height: auto !important;
    padding: 20px 18px !important;
    border: 1px solid rgba(255,255,255,.14);
    border-left: 4px solid var(--brand-gold, #FBB900);
    background: rgba(255,255,255,.055);
    transform: none !important;
  }

  .offer-point b {
    margin-bottom: 5px;
    font-size: 19px;
  }

  .offer-point span {
    font-size: 12px;
  }

  .offer-point p {
    display: -webkit-box;
    max-height: none !important;
    margin: 12px 0 0 !important;
    overflow: hidden;
    opacity: 1 !important;
    color: #d7d7d7;
    font-size: 13px;
    line-height: 1.6;
    transform: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .promo-shop .promo-grid {
    gap: 28px !important;
  }

  .promo-shop .listing-slider {
    min-height: 0;
  }

  .listing-track,
  .vehicles-slider .vehicles-grid {
    gap: 12px;
    padding: 4px var(--mobile-gutter) 17px 0;
    scroll-padding-inline: 0 var(--mobile-gutter);
  }

  .listing-card,
  .vehicles-slider .vehicle-card {
    flex-basis: min(84vw, 330px) !important;
  }

  .listing-nav {
    top: 44%;
    width: 40px;
    height: 40px;
  }

  .listing-nav.prev {
    left: -7px;
  }

  .listing-nav.next {
    right: -7px;
  }

  .shop-double-slider .listing-card {
    flex-basis: min(67vw, 250px) !important;
  }

  .shop-double-slider .listing-nav.prev {
    left: -6px;
  }

  .shop-double-slider .listing-nav.next {
    right: -6px;
  }

  .gallery-grid {
    display: flex !important;
    gap: 12px !important;
    margin-top: 32px;
    padding-bottom: 13px;
    overflow-x: auto !important;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid .gallery-item {
    flex: 0 0 min(84vw, 350px);
    min-width: min(84vw, 350px) !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    scroll-snap-align: center;
  }

  .gallery-item::after {
    transform: none;
  }

  .vehicles-heading {
    gap: 10px;
  }

  .vehicles-heading-aside {
    gap: 14px;
  }

  .vehicles-heading-aside p {
    font-size: 14px;
    line-height: 1.65;
  }

  .vehicle-image,
  .post-image,
  .home-blog-image {
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

  .partners {
    padding-block: var(--mobile-section) !important;
  }

  .partners-heading {
    gap: 15px;
    margin-bottom: 30px;
  }

  .partners-heading h2 {
    margin-top: 10px;
    font-size: clamp(35px, 10vw, 45px);
  }

  .partners-heading p {
    font-size: 14px;
    line-height: 1.65;
  }

  .partner-row {
    margin-inline: calc(var(--mobile-gutter) * -1);
    width: calc(100% + var(--mobile-gutter) * 2);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .partner-set > a,
  .partner-set > span {
    flex-basis: 148px;
    width: 148px;
    height: 90px;
    padding: 7px;
  }

  .news-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .news .post,
  .home-blog-card {
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
  }

  .post-copy,
  .home-blog-copy {
    padding: 22px 20px;
  }

  .post h3,
  .home-blog-copy h3 {
    font-size: 23px;
  }

  .home-blog-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .home-blog-heading p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Footer */
  footer {
    padding-top: 58px;
  }

  .footer-top {
    gap: 22px;
    padding-bottom: 32px;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-top h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .footer-top .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding: 38px 0;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid h3 {
    margin-bottom: 14px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 13px;
  }

  .footer-logo {
    width: 155px;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  .copyright {
    padding: 18px var(--mobile-gutter) calc(18px + env(safe-area-inset-bottom));
    font-size: 11px;
    line-height: 1.5;
  }

  .to-top {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    border-radius: 50%;
  }

  /* All regular subpages */
  .sub-hero {
    min-height: 350px;
    padding: 62px 0 44px;
    align-items: flex-end;
  }

  .sub-hero::before {
    background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.54));
  }

  .sub-hero::after {
    right: -8px;
    bottom: -12px;
    font-size: 65px;
  }

  .breadcrumbs {
    gap: 7px;
    margin-bottom: 18px;
    padding-bottom: 3px;
    overflow-x: auto;
    font-size: 10px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .sub-hero h1 {
    margin: 11px 0 15px;
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1;
  }

  .sub-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .split-section,
  .dark-story .split-section,
  .contact-layout,
  .detail-grid {
    gap: 34px;
  }

  .split-image {
    order: 2;
    padding: 0 10px 10px 0;
  }

  .split-image img,
  .repair-page .split-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .split-image::after {
    left: 18px;
    bottom: 0;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
  }

  .content-title .lead {
    font-size: 18px;
    line-height: 1.55;
  }

  .content-title p,
  .dark-story p {
    line-height: 1.75;
  }

  .dark-story {
    padding-block: var(--mobile-section);
  }

  .dark-story .story-number {
    font-size: 100px;
  }

  .cta-strip {
    padding-block: 48px;
  }

  .cta-strip .container {
    gap: 22px;
  }

  .cta-strip h2 {
    font-size: 38px;
  }

  .cta-strip .button {
    width: 100%;
  }

  .team-grid,
  .service-grid,
  .rental-grid,
  .article-grid,
  .process-grid {
    gap: 15px;
  }

  .service-card {
    min-height: 0;
    padding: 27px 23px;
    border-top: 4px solid var(--brand-gold, #FBB900);
  }

  .service-card h3 {
    margin: 38px 0 11px;
  }

  .service-card .service-number {
    font-size: 64px;
  }

  .process-grid {
    margin-top: 28px;
  }

  .process-step {
    padding: 25px 8px 25px 20px;
    border-left: 4px solid var(--brand-gold, #FBB900);
    border-top: 0;
  }

  .process-step::before {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .rules-box {
    gap: 22px;
    padding: 30px 22px;
  }

  .rules-box h2 {
    margin-top: 0;
    font-size: 34px;
  }

  .rental-body,
  .article-body {
    padding: 22px 20px;
  }

  .rental-image,
  .article-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .rental-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-main,
  .privacy-content {
    max-width: 100%;
  }

  .article-cover {
    margin-bottom: 28px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .article-content,
  .detail-rich-text,
  .vehicle-rich-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-content h2,
  .article-content h3,
  .article-content h4 {
    margin: 32px 0 14px;
  }

  .article-content blockquote {
    margin: 24px 0;
    padding: 18px;
  }

  .article-gallery {
    gap: 10px;
  }

  .article-gallery button {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-details,
  .contact-form,
  .rental-inquiry-copy,
  .rental-inquiry .contact-form {
    padding: 30px 22px;
  }

  .contact-details h2 {
    font-size: 33px;
  }

  .contact-link {
    padding: 15px 0;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 50px;
    font-size: 16px;
  }

  .contact-form .button {
    width: 100%;
  }

  .map-frame {
    height: 340px;
  }

  .faq-list {
    margin-top: 28px;
  }

  .faq-question {
    min-height: 58px;
    padding: 17px 0;
    font-size: 18px;
    line-height: 1.25;
  }

  .faq-answer {
    padding: 0 0 18px;
  }

  .page-lightbox,
  .lightbox {
    padding: 58px 12px 18px;
  }

  /* Vehicle details */
  .detail-header .nav-inner {
    justify-content: space-between;
  }

  .detail-header .brand {
    width: 120px;
    margin-right: 0;
  }

  .detail-header .back-link {
    max-width: calc(100% - 140px);
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .detail-hero {
    padding: 38px 0 34px;
  }

  .detail-title {
    gap: 19px;
  }

  .detail-title h1 {
    margin-top: 10px;
    font-size: clamp(38px, 11vw, 50px);
  }

  .detail-price strong {
    font-size: 30px;
  }

  .detail-content {
    padding-block: 34px 60px;
  }

  .detail-layout {
    gap: 24px;
  }

  .detail-gallery {
    margin-bottom: 28px;
  }

  .main-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .main-photo span {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .thumb-strip {
    padding: 0 34px;
  }

  .thumb {
    height: 68px;
  }

  .description-block,
  .equipment-block,
  .status-card,
  .contact-card {
    margin-bottom: 16px;
    padding: 27px 21px;
  }

  .description-block h2,
  .equipment-block h2 {
    margin: 10px 0 18px;
    font-size: 31px;
  }

  .equipment-grid,
  .spec-list,
  .detail-specs {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .equipment-grid {
    gap: 8px;
  }

  .equipment-grid span {
    padding: 12px 10px 12px 34px;
    font-size: 12px;
  }

  .equipment-grid span::before {
    left: 11px;
  }

  .vehicle-sidebar {
    display: flex;
    flex-direction: column;
  }

  .vehicle-sidebar .status-card {
    order: 1;
  }

  .vehicle-sidebar .contact-card {
    order: 2;
    margin-top: 0;
  }

  .spec-row,
  .detail-spec {
    min-height: 68px;
  }

  .similar .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .similar .vehicle-card {
    max-width: none;
  }

  /* Touchscreens should not depend on desktop hover states. */
  @media (hover: none) {
    .tile:hover,
    .service-card:hover,
    .rental-card:hover,
    .article-card:hover,
    .home-blog-card:hover,
    .shop-double-slider .listing-card:hover {
      transform: none !important;
    }

    .tile:hover {
      background: #fff !important;
      color: #000 !important;
    }

    .tile:hover p {
      color: #111 !important;
    }
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-gutter: 16px;
    --mobile-section: 58px;
  }

  .section-head h2,
  .about-copy h2,
  .content-title h2 {
    font-size: clamp(32px, 10.5vw, 40px);
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 49px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .about-actions .button,
  .promo-actions .button {
    width: 100%;
  }

  .tile {
    flex-basis: 86vw;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .repair-copy h2,
  .promo-copy h2 {
    font-size: clamp(33px, 10vw, 40px);
  }

  .shop-double-slider .listing-card {
    flex-basis: min(72vw, 245px) !important;
  }

  .news-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .sub-hero {
    min-height: 330px;
  }

  .sub-hero h1 {
    font-size: clamp(36px, 11vw, 45px);
  }

  .article-reading-meta {
    grid-template-columns: 1fr !important;
  }

  .article-reading-meta a {
    grid-column: auto !important;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .detail-title h1 {
    font-size: clamp(35px, 10.5vw, 44px);
  }
}

@media (max-width: 380px) {
  :root {
    --mobile-gutter: 13px;
  }

  .brand {
    width: 128px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero p {
    font-size: 14px;
  }

  .tile {
    flex-basis: 89vw;
  }

  .equipment-grid,
  .spec-list,
  .detail-specs {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-inner nav,
  .menu-toggle i {
    transition: none !important;
  }
}
