/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 16:26 Unexpected "{"
Line 17:21 Expected identifier but found whitespace
Line 17:23 Unexpected "{"
Line 17:32 Expected ":"
Line 18:16 Expected identifier but found whitespace
Line 18:18 Unexpected "{"
Line 18:27 Expected ":"
Line 18:53 Expected ":"
... and 4 more hidden warnings

**/
.section-{{ section.id }} {
    background-color: {{ section.settings.bg_color }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    font-family: inherit;
    color: #1a1a1a;
  }

  .impression-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Top Hero Grid */
  .impression-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
  }

  .impression-hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .impression-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .impression-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .impression-hero-content {
    padding-left: 20px;
  }

  .impression-overline {
    display: block;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b58348;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .impression-heading {
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 15px 0;
    font-weight: 500;
    color: #0f0f0f;
  }

  .impression-subheading {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b58348;
    font-weight: 700;
    margin-bottom: 25px;
  }

  .impression-description {
    font-size: 18px;
    line-height: 1.5;
    color: #2c2c2c;
    margin-bottom: 35px;
    font-weight: 600;
    max-width: 520px;
  }

  .impression-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .impression-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .impression-btn-primary {
    background-color: #b58348;
    color: #ffffff;
    border: 1px solid #b58348;
  }

  .impression-btn-primary:hover {
    background-color: #986934;
    border-color: #986934;
  }

  .impression-btn-secondary {
    background-color: transparent;
    color: #b58348;
    border: 1px solid #cb9d62;
  }

  .impression-btn-secondary:hover {
    background-color: rgba(181, 131, 72, 0.05);
  }

  /* Bottom Feature Cards */
  .impression-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: stretch;
}

.impression-features-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px;
  box-sizing: border-box;
}
.impression-features-grid > div svg {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.impression-features-grid > div p {
  min-height: 45px;
  margin: 0;
}
  .impression-feature-card {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 15px;
    text-align: center;
    color: #ffffff;
  }

  .impression-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .impression-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .impression-card-placeholder {
    width: 100%;
    height: 100%;
    background: #444;
  }

  .impression-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  }

  .impression-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .impression-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #b58348;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .impression-custom-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .impression-card-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
  }

  .impression-card-text {
    font-size: 12px;
    line-height: 1.4;
    color: #e0e0e0;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 1100px) {
    .impression-features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 850px) {
    .impression-hero-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .impression-hero-content {
      padding-left: 0;
    }

    .impression-heading {
      font-size: 38px;
    }

    .impression-features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 500px) {
    .impression-features-grid {
      grid-template-columns: 1fr;
    }
    
    .impression-buttons {
      flex-direction: column;
      width: 100%;
    }

    .impression-btn {
      justify-content: center;
    }
  }