/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 111:0 Unexpected "<"

**/

<style>
/* ===== Base Section ===== */
.barrel-storage-section {
  padding: 50px 16px;
}

.barrel-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #4f0e0e;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

/* ===== Heading Styling ===== */
.barrel-heading {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-family: 'Merriweather', serif;
}

.barrel-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 180px;
    width: 50%;
    height: 3px;
    background-color: #42b883;
}
/* ===== Intro Text ===== */
.barrel-intro {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ===== Content Styling ===== */
.barrel-content {
  text-align: left;
}

.barrel-text {
  font-size: 16px;
  color: white;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  transition: color 0.3s ease-in-out;
}

.barrel-text:hover {
  color: #42b883;
}
section.barrel-storage-section {
    padding: 20px;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .barrel-storage-section {
    padding: 40px 16px;
  }

  .barrel-heading {
    font-size: 28px;
  }

  .barrel-intro {
    font-size: 16px;
  }

  .barrel-content {
    padding: 0 20px;
  }
  .barrel-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 50%;
    height: 3px;
    background-color: #42b883;
}
}

/* ===== Tablet ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .barrel-heading {
    font-size: 32px;
  }

  .barrel-intro {
    font-size: 17px;
  }
}
</style>