/* =========================================================
   GLOBAL VARS
   ========================================================= */

:root {
  --cats-border: #eeeeee;
  --cats-bg:     #ffffff;
  --cats-hover:  #0073aa;
  --cats-link:   #C43B46;
  --cats-text:   #111111;
  --cats-muted:  rgba(0,0,0,.45);

  --pt-btn-h:     40px;
  --pt-btn-pad-x: 12px;
  --pt-blue:      var(--paletteColor3, #0073aa);

  --shop-sidebar-w: 240px;
}

/* =========================================================
   FIBOSEARCH + CONTA
   ========================================================= */

.fs-desktop, .fs-touch {
  margin: 0 !important;
  padding: 0 !important;
  line-height: normal !important;
  min-height: 0 !important;
}

.fs-desktop { display: block !important; }
.fs-touch   { display: none !important; }

@media (pointer: coarse) {
  .fs-desktop { display: none !important; }
  .fs-touch   { display: block !important; }
}

.header-fs--bar {
  width: clamp(360px, 38vw, 680px);
  max-width: 680px;
  margin: 0 auto;
}

.header-fs--bar .dgwt-wcas-search-wrapp {
  width: 100% !important;
}

@media (max-width: 1024px) {
  .header-fs--bar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

.header-fs--icon { cursor: pointer; }

.dgwt-wcas-suggestion {
  background: #fff !important;
  color: #111 !important;
}

.dgwt-wcas-suggestion:hover,
.dgwt-wcas-suggestion.selected {
  background: #f0f0f0 !important;
  color: #111 !important;
}

.dgwt-wcas-suggestion * {
  color: #111 !important;
}

/* Conta */

.ct-header-account:hover,
.ct-header-account[data-state="active"] {
  background: transparent !important;
}

.ct-account-dropdown {
  background: #fff !important;
}

.ct-account-dropdown a:hover {
  background: #f5f5f5 !important;
}

/* =========================================================
   TOAST — GLOBAL
   ========================================================= */

.pt-toast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform .25s ease;
  z-index: 99999;
  pointer-events: none;
}

.pt-toast.is-visible {
  transform: translateY(0);
}

.pt-toast__inner {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 1140px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

.pt-toast__msg {
  flex: 1;
  font-weight: 700;
}

.pt-toast__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--pt-blue);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.pt-toast__link:hover {
  filter: brightness(.95);
}

.pt-toast__wl-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #333;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.pt-toast__wl-link:hover {
  filter: brightness(1.12);
}

.pt-toast__close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}

/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   FIX — MINI CART
   ========================================================= */

.ct-cart-content {
  right: 0 !important;
  left: auto !important;
}