.cmp-bh-store-listing {
  font-family: Archivo, sans-serif;
  max-width: 1360px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: 80px;
  @media screen and (max-width:767px){
    margin-bottom: 60px;
  }
  /* ── TOP ROW (title left, image right on desktop) ── */
  .cmp-bh-store-listing__top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
  }

  .cmp-bh-store-listing__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .cmp-bh-store-listing__header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    @media screen and (max-width:767px){
      gap: 5px;
    }
  }

  .cmp-bh-store-listing__title {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 400;
    color: #232426;
    margin: 0;
    line-height: 0.9;
    font-style: italic;
    white-space: nowrap;
  }

  .cmp-bh-store-listing__subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #75787B;
    margin: 0;
    line-height: 1.5;
  }

  .horizontal-line-divider{
    height: 2px;
    width: 100%;
    border-top: 2px solid #D6D6D6;
    white-space: nowrap;
    margin-top: -20px;
    @media screen and (max-width:767px){
      display: none;
    }
  }

  /* Toggle button — hidden on desktop, visible on mobile only */
  .cmp-bh-store-listing__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    line-height: 0;
    margin-top: 6px;
  }

  .cmp-bh-store-listing__chevron {
    display: block;
    transition: transform 0.3s ease;
  }

  /* Section image */
  .cmp-bh-store-listing__image-wrap {
    flex: 1;
    min-width: 720px;
  }

  .cmp-bh-store-listing__image {
    width: 100%;
    object-fit: contain;
    border-radius: 4px;
    display: block;
  }

  /* ── BODY — always visible on desktop ── */
  .cmp-bh-store-listing__body {
    display: block;
  }

  .cmp-bh-store-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
      > .cmp-bh-store-listing__card:first-child {
        @media screen and (max-width: 767px) {
          padding-top: 14px !important;
        }
      }
  }

  /* ── STORE CARD ── */
  .cmp-bh-store-listing__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
  }

  .cmp-bh-store-listing__card-name {
    font-size: 22px;
    font-weight: 500;
    color: #232426;
    margin: 0;
    line-height: 1.4;
    margin-bottom: 5px;
  }

  .cmp-bh-store-listing__card-address {
    font-size: 16px;
    font-weight: 400;
    color: #75787B;
    margin: 0;
    line-height: 1.5;
    @media screen and (max-width:767px){
      font-size: 12px;
    }
  }

  /* Call us row */
  .cmp-bh-store-listing__card-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #75787B;
    text-decoration: none;
    font-weight: 400;
    &:hover {
      opacity: 0.7;
    }
  }

  /* Timings row */
  .cmp-bh-store-listing__card-timings {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #75787B;
    font-weight: 400;
    svg {
      flex-shrink: 0;
    }
  }

  /* Shared sizing for DAM icon images */
  .cmp-bh-store-listing__card-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* Get Directions — bold, own line */
  .cmp-bh-store-listing__card-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #232426;
    text-decoration: none;
    margin-top: 4px;
  }

  /* ── NO RESULTS ── */
  .cmp-bh-store-listing__no-results {
    display: none;
    padding: 48px 20px;
    text-align: center;
  }

  .cmp-bh-store-listing__no-results-text {
    font-size: 15px;
    color: #696f75;
    margin: 0;
    line-height: 1.6;
  }

  /* ── FOOTER / LOAD MORE ── */
  .cmp-bh-store-listing__footer {
    display: flex;
    justify-content: center;
    padding: 28px 0 40px;
    padding-top: 40px;
  }

  .cmp-bh-store-listing__load-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 1px solid #E6E7EB;
    border-radius: 60px;
    font-family: Archivo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #202129;
    cursor: pointer;
    padding: 16px 32px;
    letter-spacing: 0.02em;

    &:hover {
      opacity: 0.7;
    }

    &[data-hidden] {
      display: none;
    }
    @media screen and (max-width:767px){
      font-size: 14px;
    }
  }

  .cmp-bh-store-listing__load-more-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* ── MOBILE ── */
  @media screen and (max-width: 767px) {
    padding: 0 16px 0;

    /* Stack top vertically */
    .cmp-bh-store-listing__top {
      flex-direction: column;
      gap: 0;
      margin-bottom: 0;
    }

    /* Header row: title left, chevron right */
    .cmp-bh-store-listing__header {
      flex: none;
      width: 100%;
      align-items: center;
      padding-bottom: 16px;
    }

    .cmp-bh-store-listing__title {
      font-size: 24px;
    }

    .cmp-bh-store-listing__subtitle {
      font-size: 12px;
      font-weight: 400;
      color: #808080;
    }

    /* Show toggle button on mobile */
    .cmp-bh-store-listing__toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cmp-bh-store-listing__image-wrap {
      flex: none;
      width: 100%;
    }

    .cmp-bh-store-listing__image {
      border-radius: 2px;
    }

    /* ── MOBILE COLLAPSED (default) ── */
    /* Image visible, body hidden, chevron points down */
    .cmp-bh-store-listing__image-wrap {
      display: block;
      min-width: unset;
    }

    .cmp-bh-store-listing__body {
      display: none;
    }

    .cmp-bh-store-listing__chevron {
      transform: rotate(180deg); /* points down = closed */
    }

    /* ── MOBILE EXPANDED ── */
    &.is-expanded {
      .cmp-bh-store-listing__image-wrap {
        display: none;
      }

      .cmp-bh-store-listing__body {
        display: block;
      }

      .cmp-bh-store-listing__chevron {
        transform: rotate(0deg); /* points up = open */
      }
    }

    /* Single-column cards with dividers */
    .cmp-bh-store-listing__grid {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .cmp-bh-store-listing__card {
      display: grid;
      grid-template-columns: auto auto 1fr;
      grid-template-areas:
        "name      name       name"
        "address   address    address"
        "timings   timings    timings"
        "phone     directions .";
      border: none;
      border-bottom: 1px solid #e8e8e8;
      padding: 30px 0;
      row-gap: 8px;
      column-gap: 30px;
    }

    .cmp-bh-store-listing__card-name {
      grid-area: name;
      font-size: 16px;
      font-weight: 400;
      margin-bottom: -8px;
    }

    .cmp-bh-store-listing__card-address {
      grid-area: address;
      margin-bottom: 5px;
    }

    .cmp-bh-store-listing__card-timings {
      grid-area: timings;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .cmp-bh-store-listing__card-phone {
      grid-area: phone;
      font-size: 14px;
      flex-direction: row-reverse;
      font-weight: 600;
      color: #232426;
    }

    /* Number hidden on mobile — only "Call us" label + icon shown */
    .cmp-bh-store-listing__card-phone-number {
      display: none;
    }

    .cmp-bh-store-listing__card-directions {
      grid-area: directions;
      font-size: 14px;
      margin-top: 0;
    }

    .cmp-bh-store-listing__footer {
      padding: 30px 0;
    }
  }
}
