/**
 * Wishlist Drawer Styles
 */
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

/**
 * Neighbor Square Component Styles
 * Base styles for the reusable neighbor-square component
 */
.neighbor-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.9rem;
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  box-sizing: border-box;
}
.neighbor-item .hue-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.neighbor-item .hue-mask {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
@media (width > 768px) {
  .neighbor-item {
    padding: 1.2rem;
  }
}
.neighbor-item.placeholder-item {
  background-color: white !important;
  pointer-events: none;
}
@media (width > 768px) {
  .neighbor-item.placeholder-item {
    background-color: transparent !important;
  }
}
.neighbor-item.light-border {
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}
@media (width > 768px) {
  .neighbor-item.light-border {
    border: 0.5px solid rgba(255, 255, 255, 0.2);
  }
}
.neighbor-item.light-text .neighbor-icon-btn,
.neighbor-item.light-text .neighbor-title,
.neighbor-item.light-text .neighbor-id,
.neighbor-item.light-text .neighbor-icon-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item.light-text .neighbor-icon-btn svg,
.neighbor-item.light-text .neighbor-title svg,
.neighbor-item.light-text .neighbor-id svg,
.neighbor-item.light-text .neighbor-icon-text svg {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item.dark-text .neighbor-icon-btn,
.neighbor-item.dark-text .neighbor-title,
.neighbor-item.dark-text .neighbor-id,
.neighbor-item.dark-text .neighbor-icon-text {
  color: var(--black-main, #000) !important;
}
.neighbor-item.dark-text .neighbor-icon-btn svg,
.neighbor-item.dark-text .neighbor-title svg,
.neighbor-item.dark-text .neighbor-id svg,
.neighbor-item.dark-text .neighbor-icon-text svg {
  color: var(--black-main, #000) !important;
}
.neighbor-item.placeholder-item.light-border {
  border: 0.5px solid rgba(255, 255, 255, 0.2) !important;
}
@media (width > 768px) {
  .neighbor-item.placeholder-item.light-border {
    border: 0.5px solid rgba(255, 255, 255, 0.2) !important;
  }
}
.neighbor-item.placeholder-item.dark-border {
  border: 0.5px solid rgba(0, 0, 0, 0.2) !important;
}
@media (width > 768px) {
  .neighbor-item.placeholder-item.dark-border {
    border: 0.5px solid rgba(0, 0, 0, 0.2) !important;
  }
}
.neighbor-item:hover .neighbor-title {
  font-size: 1.2rem;
}
@media (width > 768px) {
  .neighbor-item:hover .neighbor-title {
    font-size: 1.6rem;
  }
}
.neighbor-item:hover .neighbor-id {
  font-size: 1rem;
}
@media (width > 768px) {
  .neighbor-item:hover .neighbor-id {
    font-size: 1.4rem;
  }
}
.neighbor-item:hover .neighbor-id.light-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item:hover .neighbor-id.dark-text {
  color: var(--black-main, #000) !important;
}
.neighbor-item:hover .neighbor-icon-text {
  opacity: 1;
  visibility: visible;
}
@media (width > 768px) {
  .neighbor-item:hover {
    border-radius: 0 0 5.2rem 0;
  }
}
.neighbor-item.current-neighbor {
  position: relative;
  z-index: 10;
}
.neighbor-item.current-neighbor:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
@media (width <= 768px) {
  .neighbor-item.current-neighbor .neighbor-icon-btn.neighbor-icon-heart svg {
    width: 2rem;
    height: 2rem;
  }
}
.neighbor-item .neighbor-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  direction: rtl;
  align-items: flex-end;
}
@media (width > 768px) {
  .neighbor-item .neighbor-content {
    box-sizing: content-box;
  }
}
.neighbor-item.light-text .neighbor-content .neighbor-title,
.neighbor-item.light-text .neighbor-content .neighbor-id,
.neighbor-item.light-text .neighbor-content .neighbor-icon-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item.dark-text .neighbor-content .neighbor-title,
.neighbor-item.dark-text .neighbor-content .neighbor-id,
.neighbor-item.dark-text .neighbor-content .neighbor-icon-text {
  color: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-icons {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  align-self: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  gap: 0.8rem;
}
.neighbor-item .neighbor-icons::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  z-index: 0;
}
@media (width > 768px) {
  .neighbor-item .neighbor-icons {
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin: 0;
    z-index: 1;
  }
  .neighbor-item .neighbor-icons::before {
    inset: -0.8rem -0.6rem;
  }
}
.neighbor-item .neighbor-unavailable-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
  width: 100%;
  z-index: 1;
  position: relative;
}
.neighbor-item .neighbor-unavailable-actions .checkbox-icon-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1;
  transition: opacity 0.2s ease;
  opacity: 0;
}
.neighbor-item .neighbor-unavailable-actions .checkbox-icon-remove-btn svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.neighbor-item .neighbor-unavailable-actions .checkbox-icon-remove-btn:hover {
  opacity: 0.7;
}
.neighbor-item .neighbor-unavailable-actions .checkbox-icon-remove-btn:focus-visible {
  opacity: 1;
  outline: 2px solid var(--black-main, #333032);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (width <= 768px) {
  .neighbor-item .neighbor-unavailable-actions .checkbox-icon-remove-btn {
    opacity: 1 !important;
  }
}
.neighbor-item:hover .neighbor-unavailable-actions .checkbox-icon-remove-btn, .neighbor-item:focus-within .neighbor-unavailable-actions .checkbox-icon-remove-btn {
  opacity: 1;
}
@media (width <= 768px) {
  .neighbor-item:hover .neighbor-unavailable-actions .checkbox-icon-remove-btn, .neighbor-item:focus-within .neighbor-unavailable-actions .checkbox-icon-remove-btn {
    opacity: 1 !important;
  }
}
.neighbor-item.light-text .neighbor-unavailable-actions .checkbox-icon-remove-btn svg path {
  stroke: var(--white-main, #FFF) !important;
}
.neighbor-item.dark-text .neighbor-unavailable-actions .checkbox-icon-remove-btn svg path {
  stroke: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-selection-checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
  width: 100%;
  z-index: 1;
  position: relative;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-item-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-item-checkbox:focus-visible + .wishlist-checkbox-label {
  outline: 2px solid var(--black-main, #333032);
  outline-offset: 2px;
  border-radius: 2px;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  margin: 0;
  z-index: 1;
  flex-shrink: 0;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label span svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-unchecked {
  opacity: 1;
  z-index: 1;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-unchecked svg {
  width: 2rem;
  height: 2rem;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-checked {
  opacity: 0;
  z-index: 2;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-checked svg {
  width: 2rem;
  height: 2rem;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-checkbox-label:hover .checkbox-icon-checked {
  opacity: 1;
}
.neighbor-item .neighbor-selection-checkbox .wishlist-item-checkbox:checked + .wishlist-checkbox-label .checkbox-icon-checked {
  opacity: 1 !important;
}
.neighbor-item .neighbor-selection-checkbox .checkbox-icon-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1;
  transition: opacity 0.2s ease;
  opacity: 0;
}
.neighbor-item .neighbor-selection-checkbox .checkbox-icon-remove-btn svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.neighbor-item .neighbor-selection-checkbox .checkbox-icon-remove-btn:hover {
  opacity: 0.7;
}
.neighbor-item .neighbor-selection-checkbox .checkbox-icon-remove-btn:focus-visible {
  opacity: 1;
  outline: 2px solid var(--black-main, #333032);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (width <= 768px) {
  .neighbor-item .neighbor-selection-checkbox .checkbox-icon-remove-btn {
    opacity: 1 !important;
  }
}
.neighbor-item:hover .neighbor-selection-checkbox .checkbox-icon-remove-btn, .neighbor-item:focus-within .neighbor-selection-checkbox .checkbox-icon-remove-btn {
  opacity: 1;
}
@media (width <= 768px) {
  .neighbor-item:hover .neighbor-selection-checkbox .checkbox-icon-remove-btn, .neighbor-item:focus-within .neighbor-selection-checkbox .checkbox-icon-remove-btn {
    opacity: 1 !important;
  }
}
.neighbor-item.light-text .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-unchecked svg rect {
  stroke: var(--white-main, #FFF) !important;
}
.neighbor-item.light-text .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-checked svg path,
.neighbor-item.light-text .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-checked svg g path {
  stroke: var(--white-main, #FFF) !important;
}
.neighbor-item.light-text .neighbor-selection-checkbox .checkbox-icon-remove-btn svg path {
  stroke: var(--white-main, #FFF) !important;
}
.neighbor-item.dark-text .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-unchecked svg rect {
  stroke: var(--black-main, #000) !important;
}
.neighbor-item.dark-text .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-checked svg path,
.neighbor-item.dark-text .neighbor-selection-checkbox .wishlist-checkbox-label .checkbox-icon-checked svg g path {
  stroke: var(--black-main, #000) !important;
}
.neighbor-item.dark-text .neighbor-selection-checkbox .checkbox-icon-remove-btn svg path {
  stroke: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-icon-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
  align-items: center;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.neighbor-item .neighbor-icon-btn::before {
  content: "";
  position: absolute;
  inset: -0.4rem;
  z-index: 0;
  border-radius: 0.6rem;
  background-color: transparent;
  transition: background-color 0.15s ease;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-heart::before {
  inset: -1rem;
}
@media (width > 768px) {
  .neighbor-item .neighbor-icon-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
    z-index: auto;
    direction: ltr;
  }
}
.neighbor-item .neighbor-icon-btn.light-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item .neighbor-icon-btn.light-text svg {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item .neighbor-icon-btn.dark-text {
  color: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-icon-btn.dark-text svg {
  color: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-icon-btn:hover {
  opacity: 0.8;
  outline: none;
}
.neighbor-item .neighbor-icon-btn:focus {
  outline: none;
}
.neighbor-item .neighbor-icon-btn:focus-visible {
  outline: none;
  border: 2px solid var(--black-main, #333032);
  border-radius: 4px;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-plus {
  width: 2.4rem;
  height: 2rem;
  display: flex;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-plus .neighbor-icon-text.light-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-plus .neighbor-icon-text.dark-text {
  color: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-heart {
  width: 2rem;
  height: 2rem;
  display: flex;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-heart svg {
  width: 2.6rem;
  height: 2rem;
}
@media (width > 768px) {
  .neighbor-item .neighbor-icon-btn.neighbor-icon-heart svg {
    width: 2.6rem;
    height: 2rem;
  }
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-heart .neighbor-icon-text.light-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-heart .neighbor-icon-text.dark-text {
  color: var(--black-main, #000) !important;
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-remark svg {
  width: 2rem;
  height: 2rem;
}
@media (width > 768px) {
  .neighbor-item .neighbor-icon-btn.neighbor-icon-remark svg {
    width: 2rem;
    height: 2rem;
  }
}
.neighbor-item .neighbor-icon-btn.neighbor-icon-remark svg path {
  fill: currentColor;
}
.neighbor-item .neighbor-icon-btn svg {
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  flex-shrink: 0;
}
@media (width > 768px) {
  .neighbor-item .neighbor-icon-btn svg {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.neighbor-item .neighbor-icon-btn svg path,
.neighbor-item .neighbor-icon-btn svg circle,
.neighbor-item .neighbor-icon-btn svg line {
  stroke: currentColor;
  fill: currentColor;
}
.neighbor-item .neighbor-icon-btn svg path[stroke],
.neighbor-item .neighbor-icon-btn svg circle[stroke],
.neighbor-item .neighbor-icon-btn svg line[stroke] {
  fill: none;
}
.neighbor-item .neighbor-icon-btn svg path[fill]:not([stroke]),
.neighbor-item .neighbor-icon-btn svg circle[fill]:not([stroke]) {
  stroke: none;
}
.neighbor-item .neighbor-icon-text {
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  display: none;
}
@media (width > 768px) {
  .neighbor-item .neighbor-icon-text {
    font-size: 1.4rem;
    display: block;
  }
  .neighbor-item .neighbor-icon-text.light-text {
    color: var(--white-main, #FFF) !important;
  }
  .neighbor-item .neighbor-icon-text.dark-text {
    color: var(--black-main, #000) !important;
  }
}
@media (width > 768px) {
  .neighbor-item .neighbor-icon-btn:hover .neighbor-icon-text {
    opacity: 1;
    visibility: visible;
  }
}
.neighbor-item .neighbor-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 65px;
  align-items: flex-end;
  gap: 0.2rem;
  position: relative;
  z-index: 2;
}
@media (width > 768px) {
  .neighbor-item .neighbor-info {
    gap: 0.4rem;
  }
}
.neighbor-item .neighbor-title {
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1.8rem;
  letter-spacing: 0.003px;
  text-transform: uppercase;
  text-align: left;
}
.neighbor-item .neighbor-title.light-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item .neighbor-title.dark-text {
  color: var(--black-main, #000) !important;
}
@media (width > 768px) {
  .neighbor-item .neighbor-title {
    font-size: 1.6rem;
  }
}
.neighbor-item .neighbor-id {
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Nexa, Simpler;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.008px;
  text-transform: uppercase;
  margin: 0;
}
@media (width > 768px) {
  .neighbor-item .neighbor-id {
    font-size: 1.4rem;
  }
}
.neighbor-item .neighbor-id.light-text {
  color: var(--white-main, #FFF) !important;
}
.neighbor-item .neighbor-id.dark-text {
  color: var(--black-main, #000) !important;
}

.wishlist-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100dvh;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99998 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.wishlist-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wishlist-drawer {
  position: fixed !important;
  top: 0 !important;
  left: -100%;
  width: 100%;
  max-width: 46.5rem;
  height: 100dvh !important;
  background-color: #fff;
  z-index: 99999 !important;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  --wishlist-drawer-footer-height: 9rem;
}
.wishlist-drawer.active {
  left: 0;
}

.wishlist-close {
  position: absolute;
  top: 1.9rem;
  left: 1.8rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.56rem;
  height: 3.56rem;
  z-index: 100000;
  transition: opacity 0.2s ease;
}
.wishlist-close:hover {
  opacity: 0.7;
}
.wishlist-close svg {
  width: 100%;
  height: 100%;
}
.wishlist-close svg path {
  stroke: #000;
  fill: #000;
}

.wishlist-drawer-header {
  padding: 5.2rem 7.4rem 0 6.4rem;
  background-color: #fff;
  flex-shrink: 0;
}
.wishlist-drawer:has(#wishlist-empty:not([style*="display: none"])) .wishlist-drawer-header {
  display: none;
}

.wishlist-header-content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.wishlist-title-wrapper {
  display: flex;
  gap: 0.3rem;
}
.wishlist-title-wrapper .wishlist-title {
  margin: 0;
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 2.8rem;
  color: var(--black-main, #333032);
  text-transform: uppercase;
}
.wishlist-title-wrapper .wishlist-count-number {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin-top: 0;
}

.wishlist-description p {
  margin: 0;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  text-align: right;
}
.wishlist-description p.wishlist-login-notice a,
.wishlist-description p.wishlist-login-notice .wishlist-login-link {
  color: red;
  text-decoration: underline;
  cursor: pointer;
}
.wishlist-description p.wishlist-login-notice a:hover,
.wishlist-description p.wishlist-login-notice .wishlist-login-link:hover {
  color: red;
  text-decoration: underline;
}

.wishlist-select-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 28.9rem;
}

.wishlist-select-all-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--black-main, #333032);
  text-align: right;
  position: relative;
}
.wishlist-select-all-btn .wishlist-select-all-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.wishlist-select-all-btn:focus-visible {
  outline: none;
}
.wishlist-select-all-btn:focus-visible .select-all-checkbox-custom {
  outline: 2px solid var(--black-main, #333032);
  outline-offset: 2px;
  border-radius: 2px;
}
.wishlist-select-all-btn .select-all-checkbox-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--black-main, #000);
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.wishlist-select-all-btn .select-all-checkbox-custom .select-all-checkbox-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.wishlist-select-all-btn .select-all-checkbox-custom .select-all-checkbox-plus-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.wishlist-select-all-btn .select-all-checkbox-custom .select-all-checkbox-plus-icon svg path,
.wishlist-select-all-btn .select-all-checkbox-custom .select-all-checkbox-plus-icon svg g path {
  stroke: var(--black-main, #000);
}
.wishlist-select-all-btn .select-all-checkbox-custom:hover {
  border-color: var(--black-main, #000);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.wishlist-select-all-btn .wishlist-select-all-checkbox:checked ~ .select-all-checkbox-custom .select-all-checkbox-plus-icon {
  opacity: 1;
}
.wishlist-select-all-btn .select-all-text {
  transition: none;
  font-size: 1.6rem;
}
.wishlist-select-all-btn:hover .select-all-text {
  opacity: 1 !important;
  color: inherit !important;
}

.wishlist-divider {
  height: 0;
  width: 46.4rem;
  margin: 0 auto;
  border-top: 1px solid var(--grey-line, #d9d9d9);
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
.wishlist-drawer:has(#wishlist-empty:not([style*="display: none"])) .wishlist-divider {
  display: none;
}

.wishlist-drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 3.4rem;
  position: relative;
  min-height: 0;
  padding-bottom: calc(var(--wishlist-drawer-footer-height, 9rem) + env(safe-area-inset-bottom, 0));
}
@media (width > 768px) {
  .wishlist-drawer-body {
    padding: 0 6.4rem;
    padding-bottom: calc(var(--wishlist-drawer-footer-height, 9rem) + env(safe-area-inset-bottom, 0));
  }
}

.wishlist-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.wishlist-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #666;
  min-height: 100%;
}
.wishlist-empty .wishlist-empty-content {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  align-items: center;
  width: 34.2rem;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 15.7rem;
  padding-bottom: 2rem;
}
.wishlist-empty .wishlist-empty-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
}
.wishlist-empty .wishlist-empty-title {
  margin: 0;
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #262626;
  text-align: right;
  white-space: pre-wrap;
}
.wishlist-empty .wishlist-empty-description {
  margin: 0;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #262626;
  text-align: right;
  white-space: pre-wrap;
}
.wishlist-empty .wishlist-empty-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 5.2rem;
  padding: 0 2rem 0 1.2rem;
  background-color: var(--red-main, #db0032);
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.wishlist-empty .wishlist-empty-btn:hover {
  background-color: var(--red-dark, #b80028);
}
.wishlist-empty .wishlist-empty-btn .wishlist-empty-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  border-radius: 0.4rem;
}
.wishlist-empty .wishlist-empty-btn .wishlist-empty-btn-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.wishlist-empty .wishlist-empty-btn .wishlist-empty-btn-icon svg path,
.wishlist-empty .wishlist-empty-btn .wishlist-empty-btn-icon svg line,
.wishlist-empty .wishlist-empty-btn .wishlist-empty-btn-icon svg circle {
  stroke: #fff;
  fill: none;
}
.wishlist-empty .wishlist-empty-btn .wishlist-empty-btn-text {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  text-align: right;
  white-space: nowrap;
}
.wishlist-empty .wishlist-empty-placeholders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.8rem 1.7rem;
  width: 100%;
}
.wishlist-empty .wishlist-empty-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border: 1px dashed rgba(38, 38, 38, 0.4);
}

.wishlist-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, 1fr);
  gap: 1.6rem;
  position: relative;
}
@media (width > 768px) {
  .wishlist-items-grid {
    grid-template-columns: repeat(2, 16rem);
    grid-template-rows: repeat(auto-fill, 16rem);
  }
}
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-id,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-icon-text,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-content .neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-content .neighbor-id,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-content .neighbor-icon-text,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-info .neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text .neighbor-info .neighbor-id,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text h4.neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.light-text p.neighbor-id {
  color: var(--white-main, #FFF) !important;
}
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-id,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-icon-text,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-content .neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-content .neighbor-id,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-content .neighbor-icon-text,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-info .neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text .neighbor-info .neighbor-id,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text h4.neighbor-title,
.wishlist-items-grid .neighbor-item.wishlist-item-square.dark-text p.neighbor-id {
  color: var(--black-main, #000) !important;
}

.neighbor-item.wishlist-item-square {
  width: 14.5rem;
  aspect-ratio: 1;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.neighbor-item.wishlist-item-square.wishlist-item-repositioning {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 768px) {
  .neighbor-item.wishlist-item-square {
    width: 100%;
    max-width: 16rem;
  }
}
.neighbor-item.wishlist-item-square.wishlist-removing {
  pointer-events: none;
  position: relative;
}
.neighbor-item.wishlist-item-square.wishlist-removing .wishlist-removal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 0;
}
.neighbor-item.wishlist-item-square.wishlist-removing .wishlist-removal-overlay .wishlist-removal-spinner {
  width: 2.4rem;
  height: 2.4rem;
  border: 0.3rem solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--black-main, #000);
  border-radius: 50%;
  animation: wishlist-removal-spin 0.6s linear infinite;
}

@keyframes wishlist-removal-spin {
  to {
    transform: rotate(360deg);
  }
}
.wishlist-item {
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  padding: 1.5rem;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
}
.wishlist-item:hover {
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}

.wishlist-item-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.wishlist-item-image {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.wishlist-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wishlist-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wishlist-item-title {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.wishlist-item-title a {
  color: #333;
  text-decoration: none;
}
.wishlist-item-title a:hover {
  color: #000;
}

.wishlist-item-remove {
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  align-self: flex-start;
  margin-left: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.wishlist-item-remove:hover {
  opacity: 1;
}
.wishlist-item-remove svg {
  width: 1.8rem;
  height: 1.8rem;
}

.wishlist-item-colors {
  margin-bottom: 1.5rem;
}

.wishlist-colors-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  color: #666;
}

.wishlist-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.wishlist-color-swatch {
  width: 4rem;
  height: 4rem;
  border: 0.2rem solid transparent;
  border-radius: 0.4rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  background-color: #ccc;
}
.wishlist-color-swatch:hover {
  transform: scale(1.1);
  border-color: #333;
}
.wishlist-color-swatch.selected {
  border-color: #333;
  border-width: 0.3rem;
}
.wishlist-color-swatch.selected .swatch-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}

.wishlist-drawer-footer {
  flex-shrink: 0;
  padding: 2rem 6.5rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  border-top: 0.1rem solid #D9D9D9;
  background-color: #fff;
  border-radius: 0.4rem;
  z-index: 100;
}
.wishlist-drawer:has(#wishlist-empty:not([style*="display: none"])) .wishlist-drawer-footer {
  display: none;
}

.wishlist-order-samples-btn {
  width: 100%;
  padding: 1.6rem 2rem;
  background-color: var(--red-main, #db0032);
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.wishlist-order-samples-btn .order-samples-text {
  text-align: center;
}
.wishlist-order-samples-btn .order-samples-count {
  margin: 0 0.4rem;
  font-weight: 400;
  opacity: 0.8;
}
.wishlist-order-samples-btn .order-samples-count:empty {
  display: none;
}
.wishlist-order-samples-btn .order-samples-arrow {
  align-items: flex-end;
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-end;
}
.wishlist-order-samples-btn .order-samples-arrow svg {
  width: 2rem;
  height: 2rem;
}
.wishlist-order-samples-btn .order-samples-arrow path,
.wishlist-order-samples-btn .order-samples-arrow line,
.wishlist-order-samples-btn .order-samples-arrow circle {
  stroke: var(--white-main, #FFF);
}
.wishlist-order-samples-btn:hover:not(:disabled):not(.disabled) {
  background-color: var(--red-dark, #b80028);
}
.wishlist-order-samples-btn:active:not(:disabled):not(.disabled) {
  transform: scale(0.98);
}
.wishlist-order-samples-btn:disabled, .wishlist-order-samples-btn.disabled {
  background-color: #d9d9d9;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.wishlist-order-samples-btn:disabled .order-samples-arrow path,
.wishlist-order-samples-btn:disabled .order-samples-arrow line,
.wishlist-order-samples-btn:disabled .order-samples-arrow circle, .wishlist-order-samples-btn.disabled .order-samples-arrow path,
.wishlist-order-samples-btn.disabled .order-samples-arrow line,
.wishlist-order-samples-btn.disabled .order-samples-arrow circle {
  stroke: #999;
}
.wishlist-order-samples-btn:disabled:hover, .wishlist-order-samples-btn.disabled:hover {
  background-color: #d9d9d9;
  transform: none;
}

.neighbor-icon-heart,
.color-swatch-heart,
[data-wishlist-heart] {
  transition: all 0.2s ease;
}
.neighbor-icon-heart.in-wishlist svg path,
.neighbor-icon-heart.in-wishlist span svg path,
.color-swatch-heart.in-wishlist svg path,
.color-swatch-heart.in-wishlist span svg path,
[data-wishlist-heart].in-wishlist svg path,
[data-wishlist-heart].in-wishlist span svg path {
  fill: var(--black-main, #000) !important;
  stroke: var(--black-main, #000) !important;
}
.light-text .neighbor-icon-heart.in-wishlist svg path,
.light-text .neighbor-icon-heart.in-wishlist span svg path, .neighbor-square.light-text .neighbor-icon-heart.in-wishlist svg path,
.neighbor-square.light-text .neighbor-icon-heart.in-wishlist span svg path,
.light-text .color-swatch-heart.in-wishlist svg path,
.light-text .color-swatch-heart.in-wishlist span svg path,
.neighbor-square.light-text .color-swatch-heart.in-wishlist svg path,
.neighbor-square.light-text .color-swatch-heart.in-wishlist span svg path,
.light-text [data-wishlist-heart].in-wishlist svg path,
.light-text [data-wishlist-heart].in-wishlist span svg path,
.neighbor-square.light-text [data-wishlist-heart].in-wishlist svg path,
.neighbor-square.light-text [data-wishlist-heart].in-wishlist span svg path {
  fill: var(--white-main, #FFF) !important;
  stroke: var(--white-main, #FFF) !important;
}
.dark-text .neighbor-icon-heart.in-wishlist svg path,
.dark-text .neighbor-icon-heart.in-wishlist span svg path, .neighbor-square.dark-text .neighbor-icon-heart.in-wishlist svg path,
.neighbor-square.dark-text .neighbor-icon-heart.in-wishlist span svg path,
.dark-text .color-swatch-heart.in-wishlist svg path,
.dark-text .color-swatch-heart.in-wishlist span svg path,
.neighbor-square.dark-text .color-swatch-heart.in-wishlist svg path,
.neighbor-square.dark-text .color-swatch-heart.in-wishlist span svg path,
.dark-text [data-wishlist-heart].in-wishlist svg path,
.dark-text [data-wishlist-heart].in-wishlist span svg path,
.neighbor-square.dark-text [data-wishlist-heart].in-wishlist svg path,
.neighbor-square.dark-text [data-wishlist-heart].in-wishlist span svg path {
  fill: var(--black-main, #000) !important;
  stroke: var(--black-main, #000) !important;
}
.neighbor-icon-heart.loading,
.color-swatch-heart.loading,
[data-wishlist-heart].loading {
  opacity: 0.6;
  pointer-events: none;
}
.neighbor-icon-heart svg path,
.neighbor-icon-heart span svg path,
.color-swatch-heart svg path,
.color-swatch-heart span svg path,
[data-wishlist-heart] svg path,
[data-wishlist-heart] span svg path {
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.wishlist-count-badge {
  display: none !important;
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  background-color: #e74c3c;
  color: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
}

.btn-clear.btn-icon.btn-wishlist-trigger {
  position: relative;
}
.btn-clear.btn-icon.btn-wishlist-trigger::after {
  content: "";
  position: absolute;
  bottom: 0.35rem;
  right: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--red-80, #E2335B);
  border-radius: 50%;
  display: none;
  z-index: 1;
}
.btn-clear.btn-icon.btn-wishlist-trigger.has-items::after {
  display: block;
}

body.wishlist-open {
  overflow: hidden;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDownDesktop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes slideUpDesktop {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.wishlist-notification.wishlist-notification-info {
  background-color: #2196F3;
}
.wishlist-notification.wishlist-notification-error {
  background-color: #f44336;
}
.wishlist-notification.wishlist-notification-new-design {
  position: fixed;
  top: var(--header-height, 8rem);
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  border: none;
  border-bottom: 0.1rem solid var(--grey-line, #d9d9d9);
  border-radius: 0;
  box-shadow: 0 1.5rem 4rem 0 rgba(0, 0, 0, 0.12);
  z-index: 1200;
  padding: 0;
  animation: slideDown 0.3s ease;
}
@media (width > 768px) {
  .wishlist-notification.wishlist-notification-new-design {
    top: 7rem;
    left: 3rem;
    right: auto;
    max-width: 38rem !important;
    border-radius: 0.4rem;
    border: 0.1rem solid var(--grey-line, #d9d9d9);
    border-bottom: 0.1rem solid var(--grey-line, #d9d9d9);
    transform: translateY(0);
    animation: slideDownDesktop 0.3s ease;
    z-index: 1200;
  }
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-close {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  width: 2.8284rem;
  height: 2.8284rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: rotate(45deg);
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-close svg {
  width: 3rem;
  height: 3rem;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-close svg path {
  stroke: #333032;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-close:hover {
  opacity: 0.7;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 1.5rem;
  max-width: 100%;
}
@media (width > 768px) {
  .wishlist-notification.wishlist-notification-new-design .wishlist-notification-content {
    width: calc(100% - 2rem);
  }
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-name-id {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  text-align: right;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-name {
  margin: 0;
  font-family: Nexa, Simpler;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 2.2057rem;
  color: var(--black-main, #333032);
  text-transform: uppercase;
  letter-spacing: 0.00036rem;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-id {
  margin: 0;
  font-family: Nexa, Simpler;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 2.2057rem;
  color: var(--black-main, #333032);
  letter-spacing: 0.00108rem;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-message {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: flex-start;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-order-sample {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-order-sample .wishlist-notification-order-text {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2057rem;
  color: var(--black-main, #333032);
  text-transform: uppercase;
  letter-spacing: 0.00032rem;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-order-sample .wishlist-notification-heart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2013rem;
  height: 2.2013rem;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-order-sample .wishlist-notification-heart-icon svg {
  width: 100%;
  height: 100%;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-order-sample .wishlist-notification-heart-icon svg path {
  stroke: var(--black-main, #333032);
  fill: none;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-saved {
  margin: 0;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2057rem;
  color: var(--black-main, #333032);
  text-transform: uppercase;
  letter-spacing: 0.00032rem;
  text-align: right;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-saved .wishlist-notification-saved-link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-removed {
  margin: 0;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2057rem;
  color: var(--black-main, #333032);
  text-transform: uppercase;
  letter-spacing: 0.00032rem;
  text-align: right;
}
.wishlist-notification.wishlist-notification-new-design .wishlist-notification-color-square {
  width: 7.6rem;
  height: 7.6rem;
  flex-shrink: 0;
  border-radius: 0;
}

body .wishlist-drawer,
.my-account-page .wishlist-drawer,
.home .wishlist-drawer,
.page .wishlist-drawer {
  position: fixed !important;
  z-index: 99999 !important;
  top: 0 !important;
  left: -100% !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
}
body .wishlist-drawer.active,
.my-account-page .wishlist-drawer.active,
.home .wishlist-drawer.active,
.page .wishlist-drawer.active {
  left: 0 !important;
}

body .wishlist-overlay,
.my-account-page .wishlist-overlay,
.home .wishlist-overlay,
.page .wishlist-overlay {
  position: fixed !important;
  z-index: 99998 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
}

@media (max-width: 768px) {
  .wishlist-drawer {
    max-width: 100%;
  }
  .wishlist-item-header {
    flex-direction: column;
  }
  .wishlist-item-image {
    width: 100%;
    height: 20rem;
  }
  .wishlist-color-swatch {
    width: 3.5rem;
    height: 3.5rem;
  }
  .wishlist-notification {
    top: 1rem;
    right: 1rem;
    max-width: none;
  }
  .wishlist-notification.wishlist-notification-new-design {
    min-width: auto;
    max-width: none;
    width: 100% !important;
  }
}
