/** Shopify CDN: Minification failed

Line 33:10 Expected identifier but found whitespace
Line 33:12 Unexpected "{"
Line 33:21 Expected ":"
Line 77:15 Expected identifier but found whitespace
Line 77:17 Unexpected "{"
Line 77:26 Expected ":"

**/




  .safety-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .safety-content-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    height: 100%;
  }

  .safety-label {
    color: {{ section.settings.accent_color }};
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
  }

  .safety-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
  }

  .safety-text {
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
  }

  /* Checklist Styling */
  .safety-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
  }

  .safety-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
  }

  .safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: {{ section.settings.accent_color }};
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  @media (max-width: 850px) {
    .safety-container {
      grid-template-columns: 1fr;
    }
    .safety-content-box {
      padding: 25px;
    }
  }

