/** Shopify CDN: Minification failed

Line 20:24 Unterminated string token
Line 72:18 Expected identifier but found whitespace
Line 72:24 Unexpected ";"
Line 133:0 Unexpected "}"

**/
/* Section Styling */

div#shopify-section-template--17226898833452__mike_sliding_icons_BKXe3j {
    margin-top: 1rem;
}

#mike-sliding-icons-section {
  padding: 0;
  overflow: hidden;
  height: auto;
  margin: 0;
  background-color: red'
}

/* Flex Container Styling */
.mike-sliding-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: top;
  gap: 1.5rem;
  overflow-x: auto; /* Allows scrolling for small screens */
  scrollbar-width: none; /* Hide scrollbars for cleaner look */
  height: 10rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top:0.5rem;
  min-height: 15rem;
}

.mike-sliding-flex-container::-webkit-scrollbar {
  display: none; /* Hide scrollbars on WebKit browsers */
}

/* Icon Styling */
.mike-sliding-icon {
  position: relative; /* Establish positioning context */
  width: 146px;
  height: 146px;
  flex-shrink: 0; /* Prevent icons from shrinking */
  background-size: cover;
  background-position: center;
  border-radius: 50%; /* Rounded icons */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  background-color: darkgray; /* Fallback color */
  overflow: hidden; /* Ensure content stays inside */
  border: 3px solid #a64d79; /* Border from original design */
}

/* Background Image Layer
.mike-sliding-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit; /* Use the background image */
  background-size: cover;
  background-position: center;
  z-index: 2; /* Image appears above fallback text */
}
 */
/* Text Layer (Fallback) */
.mike-sliding-icon a {
  position: relative; /* Text stays on top of background */
  z-index: 3;
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding: 10px;
  word-wrap: break-word;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Improve readability */
  display: block;
}

.mike-sliding-icon img {
    width: auto;  /* Maintain natural width */
    height: auto; /* Maintain natural height */
    max-width: 100%;  /* Ensure responsiveness */
    max-height: 100%; /* Prevent overflow */
    aspect-ratio: 1 / 1; /* Enforce a square shape */
    object-fit: contain; /* Ensure full visibility inside the box */
    display: block; /* Remove inline spacing */
    margin: auto; /* Center inside the container */
}

/* Hover Effect (Desktop Only) */
@media (hover: hover) and (pointer: fine) {
  .mike-sliding-icon:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
  }
}

/* Mobile-Specific Styling */
@media (max-width: 768px) {
  .mike-sliding-icon {
    width: 100px;
    height: 100px;
    font-size: 1.1rem;
  }

  
    /* Flex Container Styling */
  .mike-sliding-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: top;
  gap: 1.5rem;
  overflow-x: auto; /* Allows scrolling for small screens */
  scrollbar-width: none; /* Hide scrollbars for cleaner look */
  height: 10rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top:0.5rem;
  min-height: 7rem;
}
  }
}
