/** Shopify CDN: Minification failed

Line 153:19 Expected identifier but found whitespace
Line 153:21 Unexpected "{"
Line 153:28 Expected ":"
Line 164:8 Expected identifier but found whitespace
Line 164:10 Unexpected "{"
Line 164:17 Expected ":"

**/
/* ===================== */
/* 1) Trigger Button     */
/* ===================== */




.ai-share-button-sharebtn {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.ai-share-button-sharebtn svg {
  width: 24px;
  height: 24px;
  color: var(--color-foreground, #000);
}

/* ===================== */
/* 2) Overlay            */
/* ===================== */
.ai-share-overlay-sharebtn {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.ai-share-overlay-sharebtn.active {
  opacity: 1; visibility: visible;
}

/* ===================== */
/* 3) Slide-up Panel     */
/* ===================== */
.ai-share-panel-sharebtn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
.ai-share-panel-sharebtn.active {
  transform: translateY(0);
}

/* ===================== */
/* 4) Panel Header       */
/* ===================== */
.ai-share-panel-header-sharebtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.ai-share-panel-title-sharebtn {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.ai-share-panel-close-sharebtn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

/* ===================== */
/* 5) Icon Options       */
/* ===================== */
.ai-share-options-sharebtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.ai-share-option-sharebtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-foreground, #333);
}
.ai-share-option-icon-sharebtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.ai-share-option-icon-sharebtn svg {
  width: 24px;
  height: 24px;
  color: var(--color-foreground, #000);
}
.ai-share-option-label-sharebtn {
  font-size: 13px;
  margin: 0;
}

/* ===================== */
/* 6) Copy-Link Button   */
/* ===================== */
.ai-share-copy-link-sharebtn {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--color-foreground, #333);
  border-radius: 8px;
  background: #fff;
  color: var(--color-foreground, #333);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  gap: 8px;
}
.ai-share-copy-link-sharebtn:hover {
  background: #f5f5f5;
}




/* Icon background circles */
.ai-share-option-icon-sharebtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: {{ block.settings.option_background_color }};
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

/* SVG inside icon */
.ai-share-option-icon-sharebtn svg {
  width: 24px;
  height: 24px;
  color: {{ block.settings.option_icon_color }};
}




/* ===================== */
/* 7) Feedback Toast     */
/* ===================== */
.ai-share-feedback-sharebtn {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-foreground, #333);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1001;
}
.ai-share-feedback-sharebtn.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ===================== */
/* 3) Panel (mobile + desktop) */
/* ===================== */
.ai-share-panel-sharebtn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}
.ai-share-panel-sharebtn.active {
  transform: translateY(0);
  opacity: 1;
}

/* Desktop (≥768px): switch to centered modal */
@media screen and (min-width: 768px) {
  .ai-share-panel-sharebtn {
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    border-radius: 12px;
    width: 500px;
    max-width: 90%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
  .ai-share-panel-sharebtn.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

