/** Shopify CDN: Minification failed

Line 93:25 Expected ":"

**/
/* =========================================================
   WISHLIST SIDEBAR — Redesign Editorial
   Paleta: Creme / Branco / Preto
   Adaptado do wishlist.css para o #ws-sidebar custom
========================================================= */

/* ── Variáveis ── */
#ws-sidebar {
  --w-bg:              #faf9f7;
  --w-bg-card:         #ffffff;
  --w-border:          #e8e4df;
  --w-border-dark:     #1a1a1a;
  --w-text-primary:    #1a1a1a;
  --w-text-secondary:  #7a7672;
  --w-text-muted:      #b0aba4;
  --w-accent:          #1a1a1a;
  --w-accent-hover:    #333;
  --w-error:           #c0392b;
  --w-success:         #2c6e49;
  --w-radius:          2px;
  --w-transition:      0.18s ease;
}

/* ── Drawer principal ── */
#ws-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: 100vw;
  background: var(--w-bg);
  border-left: 1px solid var(--w-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  font-family: inherit;
  box-sizing: border-box;
}
#ws-sidebar * {
  box-sizing: border-box;
}
#ws-sidebar.ws-open {
  transform: translateX(0);
}

/* ── Header ── */
#ws-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--w-border);
  flex-shrink: 0;
  background: var(--w-bg);
}
#ws-title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--w-text-primary);
  margin: 0;
}
#ws-count {
  font-size: 11px;
  color: var(--w-text-muted);
  letter-spacing: 0.06em;
  margin: 4px 0 0;
}
#ws-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--w-text-primary);
  opacity: 0.5;
  transition: opacity var(--w-transition);
  padding: 0;
}
.product-card-wishlist-btn {
  z-index: 3 !important;e

}
#ws-close:hover {
  opacity: 1;
}

/* ── Body (lista de produtos) ── */
#ws-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#ws-body::-webkit-scrollbar {
  display: none;
  width: 0;
}

/* ── Card de produto ── */
.ws-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--w-border);
  background: transparent;
}
.ws-card:last-child {
  border-bottom: none;
}

/* ── Imagem ── */
.ws-card-img {
  width: 88px;
  min-width: 88px;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: var(--w-radius);
  object-fit: cover;
  background: #f0ede8;
  display: block;
}


/* ── Info (coluna direita) ── */
.ws-card-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ws-card-name {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--w-text-primary);
  text-decoration: none;
  line-height: 1.4;
  margin: 0 0 5px;
  overflow-wrap: anywhere;
}
.ws-card-name:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ws-card-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--w-text-secondary);
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  line-height: 1.3;
}
.ws-card-compare {
  font-size: 11px;
  color: var(--w-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

/* ── Grelha de variantes (tamanhos) ── */
.ws-variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 12px;
}
.ws-variant-grid button {
  position: relative;
  flex: 0 0 auto;
  min-width: 40px;
  height: 32px;
  padding: 0 9px;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  background: #fff;
  color: var(--w-text-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--w-transition), background var(--w-transition), color var(--w-transition);
  text-align: center;
}
.ws-variant-grid button:hover:not(.ws-sold-out) {
  border-color: var(--w-border-dark);
  background: #000000;
}
.ws-variant-grid button.ws-active {
  background: var(--w-accent);
  border-color: var(--w-accent);
  color: #fff;
}
.ws-variant-grid button.ws-sold-out {
  background: #f5f4f2;
  border-color: var(--w-border);
  color: var(--w-text-muted);
  cursor: not-allowed;
  opacity: 1;
}
.ws-variant-grid button.ws-sold-out::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  background: #ccc8c2;
  transform: rotate(-12deg);
}

/* ── Fallback: select de variante (produtos sem variantes de tamanho) ── */
.ws-variant-select-wrap {
  margin: 0 0 12px;
}
.ws-variant-select-wrap select {
  font-size: 12px;
  padding: 5px 24px 5px 8px;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  background: #fff;
  color: var(--w-text-primary);
  cursor: pointer;
  outline: none;
  transition: border-color var(--w-transition);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  width: 100%;
}
.ws-variant-select-wrap select:focus {
  border-color: var(--w-border-dark);
}

/* ── Linha ATC: qty + botões ── */
.ws-atc-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--w-border);
}

/* ── Stepper de quantidade ── */
.ws-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ws-qty-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w-text-muted);
  white-space: nowrap;
}
.ws-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  overflow: hidden;
  height: 32px;
  background: #fff;
}
.ws-qty-step {
  flex-shrink: 0;
  width: 20px;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--w-bg);
  color: var(--w-text-primary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background var(--w-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-qty-step:hover { background: var(--w-border); }
.ws-qty-step:active { background: #ddd9d3; }
.ws-qty-input {
  width: 30px;
  height: 100%;
  padding: 0 4px;
  border: none;
  border-left: 1px solid var(--w-border);
  border-right: 1px solid var(--w-border);
  border-radius: 0;
  background: #fff;
  color: var(--w-text-primary);
  font-size: 12px;
  text-align: center;
  -moz-appearance: textfield;
  outline: none;
}
.ws-qty-input::-webkit-outer-spin-button,
.ws-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Botão Add to Cart ── */
.ws-btn-atc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  height: 32px;
  padding: 0 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--w-transition), border-color var(--w-transition);
  background-color: #2C7653;
}


.ws-btn-atc:hover:not([disabled]) {
  background: var(--w-accent-hover);
  border-color: var(--w-accent-hover);
}
.ws-btn-atc[disabled] {
  opacity: 0.55;
  cursor: wait;
}
.ws-btn-atc.ws-atc-loading {
  background: #555;
  border-color: #555;
  cursor: wait;
}
.ws-btn-atc.ws-atc-success {
  background: var(--w-success);
  border-color: var(--w-success);
}

/* ── Botão Remover ── */
.ws-btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--w-text-muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--w-transition);
}
.ws-btn-remove:hover {
  color: var(--w-error);
}

