/** Shopify CDN: Minification failed

Line 226:12 Expected "}" to go with "{"

**/
/* ========================================
   WISHLIST STYLES - BBQ Red Theme
   ======================================== */

/* Wishlist Count Button */
.wishlist-count {
  color: #CC0000;
  text-decoration: none;
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(204, 0, 0, 0.1);
  border: 1px solid rgba(204, 0, 0, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.wishlist-count:hover {
  background: rgba(204, 0, 0, 0.15);
  transform: translateY(-1px);
}

.wishlist-count-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: #CC0000;
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 4px;
}

/* Wishlist Arrow Icon */
.wishlist-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Wishlist Icon on Product Cards */
.wishlist-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.product-card:hover .wishlist-icon {
  opacity: 1;
}

.wishlist-icon:hover {
  background: white;
  transform: scale(1.1);
}

.wishlist-icon.active {
  background: #CC0000;
  color: white;
  opacity: 1;
}

.wishlist-icon.active svg path {
  fill: white !important;
  stroke: white !important;
}

.wishlist-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

/* Wishlist Expanded Section */
#wishlist-expanded-section {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

#wishlist-expanded-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #CC0000;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#wishlist-expanded-count {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: normal;
}

/* Wishlist Grid */
#wishlist-expanded-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#wishlist-expanded-grid::-webkit-scrollbar {
  height: 6px;
}

#wishlist-expanded-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

#wishlist-expanded-grid::-webkit-scrollbar-thumb {
  background: #CC0000;
  border-radius: 3px;
}

#wishlist-expanded-grid::-webkit-scrollbar-thumb:hover {
  background: #A30000;
}

/* Wishlist Item Card */
.wishlist-item-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  position: relative;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
}

.wishlist-item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.wishlist-item-remove {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-item-remove:hover {
  background: #CC0000;
  color: white;
  transform: scale(1.1);
}

.wishlist-item-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  margin-bottom: 0.75rem;
}

.wishlist-item-placeholder {
  width: 100%;
  height: 150px;
  background: #e9ecef;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.wishlist-item-title {
  font-size: