/** Shopify CDN: Minification failed

Line 273:1 Expected "}" to go with "{"

**/
/* ================================
   WISHLIST STYLES
   ================================ */

/* Bouton wishlist */

.wishlist-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}


.wishlist-text {
  font-size: 14px;
}

/* Compteur wishlist */
.wishlist-count {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  margin-left: 4px;
  animation: bounce 0.3s ease;
}

@keyframes bounce {
  0%, 20%, 60%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  80% { transform: translateY(-2px); }
}

/* Page wishlist */
.wishlist-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.wishlist-header {
  text-align: center;
  margin-bottom: 40px;
}

.wishlist-header h1 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 10px;
}

/* Wishlist vide */
.wishlist-empty {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 2px dashed #ddd;
}

.wishlist-empty h2 {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 15px;
}

.wishlist-empty p {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 25px;
}

/* Grille des produits wishlist */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Item wishlist */
.wishlist-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.wishlist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.wishlist-item-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.wishlist-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wishlist-item:hover .wishlist-item-image img {
  transform: scale(1.05);
}

.wishlist-item-details {
  padding: 20px;
}

.wishlist-item-title {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.wishlist-item-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wishlist-item-title a:hover {
  color: #ff6b6b;
}

.wishlist-item-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff6b6b;
  margin-bottom: 20px;
}

.wishlist-item-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}



/* Notifications */
.wishlist-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.4;
}

.wishlist-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.product-wishlist-container {
	position: absolute;
	bottom: 12px;
	right: 42px;
	z-index: 40;
}

/* Version mobile du bouton wishlist */
@media (max-width: 768px) {

  .product-wishlist-container {
    bottom: 42px;
  }

  .wishlist-text {
    display: none;
  }
  
  .wishlist-icon {
    font-size: 18px;
  }
}

/* Version mobile de la grille */
@media (max-width: 768px) {
  .wishlist-container {
    padding: 15px;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .wishlist-header h1 {
    font-size: 2rem;
  }
  
  .wishlist-item-actions {
    flex-direction: column;
  }



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wishlist-item {
  animation: fadeInUp 0.5s ease forwards;
}

.wishlist-item:nth-child(even) {
  animation-delay: 0.1s;
}

.wishlist-item:nth-child(odd) {
  animation-delay: 0.2s;
}

/* Effet de survol pour les liens wishlist dans l'en-tête */
.header-wishlist-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-wishlist-link:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* Badge de notification pour l'en-tête */
.header-wishlist-link .wishlist-count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}