  /* Layout / responsivitet */
  .store-wrapper {
    display: grid;
    gap: 1.5rem;
    margin: 40px 20px;
  }

  @media (min-width: 768px) {
    .store-wrapper {
      grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
      align-items: stretch;
    }
  }

  .store-card {
    background: #ffffff;
    border: solid 1px #eaeaea;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .store-card-body {
    flex: 1;
  }

  .store-map iframe {
    border-radius: 10px;
  }

  .store-map {
    min-height: 500px;
  }

  /* Header / status */
  .store-header h2 {
    margin: 0;
    font-size: 1.25rem;
  }

  .store-header p {
    margin: 0.15rem 0 0;
    opacity: 0.75;
    font-size: 0.95rem;
  }

  .store-status-row {
    margin-top: 0.25rem;
  }

  .store-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .store-status-pill.open {
    background: #e5f6ea;
    color: #1b7f3b;
  }

  .store-status-pill.closed {
    background: #fbeaea;
    color: #b3261e;
  }

  .store-today {
    margin: 0.25rem 0 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  /* Liste med åbningstider */
  .store-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .store-hours-item {
    padding: 0.25rem 0;
    font-size: 0.95rem;
  }

  .store-hours-item.today {
    font-weight: 600;
  }

  .store-hours-daytime {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .store-hours-day {
    white-space: nowrap;
  }

  .store-hours-time {
    white-space: nowrap;
    opacity: 0.8;
  }

  .store-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
  }

  /* Link til Google + soft underline animation */
  .store-card-footer {
    margin-top: 0.5rem;
  }

  .store-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.05rem;
    color:#4639E1;
  }

  .store-google-link span {
    vertical-align: middle;
    font-weight: 400!important;
  }

  .store-google-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 0.7rem;
    font-weight: 700!important;
    opacity: 0.7;
  }

  .store-google-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0.3;
    transition: transform 220ms ease-out, opacity 220ms ease-out;
  }

  .store-google-link:hover::after,
  .store-google-link:focus-visible::after {
    transform: scaleX(1);
    opacity: 0.7;
  }


  /* TEST MODUL */

  #test-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-family: system-ui, sans-serif;
    z-index: 99999;
  }
  #test-panel h4 {
    margin: 0 0 10px;
    font-size: 15px;
  }
  #test-panel input,
  #test-panel button {
    font-size: 14px;
    padding: 6px 10px;
  }
  #test-panel button {
    cursor: pointer;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    margin-top: 6px;
    width: 100%;
  }