.floating-toolbar {
  position: fixed;
  right: clamp(16px, 2.125vw, 60px);
  bottom: clamp(22px, 2.208vw, 100px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
.floating-toolbar__entry {
  position: relative;
  pointer-events: auto;
}
.floating-toolbar__item {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.floating-toolbar__item img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.floating-toolbar__item:hover, .floating-toolbar__item:focus-visible {
  outline: none;
}
.floating-toolbar__item--contact:hover, .floating-toolbar__item--contact:focus-visible, .floating-toolbar__entry:hover .floating-toolbar__item--contact, .floating-toolbar__entry:focus-within .floating-toolbar__item--contact {
  border-color: #000;
  background: #000;
}
.floating-toolbar__icon--active {
  display: none !important;
}
.floating-toolbar__entry:hover .floating-toolbar__icon--default, .floating-toolbar__entry:focus-within .floating-toolbar__icon--default {
  display: none;
}
.floating-toolbar__entry:hover .floating-toolbar__icon--active, .floating-toolbar__entry:focus-within .floating-toolbar__icon--active {
  display: block !important;
}
.floating-toolbar__popover {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  width: 188px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  color: #000;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.floating-toolbar__entry:hover .floating-toolbar__popover, .floating-toolbar__entry:focus-within .floating-toolbar__popover, .floating-toolbar__entry.is-open .floating-toolbar__popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}
.floating-toolbar__popover--qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}
.floating-toolbar__popover--qr strong {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.floating-toolbar__popover--qr span {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.floating-toolbar__popover--qr em {
  margin-top: 8px;
  color: #FF4D4F;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.floating-toolbar__popover--email strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.floating-toolbar__popover--email p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}
.floating-toolbar__popover--email button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  line-height: 1;
}
.floating-toolbar__popover--email button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-toolbar__popover--email span {
  display: block;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 1.45;
}
.floating-toolbar__qr {
  width: 116px !important;
  height: 116px !important;
}
.floating-toolbar__item--primary {
  border-color: transparent;
  background: #247CFF;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
}
.floating-toolbar__item--top {
  border: 0;
  padding: 0;
  font: inherit;
}
@media (max-width: 768px) {
  .floating-toolbar {
    right: 14px;
    bottom: 20px;
    gap: 14px;
  }
  .floating-toolbar__item {
    width: 54px;
    height: 54px;
  }
  .floating-toolbar__item img {
    width: 24px;
    height: 24px;
  }
  .floating-toolbar__popover {
    right: calc(100% + 12px);
    width: 172px;
    padding: 16px 14px;
  }
  .floating-toolbar__qr {
    width: 104px !important;
    height: 104px !important;
  }
}

#salewisely-iframe:not(.open) {
  display: none !important;
  pointer-events: none !important;
}

#salewisely-ball-drag-layer {
  display: none !important;
  pointer-events: none !important;
}

.site-footer {
  background: #f8fafc;
  color: #475569;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.site-footer__inner {
  width: min(1400px, 100% - clamp(20px, 13.5417vw, 260px) * 2);
  margin: 0 auto;
  padding: 3.3rem 0;
}
.site-footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-footer__logo {
  display: block;
  width: auto;
  height: 2.8rem;
  object-fit: contain;
}
.site-footer__email {
  margin: 0;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4;
  white-space: nowrap;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.8rem;
  padding-bottom: 3.2rem;
  margin-top: 32px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .site-footer__columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.site-footer__column {
  min-width: 0;
}
.site-footer__title {
  margin: 0 0 1.6rem;
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.site-footer__title--sm {
  margin-bottom: 0.85rem;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__link, .site-footer__friend-link {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.4rem;
  line-height: 1.45;
}
.site-footer__link:hover, .site-footer__friend-link:hover {
  color: #2563eb;
}
.site-footer__friendship {
  padding: 3.2rem 0 6.7rem;
}
.site-footer__friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 1.2rem;
}
.site-footer__friend-link {
  white-space: nowrap;
}
.site-footer__friend-separator {
  display: inline-block;
  width: 0;
  height: 1.1rem;
  border-left: 0.5px solid rgba(0, 0, 0, 0.1);
  margin: 0 0.05rem;
  flex: 0 0 auto;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer__copyright {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.site-footer__disclaimer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #DF9F50;
}
.site-footer__badges {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__badges svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 640px) {
  .site-footer__brand-row, .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__email {
    white-space: normal;
  }
  .site-footer__badges {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=footer.css.map */
