.cmp-store-finder-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: unset !important;
  font-family: Archivo, sans-serif;

  @media screen and (max-width: 767px) {
    min-height: 360px;
  }

  /* ── BACKGROUND IMAGE ── */
  .cmp-store-finder-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    picture {
      display: block;
      width: 100%;
      height: 100%;
    }
  }

  .cmp-store-finder-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }


  /* ── CONTENT ── */
  .cmp-store-finder-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    width: 100%;
    max-width: 640px;
    gap: 12px;
    padding-bottom: 104px;

    @media screen and (max-width: 767px) {
      padding: 40px 20px;
      max-width: 100%;
      padding-bottom: 69px;
    }
  }

  .cmp-store-finder-banner__title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;

    @media screen and (max-width: 767px) {
      font-size: 30px;
    }
  }

  .cmp-store-finder-banner__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.5;

    @media screen and (max-width: 767px) {
      font-size: 16px;
    }
  }

  /* ── SEARCH BAR ── */
  .cmp-store-finder-banner__search-wrap {
    position: relative;
    width: 100%;
    max-width: 444px;
    background: #ffffff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 65px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);

    @media screen and (max-width: 767px) {
      max-width: 100%;
      height: 60px;
    }
  }

  .cmp-store-finder-banner__search-icon {
    flex-shrink: 0;
    margin-right: 10px;
    height: 24px;
    width: 24px;
  }

  .cmp-store-finder-banner__search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: Archivo, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    min-width: 0;

    &::placeholder {
      color: #676767;
    }
    @media screen and (max-width:767px){
      font-size: 14px;
    }
  }

  .cmp-store-finder-banner__clear-btn {
    flex-shrink: 0;
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;

    &.is-visible {
      display: flex;
    }
  }

  .cmp-store-finder-banner__clear-icon {
    width: 19px;
    height: 19 px;
    display: block;
  }

  /* ── SUGGESTIONS DROPDOWN ── */
  .cmp-store-finder-banner__suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 10;
    display: none;

    &.is-visible {
      display: block;
    }
  }

  .cmp-store-finder-banner__suggestion-item {
    padding: 12px 20px;
    font-size: 14px;
    color: #232426;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #f2f2f2;

    &:last-child {
      border-bottom: none;
    }

    &:hover,
    &.is-active {
      background: #f7f7f7;
    }
  }
}


@media only screen and (min-width: 1024px)and (max-width:1200px) {
    body {
        zoom: 67%
    }
  }
  @media only screen and (min-width: 1200px)and (max-width:1400px) {
    body {
        zoom: 85%
    }
  }
    @media( min-width : 1800px ){
    body {
        zoom:115%
    }
  }