/** Shopify CDN: Minification failed

Line 48:0 Unexpected "<"
Line 158:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
/* Center the row's content using flex */
  .row.no-gutters.justify-content-center {
    display: flex;
    justify-content: center;
  }

  /* Limit the video container width and center it */
  .box-video {
    max-width: 800px; /* Adjust as needed */
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  /* Ensure the banner image is responsive and centered */
  .box-video img.centered-banner {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
.storista-header {
    display: flex;
    width: 100%;
  }

  .storista-header-left {
    justify-content: start;
  }

  .storista-header-center {
    justify-content: center;
    margin: 2.5rem 0 1rem 0;
  }

  .storista-header-right {
    justify-content: end;
  }
<style>
  body{
    color:black;
  }
  /* Set all collections to the same height and width */
  .collection-item {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .collection-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 350px; /* Set the fixed height for each collection box */
    width: 100%;
    border: 2px solid #fff; /* White border for the box */
    padding: 15px;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .collection-box:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  }

  .collection-box .img_banner {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .collection-box img {
    object-fit: cover;
    width: 100%;
    height: 100%; /* Ensures the image covers the full area */
    border-radius: 5px;
  }

  .collection-box .banner_title {
    margin-top: 15px;
    text-align: center;
  }

  /* Updated Text Style */
  .collection-title {
    font-size: 18px;
    color: red; /* Black color for better contrast */
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }

  .collection-title {
    color: #EF1C23; /* Brand color on hover */
  }

  .btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #EF1C23; /* Your theme color */
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 50px; /* Fully rounded edges */
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
  }

  .btn-primary:hover {
    background-color: #c3141a; /* Darker shade of red on hover */
    color: #fff;
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow */
  }

  .btn-primary:active {
    transform: translateY(0); /* Reset effect when clicked */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  }

  /* Focus Effect */
  .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 5px 3px rgba(239, 28, 35, 0.6);
  }

  /* Mobile responsive button */
  @media (max-width: 768px) {
    .btn-primary {
      padding: 12px 24px;
      font-size: 14px;
    }

    .collection-box {
      height: 350px; /* Adjust height for mobile */
    }
  }
  </style>