.kfg-save {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid #ffffff50;
  border-radius: 9px;
  background: #101321b8;
  color: #fff;
  cursor: pointer;
}
.kfg-save svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.kfg-save[aria-pressed=true] {
  color: #f3ce45;
}
.kfg-save[aria-pressed=true] svg {
  fill: #f3ce4533;
}
.kfg-save:focus-visible {
  outline: 3px solid #f3ce45;
  outline-offset: 3px;
}
.kfg-save.kfg-save-labeled {
  position: static;
  width: auto;
  min-height: 44px;
  height: auto;
  padding: 12px 18px;
  background: #242139;
  border-color: #625675;
}
.kfg-single-favourite {
  margin-bottom: 24px;
}
.kfg-favourite-message {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 40px);
  background: #292039;
  color: #fff;
  border: 1px solid #9073bc;
  border-radius: 10px;
  padding: 15px 24px;
  z-index: 10000;
  box-shadow: 0 10px 30px #0006;
}
.kfg-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 24px;
  margin-top: 24px;
}
.kfg-saved-product {
  padding: 18px;
  border: 1px solid #6a6475;
  border-radius: 12px;
  position: relative;
  min-width: 0;
}
.kfg-saved-product img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
}
.kfg-saved-product h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 18px 0 10px;
}
.kfg-saved-product .kfg-saved-price {
  font-size: 22px;
  font-weight: 700;
  margin-block: 12px;
}
.kfg-saved-product>a:last-of-type {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: underline;
}
.kfg-saved-product button {
  position: static;
  width: auto;
  height: auto;
  min-height: 44px;
  padding: 12px 18px;
  display: block;
  margin-top: 12px;
}
.kfg-wishlist-status {
  padding: 16px;
  border: 1px solid #6a6475;
  border-radius: 8px;
}
.kfg-wishlist-status:empty {
  display: none;
}
@media(max-width:800px) {
  .kfg-save {
    width: 44px;
    height: 44px;
  }
  .kfg-wishlist-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
  }
  .kfg-saved-product {
    padding: 12px;
  }
  .kfg-saved-product img {
    height: 210px;
  }
  .kfg-saved-product h3 {
    font-size: 15px;
  }
}
@media(max-width:450px) {
  .kfg-wishlist-grid {
    grid-template-columns: 1fr;
  }
  .kfg-saved-product img {
    height: 320px;
  }
}