/* ── Mensagem de erro por card ── */
.ws-card-error {
  display: none;
  margin: 6px 0 0;
  color: var(--w-error);
  font-size: 10px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  grid-column: 1 / -1;
}

/* ── Estado vazio ── */
#ws-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 32px;
  text-align: center;
}
#ws-empty svg {
  margin-bottom: 20px;
  opacity: 0.25;
  color: var(--w-text-primary);
}
.ws-empty-title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--w-text-primary);
  margin: 0 0 6px;
}
.ws-empty-subtitle {
  font-size: 11px;
  color: var(--w-text-muted);
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  line-height: 1.6;
}
.ws-empty-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.ws-empty-cat {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w-text-secondary);
  text-decoration: none;
  transition: border-color var(--w-transition), color var(--w-transition);
  background-color: white;
}
.ws-empty-cat:hover {
  border-color: var(--w-border-dark);
  color: var(--w-text-primary);
}

/* ── Loading spinner ── */
#ws-loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.ws-spinner {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--w-border);
  border-top-color: var(--w-text-primary);
  border-radius: 50%;
  animation: ws-spin 0.7s linear infinite;
}
@keyframes ws-spin { to { transform: rotate(360deg); } }

/* ── Footer ── */
#ws-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--w-border);
  flex-shrink: 0;
  background: var(--w-bg);
}
#ws-share-btn {
  width: 100%;
  padding: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--w-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--w-border);
  transition: color var(--w-transition), text-decoration-color var(--w-transition);
}
#ws-share-btn:hover {
  color: var(--w-text-primary);
  text-decoration-color: var(--w-border-dark);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #ws-sidebar { width: 90vw; }
  .wishlist-trigger--inline {
    justify-content: center;
    align-items: flex-end;
    text-align: center;
  }
}



.product-card-wishlist-btn
 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  

}

.product-card-wishlist-btn svg path {
  fill: none !important;
  stroke: #000 !important;
  stroke-width: 2px !important;
}

.product-card-wishlist-btn:hover svg path {
  fill: #2C7653 !important;
  stroke: #2C7653 !important;
}

.product-card-wishlist-btn svg {
  width: 26px !important;
  height: 26px !important;
}

.product-card-wishlist-btn:hover svg path,
.product-card-wishlist-btn[aria-pressed="true"] svg path,
.product-card-wishlist-btn[data-wishlisted="true"] svg path {
  fill: #2C7653 !important;
  stroke: #2C7653 !important;
}



.wh-trigger .wh-icon path {
  stroke-width: 2px !important;
}

store-header.header--transparent .wh-count, 
store-header.header .wh-count {
  color: #D0C8BB !important;
}




#ws-sidebar .product-card-wishlist-btn {
  display: none !important;
} 

.save-for-later-wrapper {
  display: none;
}

.wishlist-trigger--inline {
  transition: none;
}

.wishlist-trigger--inline:hover {
  transform: none;
}
#ws-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#ws-main-list-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

#ws-main-list-btn:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}
#ws-sidebar .ws-btn-atc {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 90px;
  min-width: 0;
  max-width: 100%;

  height: auto !important;
  min-height: 40px;
  padding: 7px 10px !important;

  white-space: normal !important;
  text-align: center;
  line-height: 1.15 !important;

  overflow: visible !important;
  text-overflow: unset !important;
  word-break: normal;
  overflow-wrap: break-word;
}

.wls-page-wrapper,
.wls-page-wrapper *,
.wls-page-wrapper *::before,
.wls-page-wrapper *::after,
.wls-page-wrapper button,
.wls-page-wrapper input,
.wls-page-wrapper select,
.wls-page-wrapper textarea,
.wls-modal,
.wls-modal *,
.wls-pm-modal,
.wls-pm-modal *,
.wls-item-popup,
.wls-item-popup *,
.wls-toast,
.wls-toast * {
  font-family: inherit !important;
}


.wls-card-img {
  object-position: top;
  
}

.wls-atc-btn {
  background-color: #2C7653;
  border-color: #2C7653;
}


.ws-login-required-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  bottom: auto;
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  background: #111;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ws-login-required-toast.ws-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.ws-login-required-toast a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .ws-login-required-toast {
    top: 16px;
    bottom: auto;
    width: calc(100vw - 32px);
    justify-content: space-between;
    border-radius: 14px;
  }
  
}

.wishlist-trigger--inline {
  margin-top: 0 !important;
  }

  /* Página de produto — alinhar o container do SVG da wishlist ao fundo */
.shopify-section--main-product .wishlist-trigger.wishlist-trigger--inline {
  align-items: flex-end !important;
  margin-bottom: 12px;
}

/* Página de produto — alinhar botão Add to cart e wishlist pelo fundo */
.shopify-section--main-product .product-item-form div:has(> #AddToCart + .wishlist-trigger) {
  align-items: flex-end !important;
}


#ws-login-required {
  padding: 24px 18px;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f8f8;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#ws-login-required p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  text-align: center;
  max-width: 260px;
}

#ws-login-required a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  background: #2c6e49;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}