/** Shopify CDN: Minification failed

Line 14:0 Unexpected "}"

**/
/*PRODUCTS  */

.product--title {
  font-size: 20px;
}
.product--price {
  font-size: 17px;
}
}

.featured-collection--title {
  text-align: left;
}

.footer-logo-img {
  max-width: 150px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
}

.footer-logo {
  text-align: center; /* Center the logo */
  margin-bottom: 10px; /* Add space below the logo */
}

.footer-social-icons {
  display: flex; /* Arrange icons in a row */
  justify-content: flex-start; /* Align icons to the left */
  align-items: center; /* Vertically align icons */
  gap: 5px; /* Reduce space between icons */
  margin-top: 10px; /* Space between logo and icons */
  margin-left: 20px; /* Adjust left margin for positioning */
}

.footer-social-icons img {
  width: 35px; /* Standard icon size */
  height: 35px; /* Standard icon size */
  object-fit: contain; /* Ensure proper scaling of the SVG */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-social-icons img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

