/** Shopify CDN: Minification failed

Line 304:0 Unexpected "}"
Line 427:1 Expected identifier but found "."

**/
#immershop-wa-widget,
#immershop-wa-widget * { box-sizing: border-box; }

#immershop-wa-widget {
  --wa-green: #25d366;
  --wa-green-dark: #1ebe5d;
  --wa-header-a: #075e54;
  --wa-header-b: #128c7e;
  --wa-bg: #ffffff;
  --wa-chat-bg: #efeae2;
  --wa-text: #202c33;
  --wa-muted: #667781;
  --wa-border: rgba(17, 27, 33, .10);
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

#immershop-wa-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: 370px;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  background: var(--wa-bg);
  border: 1px solid var(--wa-border);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(11,20,26,.22), 0 4px 16px rgba(11,20,26,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

#immershop-wa-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.immershop-wa-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px 50px 16px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--wa-header-a), var(--wa-header-b));
}

.immershop-wa-avatar {
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 22px;
  box-shadow: 0 3px 12px rgba(0,0,0,.16);
}

.immershop-wa-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

.immershop-wa-header-content { min-width: 0; }
.immershop-wa-title {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.immershop-wa-subtitle {
  margin: 3px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  line-height: 1.3;
}

.immershop-wa-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.3;
}

.immershop-wa-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #7bff98;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(123,255,152,.2);
}

.immershop-wa-status-dot.is-offline {
  background: #f5c451;
  box-shadow: 0 0 0 3px rgba(245,196,81,.2);
}

#immershop-wa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  width: 30px;
  height: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

#immershop-wa-close:hover { background: rgba(255,255,255,.14); }

.immershop-wa-chat {
  min-height: 210px;
  padding: 18px 16px 20px;
  background-color: var(--wa-chat-bg);
  background-image: radial-gradient(rgba(11,20,26,.035) 1px, transparent 1px);
  background-size: 18px 18px;
}

.immershop-wa-message {
  position: relative;
  width: fit-content;
  max-width: 90%;
  padding: 11px 13px 9px;
  color: var(--wa-text);
  background: #fff;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 1px 1px rgba(11,20,26,.08);
  font-size: 15px;
  line-height: 1.45;
}

.immershop-wa-message::before {
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  content: "";
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}

.immershop-wa-message p { margin: 0 0 8px; }
.immershop-wa-message p:last-child { margin-bottom: 0; }

.immershop-wa-product {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 9px;
  background: #f7f8f8;
  border: 1px solid rgba(17,27,33,.08);
  border-radius: 9px;
}

.immershop-wa-product-image {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  background: #fff;
  border-radius: 7px;
}

.immershop-wa-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immershop-wa-product-info { min-width: 0; }

.immershop-wa-product-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--wa-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.immershop-wa-product-price {
  margin-top: 5px;
  color: var(--wa-header-a);
  font-size: 14px;
  font-weight: 800;
}

.immershop-wa-stars {
  margin-top: 4px;
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 1px;
}

.immershop-wa-benefits {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--wa-muted);
  font-size: 12px;
}

.immershop-wa-benefits span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.immershop-wa-footer {
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid var(--wa-border);
}

.immershop-wa-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  background: linear-gradient(180deg, #32e56d, #20c85c);
  border-radius: 28px;
  box-shadow: 0 7px 18px rgba(37,211,102,.26);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.immershop-wa-button:hover {
  color: #fff !important;
  background: var(--wa-green-dark);
  transform: translateY(-1px);
}

.immershop-wa-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

#immershop-wa-trigger {
  position: relative;
  display: flex;
  width: 66px;
  height: 66px;
  margin-left: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  background: var(--wa-green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(11,20,26,.24), 0 4px 10px rgba(11,20,26,.12);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}


}

#immershop-wa-trigger:hover {
  background: var(--wa-green-dark);
  transform: translateY(-2px) scale(1.03);
}

#immershop-wa-trigger svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

#immershop-wa-trigger::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 2px solid rgba(37,211,102,.35);
  border-radius: 26px;
  animation: immershopWaPulse 2.2s infinite;
}

.immershop-wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  display: flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: #e53935;
  border: 2px solid #fff;
  border-radius: 50%;
}

#immershop-wa-tooltip {
  position: absolute;
  right: 78px;
  bottom: 9px;
  width: max-content;
  max-width: 220px;
  padding: 10px 13px;
  color: var(--wa-text);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(11,20,26,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  font-size: 13px;
  line-height: 1.35;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

#immershop-wa-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

#immershop-wa-tooltip::after {
  position: absolute;
  right: -6px;
  bottom: 17px;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  transform: rotate(45deg);
}

@keyframes immershopWaPulse {
  0% { opacity: .8; transform: scale(.92); }
  70%, 100% { opacity: 0; transform: scale(1.22); }
}

@keyframes immershopWaShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
  75% { transform: rotate(-4deg); }
}

#immershop-wa-trigger.is-shaking { animation: immershopWaShake .5s ease; }

@media screen and (max-width: 749px) {
  #immershop-wa-widget { right: 15px; bottom: 15px; }
  #immershop-wa-panel {
    bottom: 74px;
    width: min(340px, calc(100vw - 30px));
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    border-radius: 16px;
  }
  .immershop-wa-header { min-height: 78px; padding: 13px 44px 13px 14px; }
  .immershop-wa-avatar { width: 48px; height: 48px; flex-basis: 48px; }
  .immershop-wa-chat { min-height: 170px; padding: 16px 14px 18px; }
  #immershop-wa-trigger { width: 60px; height: 60px; }
  #immershop-wa-trigger svg { width: 32px; height: 32px; }
  #immershop-wa-tooltip { right: 70px; bottom: 7px; max-width: 180px; }
}

#immershop-wa-trigger:focus-visible,
#immershop-wa-close:focus-visible,
.immershop-wa-button:focus-visible {
  outline: 3px solid rgba(37,211,102,.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  #immershop-wa-panel,
  #immershop-wa-trigger,
  #immershop-wa-tooltip,
  .immershop-wa-button { transition: none; }
  #immershop-wa-trigger::after,
  #immershop-wa-trigger.is-shaking { animation: none; }
}

.immershop-wa-privacy { margin: 11px 0 0; color: #9aa3a8; font-size: 11px; text-align: center; }
..immershop-wa-icon {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: cover;
  pointer-events: none;
  border-radius: 22px;
}
