/** Shopify CDN: Minification failed

Line 21:21 Expected identifier but found whitespace
Line 21:23 Unexpected "{"
Line 21:32 Expected ":"
Line 32:16 Expected identifier but found whitespace
Line 32:18 Unexpected "{"
Line 32:25 Expected ":"
Line 41:16 Expected identifier but found whitespace
Line 41:18 Unexpected "{"
Line 41:25 Expected ":"
Line 70:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.gifting-cta {
    width: 100%;
    padding: 60px 20px;
    background-color: {{ section.settings.bg_color }};
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .gifting-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .gifting-cta__heading {
    font-family: {{ theme.font.serif }};
    font-size: 4rem;
    line-height: 1.2;
    font-weight: bold;
    color: #0C2340;
    margin-bottom: 16px;
  }

  .gifting-cta__subheading {
    font-family: {{ theme.font.sans }};
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: normal;
    color: #3C2317;
    margin: 0 auto 24px;  /* reduced from 32px to 24px */
    max-width: 800px;
  }

  .gifting-cta__button {
  display: inline-block;
  padding: 12px 32px;     /* reduced vertical padding */
  border-radius: 0;
  background-color: #0C2340;
  color: #FFFFFF;
  font-family: 'Typeka-Bold', serif;
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #0C2340;
  transition: all 0.2s ease;
}

.gifting-cta__button:hover {
  background-color: #532B1E; /* deep brown hover */
  color: #FFFFFF;
  border-color: #532B1E;
}
  }

  .gifting-cta__button:hover,
  .gifting-cta__button:focus {
    background-color: #FFFFFF;
    color: #0C2340;
    border-color: #0C2340;
  }

  /* Mobile consistency */
  @media (max-width: 1024px) {
    .gifting-cta {
      padding: 40px 16px;
    }
    .gifting-cta__heading {
      font-size: 2.25rem;
      margin-bottom: 12px;
    }
    .gifting-cta__subheading {
      font-size: 1.25rem;
      margin-bottom: 24px;
      padding: 0 8px;
    }
    .gifting-cta__button {
      display: block;
      width: 100%;
      padding: 12px 0;      /* match reduced vertical padding on mobile */
      font-size: 2rem;
      text-align: center;
    }
  }