/** Shopify CDN: Minification failed

Line 351:56 Unexpected "{"

**/
/* ====== WhatsApp Chat Widget ====== */

/* Floating Button */
wa-chat {
  position: fixed;
  z-index: var(--wa-chat-z, 2147483645);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.15s ease-in-out;
}

@media screen and (max-width: 749px) {
  wa-chat:not(.wa-chat--left) {
    bottom: calc(var(--wa-chat-offset-y-mobile, 20px) + var(--floating-safe-bottom, 0px));
    right: var(--wa-chat-offset-x-mobile, 16px);
  }
  wa-chat.wa-chat--left {
    bottom: calc(var(--wa-chat-offset-y-mobile, 20px) + var(--floating-safe-bottom, 0px));
    left: var(--wa-chat-offset-x-mobile, 16px);
  }
}

@media screen and (min-width: 750px) {
  wa-chat:not(.wa-chat--left) {
    bottom: calc(var(--wa-chat-offset-y-desktop, 20px) + var(--floating-safe-bottom, 0px));
    right: var(--wa-chat-offset-x-desktop, 20px);
  }
  wa-chat.wa-chat--left {
    bottom: calc(var(--wa-chat-offset-y-desktop, 20px) + var(--floating-safe-bottom, 0px));
    left: var(--wa-chat-offset-x-desktop, 20px);
  }
}

.wa-chat__btn {
  pointer-events: auto;
  width: var(--wa-chat-btn-size, 52px);
  height: var(--wa-chat-btn-size, 52px);
  border-radius: 50%;
  border: none;
  background: var(--wa-chat-btn-bg, #2a534b);
  color: var(--wa-chat-btn-color, #ffffff);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(42, 83, 75, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  position: relative;
}

.wa-chat__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-chat__btn:active {
  transform: scale(0.95);
}

.wa-chat__btn-icon {
  width: 72%;
  height: 72%;
  display: block;
}

/* Pulse animation ring */
.wa-chat__btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-chat-pulse 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes wa-chat-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0; }
}

/* ====== Overlay ====== */
.wa-chat__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: auto;
}

.wa-chat__overlay--active {
  opacity: 1;
  visibility: visible;
}

/* ====== Modal ====== */
.wa-chat__modal {
  background: #fff;
  border-radius: 16px;
  width: var(--wa-chat-modal-width, 380px);
  max-width: calc(100vw - 2rem);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: auto;
}

.wa-chat__modal--active {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ====== Header ====== */
.wa-chat__modal-header {
  background: #075E54;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.wa-chat__modal-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wa-chat__modal-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wa-chat__modal-avatar svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.wa-chat__modal-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wa-chat__modal-header-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wa-chat__modal-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-chat__modal-status {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
}

.wa-chat__modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.wa-chat__modal-close:hover {
  opacity: 1;
}

/* ====== Body (Messages) ====== */
.wa-chat__modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 15 L30 25 L25 15 Z' fill='%23ffffff' opacity='0.4'/%3E%3C/svg%3E");
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.wa-chat__message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.wa-chat__message--bot {
  align-self: flex-start;
}

.wa-chat__message--quick {
  margin-top: 4px;
}

.wa-chat__message-bubble {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-chat__message--bot .wa-chat__message-bubble {
  border-top-left-radius: 2px;
}

.wa-chat__message-bubble p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #303030;
}

.wa-chat__message-time {
  font-size: 10.5px;
  color: #999;
  margin-top: 3px;
  padding-left: 14px;
}

/* ====== Footer ====== */
.wa-chat__modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.wa-chat__modal-send {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.wa-chat__modal-send:hover {
  background: #1da851;
  transform: scale(1.02);
}

.wa-chat__modal-send svg {
  width: 16px;
  height: 16px;
}

/* ====== Responsive ====== */
@media screen and (max-width: 749px) {
  .wa-chat__modal {
    width: var(--wa-chat-modal-width-mobile, min(340px, calc(100vw - 2rem)));
    max-height: 85vh;
    border-radius: 12px;
  }

  .wa-chat__modal-body {
    min-height: 160px;
    padding: 16px;
  }
}

@media screen and (max-width: 480px) {
  .wa-chat__overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .wa-chat__modal {
    width: calc(100vw - 1rem);
    max-height: 90vh;
  }
}

/* ====== Reduced Motion ====== */
@media (prefers-reduced-motion: reduce) {
  .wa-chat__btn,
  .wa-chat__btn::before,
  .wa-chat__overlay,
  .wa-chat__modal {
    transition: none;
    animation: none;
  }
}

/* ====== Cart Drawer Compatibility ====== */
body.mini-cart--open wa-chat.wa-chat,
body.mini-cart--opening wa-chat.wa-chat,
body.mini-cart--closing wa-chat.wa-chat,
body:has(cart-drawer.drawer.active) shopify-chat,
body:has(cart-drawer.drawer.active) shopify-agent,
body:has(cart-drawer.drawer.active) wa-chat.wa-chat {
  display: none !important;
}

/* Hide floating elements when cart drawer is open */
body.mini-cart--open .scroll-to-top-btn,
body.mini-cart--opening .scroll-to-top-btn,
body.mini-cart--closing .scroll-to-top-btn,
body:has(cart-drawer.drawer.active) .scroll-to-top-btn, {
  display: none !important;
}

body:has(.mobile-facets__wrapper details[open]) wa-chat.wa-chat {
  display: none !important;
}
