/** Shopify CDN: Minification failed

Line 169:0 Unexpected "<"
Line 193:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.promo-category {
	margin-top: 1em;
	margin-bottom: 2em;
}

.promo-category img {
	width: 100%;
}

.homepage-categories {
	padding: 0 1em;
	max-width: 1280px;
	margin: 0 auto;
	display: table;
	text-align: center;
}

.homepage-category {
	width: 16.5%;
	max-width: 16.5%;
	padding: 4px;
	display: inline-table;
	text-align: center;
    margin-bottom: 2em;
}

.homepage-category img {
	width: 100%;
}

.category-tags {
	margin-top: 0.5em;
}

.category-tag {
	color: black !important;
	text-decoration: none !important;
}

.category-tag:hover {
	opacity: 0.2;
}

.category-button button {
    display: block;
    margin: auto;
	width: 100%;
    max-width: 200px;
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    padding: 7px;
    font-size: 1em;
    background: #ca3433;
    border: none;
    margin-top: 0.5em;
}

.category-button button:hover {
	opacity: 0.5;
}


@media (max-width: 1400px) {
  .homepage-category {
      width: 32%;
      max-width: 32%;
  }
}

@media (max-width: 768px) {
  .category-tags {
      display: none;
  }

  .homepage-category {
      max-width: 49%;
      width: 49%;
	  margin-bottom: 0.5em;
  }

  .category-button button {
    font-size: 0.8em;
	width: 100%;
	max-width: unset;
  }
}
/* Add your CSS styles here */
  .flip-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .flip-card {
    background-color: transparent;
    margin-bottom: 20px;
    flex: 0 1 calc(16.66% - 20px);
    perspective: 1000px;
  }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }

  .flip-card-front {
    background-color: #fff;
    color: black;
  }

  .flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
  }

  .buy-now-button {
    background-color: #f1c40f;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
  }

  /* Responsive adjustments */
  @media (max-width: 991px) {
    .flip-card {
      flex: 0 1 calc(33.33% - 20px);
    }
  }

  @media (max-width: 767px) {
    .flip-card {
      flex: 0 1 calc(50% - 20px);
    }
  }
/* Add your CSS styles here */
  .map-container {
    width: 100%;
    height: 500px; /* You can change the height as needed */
  }
<style>
  .square-product-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* This creates the square aspect ratio */
    overflow: hidden;
  }
  .square-product-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the div without distortion */
  }
  .square-product-container a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px; /* Hide link text */
  }
</style>