/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 105:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .cards-container {
    max-width: 1318px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .card {
    background: #fff;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  .card:hover {
    box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
  }
  .card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .card-content {
    padding: 20px;
    text-align: center;
  }
  .card-content h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #222;
  }
  .card-content h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #8e4f0d;
    margin: 10px auto 0 auto;
  }
  .info {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
  }
  .info p { margin: 6px 0; }
  .info .highlight {
    color: #8e4f0d;
    font-weight: bold;
  }
  .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }
  .buttons a {
    flex: 1;
    text-align: center;
    background: #8e4f0d;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    font-weight: bold;
    transition: 0.3s;
  }
  .buttons a:first-child {
    margin-right: 10px;
  }
  .buttons a:hover {
    background: #e64a19;
  }
  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
    }
    .card {
      width: 100%;
      max-width: 400px;
    }
  }
</style>