/** Shopify CDN: Minification failed

Line 18:21 Expected identifier but found whitespace
Line 18:23 Unexpected "{"
Line 18:32 Expected ":"
Line 19:12 Expected identifier but found whitespace
Line 19:14 Unexpected "{"
Line 19:23 Expected ":"
Line 19:53 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-store-info (INDEX:19) */
.store-info-section {
    background-color: {{ section.settings.background_color }};
    padding: {{ section.settings.section_padding }}px 24px;
  }

  .store-info-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .store-info-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #3B6C83;
    margin: 0 0 32px;
    letter-spacing: 0.01em;
  }

  .store-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  @media screen and (max-width: 640px) {
    .store-info-grid {
      grid-template-columns: 1fr;
    }
  }

  .store-info-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(59, 108, 131, 0.2);
    padding: 24px 28px;
  }

  .store-info-card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3B6C83;
    margin: 0 0 16px;
  }

  .store-info-address p,
  .store-info-contact p {
    margin: 0 0 5px;
    font-size: 15px;
    color: #000000;
    line-height: 1.65;
  }

  .store-info-location-name {
    font-weight: 500;
  }

  .store-info-divider {
    width: 32px;
    height: 2px;
    background: #ed1c24;
    border-radius: 2px;
    margin: 14px 0;
  }

  .store-info-contact a {
    color: #000000;
    text-decoration: none;
  }

  .store-info-contact a:hover {
    color: #AB2328;
    text-decoration: underline;
  }

  .store-info-contact-label {
    display: inline-block;
    font-size: 12px;
    color: #616264;
    margin-right: 6px;
    min-width: 40px;
  }

  .store-info-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }

  .store-info-hours-table td {
    padding: 7px 0;
    border-bottom: 0.5px solid rgba(59, 108, 131, 0.1);
    color: #000000;
    vertical-align: middle;
  }

  .store-info-hours-table tr:last-child td {
    border-bottom: none;
  }

  .store-info-day {
    color: #616264;
    font-weight: 500;
    width: 44%;
  }

  .store-info-time {
    text-align: right;
  }

  .store-info-closed-row .store-info-day,
  .store-info-closed-row .store-info-time {
    color: #848689;
  }

  .store-info-closed-label {
    font-style: italic;
    color: #848689;
  }
/* END_SECTION:custom-store-info */