/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 219:0 Unexpected "<"

**/

<style>
 /* General page styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

.barrel-size-guide {
  background-color: #fff;
  padding: 40px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.heading-wrap {
  text-align: center;
  font-size: 36px;
  color: black;
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0;
  animation: fadeInText 1s 0.5s forwards;
}

.intro-text-wrap {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: black;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInText 1s 1s forwards;
}

/* Wrapper for table */
.table-wrapper {
  overflow-x: auto; /* Ensures table is scrollable on mobile devices */
}

/* Table Styles */
.barrel-table {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-spacing: 0;
}

.barrel-table th,
.barrel-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.barrel-table th {
  background-color: #4f0e0e;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.barrel-table td {
  background-color: #f9f9f9;
  font-size: 16px;
  color: black;
}

.barrel-table td:first-child {
  font-weight: bold;
}

/* Hover effect on rows */
.barrel-item:hover {
  background-color: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Animations for rows */
.barrel-item {
  opacity: 0;
  animation: fadeInRow 1s forwards;
}

.barrel-item:nth-child(1) {
  animation-delay: 0.5s;
}
.barrel-item:nth-child(2) {
  animation-delay: 0.7s;
}
.barrel-item:nth-child(3) {
  animation-delay: 0.9s;
}
.barrel-item:nth-child(4) {
  animation-delay: 1.1s;
}
.barrel-item:nth-child(5) {
  animation-delay: 1.3s;
}
.barrel-item:nth-child(6) {
  animation-delay: 1.5s;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInRow {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Barrel image styling */
.barrel-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.barrel-item:hover .barrel-image {
  transform: scale(1.1);
}

/* Mobile view: make the table stack instead of scrollable */
@media (max-width: 768px) {
  .barrel-table {
    display: block;
    /* Remove horizontal scrolling */
    width: 100%;
    box-sizing: border-box;
  }

  .barrel-table th, .barrel-table td {
    padding: 12px;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .barrel-image {
    width: 200px;  /* Adjust size to fit better */
    height: 200px;
    margin: 10px 0;
    object-fit: cover;
  }

  .barrel-item {
    display: block;
    margin-bottom: 20px;
    text-align: left;
  }

  .barrel-table th {
    background-color: #4f0e0e;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    padding: 10px;
  }

  .barrel-table td {
    background-color: #f9f9f9;
    font-size: 14px;
    color: black;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
  }

  .barrel-table td:first-child {
    font-weight: bold;
  }
}

</style>



