/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 160:0 Unexpected "<"

**/
<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }

  .barrel-guide {
    background-color: #4f0e0e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    font-family: "Karla", Sans-serif;
  }

  .header-container {
    display: flex;
    align-items: center; /* Vertically center logo and text */
    justify-content: center; /* Horizontally center the elements */
    flex-wrap: wrap; /* Allow wrapping for mobile screens */
    gap: 20px; /* Add space between elements */
  }

  .logo {
    width: 100%;
    height: auto;
    max-width: 150px;
  }

  .barrel-guide h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    position: relative; /* Required for positioning the underline */
    display: inline-block; /* Keeps the underline below the h1 */
    padding-bottom: 10px; /* Adds space for the underline */
  }

  /* Underline animation effect below h1 */
  .barrel-guide h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px; /* Thickness of the underline */
    background-color: red; /* Color of the underline */
    animation: underlineAnimation 2s forwards; /* Animate the underline on page load */
  }

  /* Keyframe animation for underline */
  @keyframes underlineAnimation {
    0% {
      width: 0;
    }
    100% {
      width: 100%; /* Expands the underline to the full width of the h1 */
    }
  }

  .barrel-guide h2 {
    font-size: 24px;
    color: white;
  }

  .highlight {
    color: #009688;
    font-weight: bold;
  }

  .barrel-guide p {
    font-size: 16px;
    color: white;
    line-height: 1.5;
    margin-top: 20px;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-family: "Karla", Sans-serif;
    background-image: url(/cdn/shop/files/Group-57.png?v=1753875527);
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile and Tablet Responsiveness */
  @media (max-width: 768px) {
    .barrel-guide {
      padding: 20px;
      margin: 30px auto;
    }

    .barrel-guide h1 {
      font-size: 24px;
    }

    .barrel-guide h2 {
      font-size: 20px;
    }

    .barrel-guide p {
      font-size: 14px;
    }

    .header-container {
      flex-direction: column; /* Stack elements vertically */
      text-align: center;
    }

    .logo {
      max-width: 120px; /* Adjust logo size on smaller screens */
    }
  }

  @media (max-width: 480px) {
    .barrel-guide {
      padding: 15px;
      margin: 20px auto;
    }

    .barrel-guide h1 {
      font-size: 22px;
    }

    .barrel-guide h2 {
      font-size: 18px;
    }

    .barrel-guide p {
      font-size: 14px;
    }

    .logo {
      max-width: 100px; /* Further reduce logo size for small screens */
    }
  }
</style>