/** Shopify CDN: Minification failed

Line 39:0 Unexpected "{"
Line 39:1 Expected identifier but found "%"
Line 39:37 Expected identifier but found "%"
Line 79:0 Unexpected "{"
Line 79:1 Expected identifier but found "%"
Line 79:44 Expected identifier but found "%"
Line 85:0 Unexpected "{"
Line 85:1 Expected identifier but found "%"
Line 85:26 Unexpected "-"
Line 85:53 Expected identifier but found "%"
... and 7 more hidden warnings

**/
.popup.popup--callback {
  --width: 100%;
  --max-width: 540px;
  z-index: 10000;
}

.popup.popup--callback .popup__content {
  padding: 30px;
  width: 100%;
  max-width: var(--max-width);
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.popup.popup--callback .popup__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

{% comment %}Floating Trigger Button{% endcomment %}
.callback-trigger-btn {
  position: fixed;
  bottom: 50px;
  left: 50px;
  z-index: 10001;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  border: var(--button-border-width) solid var(--button-border-color);
  border-radius: var(--button-border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.callback-trigger-btn--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.callback-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.callback-trigger-btn:active {
  transform: translateY(0);
}

{% comment %}Hide button when popup is open{% endcomment %}
popup-dialog[aria-hidden="false"] ~ .callback-trigger-btn {
  display: none !important;
  pointer-events: none;
}

{% comment %}Close Button - Hidden until popup opens{% endcomment %}
.popup__close {
  position: sticky;
  top: 0;
  right: 0;
  float: right;
  text-align: center;
  color: var(--color--text-lighter);
  display: block;
  font-size: 24px;
  width: 42px;
  height: 42px;
  line-height: 44px;
  background: white;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  z-index: 1001;
  margin-bottom: 10px;
}

.popup__close:hover {
  color: var(--color--text);
}

.popup__close:focus {
  outline: 2px solid var(--color--text);
  outline-offset: 2px;
}

{% comment %}Custom Content Container{% endcomment %}
.callback-pop__custom-content {
  width: 100%;
  padding: 20px;
}
.callback-div {
  border-width: 2px;
  border-style: solid;
  border-color: #333;
  padding: 20px;
}

.callback-pop__custom-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.callback-pop__custom-content form {
  width: 100%;
}

{% comment %}Mobile - Hide popup and button{% endcomment %}
@media (max-width: 47.9275em) {
  .callback-pop {
    display: none !important;
  }

  .callback-trigger-btn {
    display: none !important;
  }
}