 /* ── CSS VARIABLES ── */
    :root {
      --red:       #d0021b;
      --red-dark:  #a80016;
      --red-light: #ff1f38;
      --black:     #1a1a1a;
      --charcoal:  #2c2c2c;
      --mid:       #555;
      --muted:     #888;
      --border:    #dde1e7;
      --bg:        #f4f5f7;
      --white:     #ffffff;
      --card-bg:   #ffffff;
      --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
      --shadow-md: 0 6px 24px rgba(0,0,0,.10);
      --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
      --radius:    6px;
      --font-head: 'Oswald', sans-serif;
      --font-body: 'Source Sans 3', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--black);
      font-size: 16px;
      line-height: 1.6;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── UTILITY ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-head); font-size: 1rem; font-weight: 600;
      letter-spacing: .04em; text-transform: uppercase;
      padding: 13px 28px; border-radius: var(--radius);
      cursor: pointer; border: 2px solid transparent;
      transition: all .2s ease;
    }
    .btn-red    { background: var(--red); color: #fff; }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
    .btn-outline:hover { background: var(--white); color: var(--red); }
    .btn-dark   { background: var(--black); color: #fff; }
    .btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--black);
      color: #ccc;
      font-size: .8rem;
      letter-spacing: .03em;
      padding: 7px 0;
    }
    .topbar .container {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
    }
    .topbar a { color: #ccc; transition: color .2s; }
    .topbar a:hover { color: #fff; }
    .topbar .tb-right { display: flex; gap: 20px; align-items: center; }

    /* ── HEADER ── */
    header {
      background: var(--white);
      border-bottom: 3px solid var(--red);
      position: sticky; top: 0; z-index: 100;
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 0; gap: 20px;
    }
    .logo img { height: 140px; width: auto; display: block; }

    .footer-brand img {
	height: 125px;
}

    /* ── SEARCH IN HEADER ── */
    .header-search {
      flex: 1; max-width: 480px;
      display: flex; position: relative;
    }
    .header-search input {
      width: 100%; padding: 11px 48px 11px 18px;
      border: 2px solid var(--border); border-radius: var(--radius);
      font-family: var(--font-body); font-size: .95rem; color: var(--black);
      background: var(--bg);
      transition: border-color .2s;
    }
    .header-search input:focus { outline: none; border-color: var(--red); background: #fff; }
    .header-search input::placeholder { color: var(--muted); }
    .header-search button {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 46px; background: var(--red); border: none; border-radius: 0 var(--radius) var(--radius) 0;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .header-search button:hover { background: var(--red-dark); }
    .header-search button svg { fill: #fff; }

    /* ── NAV ── */
    nav { border-top: 1px solid var(--border); }

    .nav-inner {
      display: flex; align-items: center; gap: 0;
    }
    .nav-inner a {
      font-family: var(--font-head); font-size: .95rem; font-weight: 500;
      letter-spacing: .04em; text-transform: uppercase;
      padding: 14px 20px; color: var(--charcoal);
      border-bottom: 3px solid transparent;
      transition: color .2s, border-color .2s;
      white-space: nowrap;
    }
    .nav-inner a:hover, .nav-inner a.active {
      color: var(--black); border-bottom-color: var(--red);
    }
/* CTA stays on its own line nicely */
.nav-inner .nav-cta {
  margin-left: auto;
}
    .nav-inner .nav-cta:hover { background: var(--red-dark); border-bottom-color: transparent; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
      position: relative; overflow: hidden;
      padding: 72px 0 60px;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
    }
    .hero::after {
      content: '';
      position: absolute; left: 0; bottom: 0; right: 0; height: 4px;
      background: var(--red);
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .hero-text { color: #fff; }
    .hero-eyebrow {
      font-family: var(--font-head); font-size: .85rem; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--red-light); margin-bottom: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red-light); }
    .hero h1 {
      font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 700; line-height: 1.05; text-transform: uppercase;
      margin-bottom: 18px; letter-spacing: .01em;
    }
    .hero h1 span { color: var(--red-light); }
    .hero-desc {
      font-size: 1.05rem; color: #bbb; line-height: 1.7;
      margin-bottom: 32px; max-width: 440px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* ── HERO STATS ── */
    .hero-stats {
      display: flex; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px;
    }
    .hero-stat { flex: 1; padding-right: 24px; }
    .hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); margin-right: 24px; }
    .hero-stat .num {
      font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
    }
    .hero-stat .num span { color: var(--red-light); }
    .hero-stat .label { font-size: .8rem; color: #888; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

    /* ── VEHICLE FINDER CARD ── */
    .icon {
	font-size: 40px;
   }
    .finder-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .finder-card-head {
      background: var(--red);
      padding: 18px 24px;
      display: flex; align-items: center; gap: 12px;
    }
    .finder-card-head svg { fill: #fff; opacity: .9; }
    .finder-card-head h2 {
      font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
      color: #fff; text-transform: uppercase; letter-spacing: .06em;
    }
    .finder-card-head p { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 1px; }
    .finder-body { padding: 24px; }

    .finder-tabs {
      display: flex; gap: 0; margin-bottom: 20px;
      border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
    }
    .tab-btn {
      flex: 1; padding: 10px 14px; background: var(--bg);
      font-family: var(--font-head); font-size: .85rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: .04em; color: var(--mid);
      border: none; cursor: pointer; transition: all .2s;
    }
    .tab-btn.active { background: var(--black); color: #fff; }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* YMME selects */
    .ymme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
    .ymme-select {
      width: 100%;
      padding: 11px 14px;
      border: 2px solid var(--border); border-radius: var(--radius);
      font-family: var(--font-body); font-size: .9rem; color: var(--black);
      background: var(--bg); cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 12px center;
      transition: border-color .2s;
    }
    .ymme-select:focus { outline: none; border-color: var(--red); background-color: #fff; }
    .ymme-select:disabled { opacity: .45; cursor: not-allowed; }

    /* Part # search tab */
    .part-search-wrap { display: flex; gap: 10px; }
    .part-search-wrap input {
      flex: 1; padding: 11px 16px;
      border: 2px solid var(--border); border-radius: var(--radius);
      font-family: var(--font-body); font-size: .95rem;
      transition: border-color .2s;
    }
    .part-search-wrap input:focus { outline: none; border-color: var(--red); }

    .finder-divider {
      display: flex; align-items: center; gap: 10px;
      margin: 14px 0; color: var(--muted); font-size: .8rem;
    }
    .finder-divider::before, .finder-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

  

    /* ── SECTION HEADERS ── */
    .section-head { text-align: center; margin-bottom: 44px; }
    .section-head .eyebrow {
      font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em;
      text-transform: uppercase; color: var(--red); margin-bottom: 10px;
    }
    .section-head h2 {
      font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
      color: var(--black); line-height: 1.1;
    }
    .section-head p { margin-top: 10px; color: var(--muted); max-width: 520px; margin-left: auto; margin-right: auto; }

    /* ── CATEGORIES GRID ── */
    .section { padding: 64px 0; }
    .section.alt { background: var(--bg); }
    .section.dark { background: var(--black); }
    .section.dark .section-head h2 { color: #fff; }
    .section.dark .section-head .eyebrow { color: var(--red-light); }
    .section.dark .section-head p { color: #777; }

    .cats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .cat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px 20px;
      text-align: center;
      cursor: pointer;
      transition: all .25s;
      position: relative;
      overflow: hidden;
    }
    .cat-card::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--red); transform: scaleX(0); transition: transform .25s;
    }
    .cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
    .cat-card:hover::before { transform: scaleX(1); }
    .cat-card .cat-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
    .cat-card h3 {
      font-family: var(--font-head); font-size: 1rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .04em; color: var(--black); margin-bottom: 6px;
    }
    .cat-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

    /* ── BRANDS MARQUEE ── */
    .brands-section { background: var(--white); padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .brands-label {
      text-align: center;
      font-family: var(--font-head); font-size: 1.5rem; letter-spacing: .14em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
    }
    .marquee-outer { overflow: hidden; position: relative; }
    .marquee-outer::before, .marquee-outer::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    }
    .marquee-outer::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
    .marquee-outer::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 28s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .brand-chip {
      padding: 10px 28px;
      font-family: var(--font-head); font-size: .9rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .06em;
      color: var(--charcoal); white-space: nowrap;
      border-right: 1px solid var(--border);
      transition: color .2s;
    }
    .brand-chip:hover { color: var(--red); }

    /* ── WHY US ── */
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 32px 28px;
      transition: box-shadow .25s;
    }
    .why-card:hover { box-shadow: var(--shadow-md); }
    .why-card .num {
      font-family: var(--font-head); font-size: 3rem; font-weight: 700;
      color: var(--border); line-height: 1; margin-bottom: 16px;
    }
    .why-card h3 {
      font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .03em; color: var(--black);
      margin-bottom: 10px;
    }
    .why-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
    .why-card .icon { font-size: 2rem; margin-bottom: 12px; display: block; }

    /* ── PROMO BANNER ── */
    .promo-banner {
      background: linear-gradient(135deg, var(--red-dark), var(--red));
      border-radius: 12px;
      padding: 48px 52px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px;
      margin: 0 0 64px;
      position: relative; overflow: hidden;
    }
    .promo-banner::before {
      content: '';
      position: absolute; right: -40px; top: -40px;
      width: 240px; height: 240px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
    }
    .promo-banner::after {
      content: '';
      position: absolute; right: 60px; bottom: -60px;
      width: 160px; height: 160px;
      background: rgba(255,255,255,.04);
      border-radius: 50%;
    }
    .promo-text { position: relative; z-index: 1; }
    .promo-banner h2 {
      font-family: var(--font-head); font-size: 2rem; font-weight: 700;
      text-transform: uppercase; color: #fff; letter-spacing: .02em; line-height: 1.1;
    }
    .promo-banner p { color: rgba(255,255,255,.8); margin-top: 8px; font-size: .95rem; }
    .promo-banner .btn-outline { position: relative; z-index: 1; white-space: nowrap; }

    /* ── FEATURED PRODUCTS ── */
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .product-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; overflow: hidden; transition: all .25s;
    }
    .product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
    .product-thumb {
      background: var(--bg); height: 160px;
      display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .product-badge {
      position: absolute; top: 10px; left: 10px;
      background: var(--red); color: #fff;
      font-family: var(--font-head); font-size: .7rem; font-weight: 600;
      letter-spacing: .04em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 3px;
    }
    .product-info { padding: 16px; }
    .product-brand {
      font-family: var(--font-head); font-size: .72rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase; color: var(--red);
      margin-bottom: 4px;
    }
    .product-name { font-weight: 600; color: var(--black); margin-bottom: 4px; font-size: .9rem; }
    .product-sku { font-size: .75rem; color: var(--muted); }
    .product-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 16px; border-top: 1px solid var(--border);
    }
    .product-price {
      font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--black);
    }
    .product-add {
      background: var(--red); color: #fff; border: none;
      padding: 7px 14px; border-radius: var(--radius);
      font-family: var(--font-head); font-size: .78rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .04em;
      cursor: pointer; transition: background .2s;
    }
    .product-add:hover { background: var(--red-dark); }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      color: #aaa;
      padding: 56px 0 0;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 48px;
    }
    .footer-brand .logo img { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
    .footer-brand p { font-size: .88rem; line-height: 1.7; color: #888; }
    .footer-brand .social { display: flex; gap: 10px; margin-top: 20px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 6px;
      background: rgba(255,255,255,.07); display: flex; align-items: center;
      justify-content: center; color: #aaa; font-size: .85rem;
      transition: all .2s; border: 1px solid rgba(255,255,255,.08);
    }
    .social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
    .footer-col h4 {
      font-family: var(--font-head); font-size: .88rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .08em; color: #fff;
      margin-bottom: 18px; padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      font-size: .88rem; color: #888; transition: color .2s;
    }
    .footer-col ul li a:hover { color: #fff; padding-left: 4px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 20px 0;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .8rem; color: #666; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom a { color: #666; transition: color .2s; }
    .footer-bottom a:hover { color: #fff; }

    /* ── MOBILE HAMBURGER (basic) ── */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; border-radius: 2px; transition: all .2s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero-grid { grid-template-columns: 1fr; }
      .finder-card { margin-top: 32px; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .cats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .promo-banner { flex-direction: column; text-align: center; }
    }
    @media (max-width: 640px) {
      .header-inner { flex-wrap: wrap; }
      .header-search { max-width: 100%; order: 3; flex: 0 0 100%; }
      .nav-inner a { padding: 12px 14px; font-size: .82rem; }
      .cats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .promo-banner { padding: 32px 28px; }
      .ymme-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 900px) {

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .nav-inner a {
    padding: 10px 12px;
    font-size: .8rem;
    white-space: nowrap; /* keep styling intact */
  }

  .nav-inner .nav-cta {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 6px;
  }

}

    /* ── FULL-WIDTH PROMO BANNER (below nav) ── */
    .promo-flyer-banner {
      width: 100%;
      background: #1a1208;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: stretch;
      min-height: 900px;
      border-bottom: 4px solid var(--red);
    }

    /* Angled image panel — right side */
    .promo-flyer-img {
      position: absolute;
      inset: 0;
      overflow: hidden;
     
    }
    .promo-flyer-img img {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      height: 80%;
      width: auto;
      min-width: 100%;
      object-fit: contain;
      object-position: center top;
      filter: brightness(.88) saturate(1.1);
    }
    .promo-flyer-img::after {
      content: '';
      position: absolute; inset: 0;
     
    }

    /* Left text content */
    .promo-flyer-content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 22px 40px 22px 32px;
      max-width: 60%;
    }
    .promo-flyer-logo-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .promo-flyer-bestbuy {
      background: var(--red);
      color: #fff;
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 3px;
      white-space: nowrap;
    }
    .promo-flyer-canadien {
      font-family: var(--font-head);
      font-size: .65rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .promo-flyer-divider {
      width: 2px;
      height: 80px;
      background: rgba(255,255,255,.12);
      flex-shrink: 0;
    }
    .promo-flyer-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .promo-flyer-eyebrow {
      font-family: var(--font-head);
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--red-light);
      margin-bottom: 2px;
    }
    .promo-flyer-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
      letter-spacing: .01em;
    }
    .promo-flyer-title em {
      color: var(--red-light);
      font-style: normal;
    }
    .promo-flyer-sub {
      font-family: var(--font-head);
      font-size: clamp(.95rem, 1.8vw, 1.3rem);
      font-weight: 400;
      color: rgba(255,255,255,.75);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 4px;
    }
    .promo-flyer-season {
      font-family: var(--font-body);
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      letter-spacing: .06em;
      margin-top: 6px;
    }
    .promo-flyer-cta {
      margin-left: auto;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      padding-right: 36px;
      flex-shrink: 0;
    }
    .promo-flyer-cta a {
      background: var(--red);
      color: #fff;
      font-family: var(--font-head);
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: var(--radius);
      border: 2px solid var(--red);
      transition: all .2s;
      white-space: nowrap;
    }
    .promo-flyer-cta a:hover {
      background: transparent;
      color: var(--red-light);
    }

 
 @media (max-width: 760px) {

  .promo-flyer-banner {
    flex-direction: column;
    min-height: auto;
  }

  /* IMAGE becomes normal block (not layered) */
  .promo-flyer-img {
    position: relative;
    width: 100%;
    height: 220px;
  }

  .promo-flyer-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
    top: 0;
    left: 0;
  }

  /* CONTENT stacks nicely */
  .promo-flyer-content {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }

  .promo-flyer-divider {
    display: none;
  }

  /* CTA is now visible and stacked */
  .promo-flyer-cta {
    display: flex;              /* ← IMPORTANT: bring it back */
    width: 100%;
    justify-content: center;
    padding: 16px 20px 24px;
    margin: 0;
  }

  .promo-flyer-cta a {
    width: 100%;
    text-align: center;
  }
}

    /* ── ANIMATION ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
    .hero-text > * { animation: fadeUp .55s ease both; }
    .hero-text .hero-eyebrow { animation-delay: .05s; }
    .hero-text h1          { animation-delay: .13s; }
    .hero-text .hero-desc  { animation-delay: .21s; }
    .hero-text .hero-actions{ animation-delay: .29s; }
    .hero-text .hero-stats  { animation-delay: .37s; }
    .finder-card            { animation: fadeUp .55s ease .18s both; }
	
	
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}
body {
    top: 0px !important;
}