/** Shopify CDN: Minification failed

Line 138:79 Expected "]" to go with "["
Line 138:80 Expected identifier but found "4"
Line 138:88 Expected ":"

**/


/* CSS from section stylesheet tags */
.tab-wrapper {
    background-color: #f1f1f1;
    margin: 3rem 0;
    min-height: 450px;
  }
  .product-info-tabs {
    margin: 0rem auto;
    padding: 3rem 1rem;
    max-width: 1400px;
  }
  .product-info-tabs__list {
    display: flex;
    border-bottom: 1px solid #ddd;
    list-style: none;
    padding: 0; margin: 0 0 1rem;
    overflow-x: auto;
    text-wrap: nowrap;
  }
  .product-info-tabs__item {
    margin-right: 2rem;
  }
  .product-info-tabs__button {
    background: none;
    border: none;
    padding: 0.5rem 0;
    font: inherit;
    cursor: pointer;
    border-bottom: 2px solid transparent;
  }
  .product-info-tabs__button.is-active {
    border-color: #ff4646;
    font-weight: bold;
  }
  .product-info-tabs__panel {
    animation: fade-in 0.2s ease-out;
  }
  @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
/* Container */
  .store-locations {
    padding: 4rem 0;
    text-align: center;
  }
  .store-locations__heading {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
  }

  /* Block Wrapper: two cards side-by-side */
  .store-locations__blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 3rem;
    overflow-x: auto;
  }

  /* Each Block holds two cards */
  .store-locations__block {
    width: 400px;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  /* Info Card */
  .store-locations > .store-locations__blocks > div:nth-child(1) > .store-info-card {
    background-color: #fffcf5;
  }
  .store-locations > .store-locations__blocks > div:nth-child(2) > .store-info-card {
    background-color: #fff8f8;
  }
  .store-info-card {
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .store-info-card__title {
    font-size: 2.25rem;
    margin: 0 0.5rem;
    font-weight: 600;
  }
  .store-info-card__address {
    font-size: 1.8rem;
    color: var(--color-muted, #555);
    margin: 1rem;
  }
  .store-info-card__call-btn {
    display: inline-block;
    width: 200px;
    margin: 0 auto;
    background: var(--color-primary, #e63946);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
  }
  .store-info-card__call-btn:hover {
    opacity: 0.9;
  }

  /* Map Card */
  .store-map-card {
    border-radius: 1.5rem;
    padding: 0;
    margin-top: 2rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: start;
  }
  .store-map-card__img-wrapper {
    width: 45%;
    position: relative;
    background-color: #fff4de;
  }
  .store-map-card__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;  /* preserve aspect ratio */ :contentReference[oaicite:4]{index=4}
  }
  .map-info-card {
    display: flex;
    padding: 15px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .store-map-card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
  }
  .store-map-card__map-btn {
    display: inline-block;
    background: var(--color-primary, #e63946);
    font-size: 1.3rem;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
  }
  .store-map-card__map-btn:hover {
    opacity: 0.9;
  }

    /* Stack vertically on small screens */
  @media (max-width: 768px) {
  .store-locations {
    padding: 2rem 0;
    text-align: center;
  }
  .store-locations__blocks {
    justify-content: start;
    gap: 1rem;
  }
  .store-locations__block {
    min-width: 325px;
  }
  .store-info-card__title {
    font-size: 2rem;
  }
  .store-info-card__address {
    font-size: 1.5rem;
  }
      /* Info Card */
  .store-info-card {
    padding: 2rem;
  }

  }