/** Shopify CDN: Minification failed

Line 30:0 Unexpected "}"

**/
.phone-button-wrapper {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.pretty-phone-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-color: #008DFF;
  color: white;
  border: 2px solid #1F1F21;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin-left: 20px;  /* space before the phone icon */
}

}

.pretty-phone-button:hover {
  background-color: #155a96;
  transform: translateY(-2px);
}

.phone-icon {
  color: black !important;
}



.pretty-phone-button:hover .phone-icon {
  transform: translateX(6px);
}

/* Mobile only */
@media (max-width: 480px) {
  .phone-button-wrapper {
    padding: 0.75rem 1rem;
  }

  .pretty-phone-button {
    width: 48px;           /* make it square for the icon only */
    padding: 0.75rem;      /* smaller padding */
    justify-content: center;
    font-size: 1rem;
    gap: 0;
    border-radius: 50%;    /* make it round */
  }

  /* Hide the full phone number text */
  .pretty-phone-button .phone-text {
    display: none;
  }
}
