.wishlist-container {
  margin: 20px 0;
  text-align: center;
}

.wishlist-button.hover {
  transition: all 0.3s ease;
}
.wishlist-button.added.hover {
  transition: all 0.3s ease;
}
.wishlist-button.loading {
  opacity: 0.7;
  cursor: wait;
}

.wishlist-items, .guest-wishlist-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.wishlist-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.wishlist-item-info {
  padding: 0 10px;
}
.wishlist-item h4 {
  margin-bottom: 0;
}
.wishlist-item h4 a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wishlist-item h4 a:hover {
  color: #ff5252;
}

.wishlist-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 4px;
  color: white;
  z-index: 10000;
  display: none;
}
.wishlist-message.success {
  background-color: #4CAF50;
}
.wishlist-message.error {
  background-color: #f44336;
}

.wishlist-toggle {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wishlist-toggle:hover {
  background: rgb(234.25, 234.25, 234.25);
}
.wishlist-toggle.in-wishlist {
  background: #ff5252;
  color: white;
  border-color: #ff5252;
}
.wishlist-toggle.in-wishlist:hover {
  background: #ff1f1f;
}
.wishlist-toggle.loading {
  opacity: 0.5;
  cursor: not-allowed;
}

.wishlist-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.wishlist-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 999999;
  transition: right 0.3s ease;
}
.wishlist-sidebar.active {
  right: 0;
}
.wishlist-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wishlist-sidebar-header h3 {
  margin: 0;
  font-size: 18px;
}
.wishlist-sidebar-header .close-wishlist-sidebar {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  color: #333;
}
.wishlist-sidebar-items {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 140px);
}
.wishlist-sidebar-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.wishlist-sidebar-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.wishlist-sidebar-item-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wishlist-sidebar-item-info {
  flex: 1;
}
.wishlist-sidebar-item-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}
.wishlist-sidebar-item-title a {
  color: #333;
  text-decoration: none;
}
.wishlist-sidebar-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.view-all-wishlist {
  display: inline-block;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.view-all-wishlist:hover {
  background: rgb(76.5, 76.5, 76.5);
}

.wishlist-item {
  position: relative;
}
.wishlist-item .remove-from-wishlist {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 10px;
  bottom: 50%;
  z-index: 2;
  background: #ff5252;
  width: calc(100% - 20px);
  color: #fff;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s ease;
}
.wishlist-item .remove-from-wishlist:hover {
  opacity: 0.6 !important;
}
.wishlist-item:hover .remove-from-wishlist {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .wishlist-items {
    padding: 0 15px;
  }
  .wishlist-item {
    padding: 15px;
  }
  .wishlist-button {
    width: 100%;
    margin-top: 10px;
  }
}

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