/* Premium Wishlist Dark Theme Styles */

/* Premium Wishlist Hero Section */
.premium-wishlist-hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(15, 15, 15, 0.95) 0%,
    rgba(10, 10, 10, 0.98) 50%,
    rgba(30, 30, 30, 0.95) 100%);
  overflow: hidden;
  padding: 1.5rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), transparent);
  opacity: 0.08;
  animation: floatElement 8s ease-in-out infinite;
}

.el-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.el-2 {
  width: 200px;
  height: 200px;
  bottom: 100px;
  left: -50px;
  animation-delay: 2s;
}

.el-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

.el-4 {
  width: 100px;
  height: 100px;
  bottom: 150px;
  right: 15%;
  animation-delay: 6s;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 75%, rgba(198, 166, 100, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(214, 198, 177, 0.08) 0%, transparent 50%);
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-30px) rotate(120deg) scale(1.05); }
  66% { transform: translateY(15px) rotate(240deg) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.wishlist-brand-presentation {
  margin-bottom: 2rem;
}

.wishlist-logo-container {
  margin-bottom: 2rem;
}

.wishlist-logo {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.wishlist-brand-title {
  font-family: 'Unica One', cursive;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
}

.title-main {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-on-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.divider-line:last-child {
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted-dark);
  line-height: 1.6;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto;
}

/* Wishlist Stats */
.wishlist-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Unica One', cursive;
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.stat-label {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Wishlist Section */
.wishlist-section {
  background: var(--bg-dark);
}

.wishlist-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-dark);
}

.wishlist-title {
  font-family: 'Unica One', cursive;
  font-size: 1.8rem;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.wishlist-subtitle {
  color: var(--text-muted-dark);
  font-size: 1rem;
}

/* Wishlist Grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.wishlist-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  position: relative;
}

.wishlist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(198, 166, 100, 0.2);
  background: var(--bg-card-hover);
}

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

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

.wishlist-card:hover .premium-image {
  transform: scale(1.05);
}

/* Ultra Premium Minimalist Badges */
.product-badges-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.product-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Unica One', cursive;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: premiumSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

@keyframes premiumSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Ultra Premium Sale Badge */
.sale-badge {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(238, 90, 36, 0.95));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Ultra Premium Sold Out Badge */
.soldout-badge {
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ultra Premium Unique Badge */
.unique-badge {
  background: linear-gradient(135deg, rgba(198, 166, 100, 0.95), rgba(168, 140, 74, 0.95));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Sold Out Styling */
.wishlist-card.sold-out .wishlist-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 108, 108, 0.15);
  z-index: 15;
  border-radius: 20px 20px 0 0;
}

.wishlist-card.sold-out .price-current,
.wishlist-card.sold-out .price-old,
.wishlist-card.sold-out .price-new {
  color: var(--text-muted-dark) !important;
  font-weight: 500;
  position: relative;
  opacity: 0.8;
}

.wishlist-card.sold-out .price-current::after,
.wishlist-card.sold-out .price-old::after,
.wishlist-card.sold-out .price-new::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--text-muted-dark) 20%, 
    var(--text-muted-dark) 80%, 
    transparent 100%);
  opacity: 0.6;
  transform: translateY(-50%);
}

.wishlist-card.sold-out .price-old {
  text-decoration: none;
}

/* Wishlist Actions Overlay */
.wishlist-actions-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.wishlist-card:hover .wishlist-actions-overlay {
  opacity: 1;
}

.action-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.action-btn:hover {
  transform: scale(1.1);
}

.quick-view:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

.explore-btn:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

.remove-btn:hover {
  background: #FF6B6B;
  color: var(--white);
}

.image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wishlist-card:hover .image-gradient {
  opacity: 1;
}

.wishlist-info {
  padding: 1.5rem;
}

.product-name {
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.product-category {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  margin-bottom: 1rem;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

.price-new {
  color: #FF6B6B;
  font-weight: 700;
  font-size: 1.2rem;
}

.price-current {
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--bg-dark);
  color: var(--text-muted-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border-dark);
}

.action-buttons {
  display: flex;
  gap: 0.75rem;
}

.product-cta, .remove-cta {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.product-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--text-dark);
}

.remove-cta {
  background: transparent;
  color: var(--text-muted-dark);
  border: 1px solid var(--border-dark);
}

.product-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 166, 100, 0.3);
}

.remove-cta:hover {
  background: #FF6B6B;
  color: var(--white);
  border-color: #FF6B6B;
}

.favorite-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(198, 166, 100, 0.3);
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Empty States */
.empty-wishlist {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.empty-content {
  max-width: 500px;
  margin: 0 auto;
}

.empty-icon-container {
  position: relative;
  margin-bottom: 2rem;
}

.empty-icon {
  font-size: 4rem;
  color: var(--border-dark);
  margin-bottom: 1.5rem;
}

.empty-glow {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
}

.empty-title {
  font-family: 'Unica One', cursive;
  font-size: 2rem;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.empty-subtitle {
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.empty-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== RECOMMENDATIONS SECTION ==================== */
.recommendations-section {
  background: linear-gradient(135deg, 
    rgba(20, 20, 20, 0.98) 0%,
    rgba(15, 15, 15, 0.95) 50%,
    rgba(25, 25, 25, 0.98) 100%);
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.recommendations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(198, 166, 100, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(214, 198, 177, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.recommendations-section > .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-content {
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Unica One', cursive;
  font-size: 2.5rem;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.section-subtitle {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.section-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.decoration-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.decoration-line:last-child {
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.decoration-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: dotPulse 2s ease-in-out infinite;
}

/* Recommendations Grid */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.recommendation-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.recommendation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.recommendation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(198, 166, 100, 0.2);
  background: var(--bg-card-hover);
}

.recommendation-content {
  position: relative;
  z-index: 2;
}

.recommendation-icon {
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  display: block;
}

.recommendation-card h4 {
  font-family: 'Unica One', cursive;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.recommendation-card p {
  color: var(--text-muted-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-wishlist-hero-section {
    min-height: 40vh;
  }
  
  .wishlist-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .wishlist-header-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .empty-actions {
    flex-direction: column;
  }

  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .recommendation-card {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .recommendation-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .wishlist-info {
    padding: 1rem;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
  
  .recommendation-card {
    padding: 1.5rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .recommendation-card h4 {
    font-size: 1.2rem;
  }
}
/* Updated Wishlist Grid - Responsive */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: 2rem;
}

/* Mobile Styles - 2 products per row */
@media (max-width: 768px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 1.5rem;
  }
}

/* Small mobile optimization */
@media (max-width: 480px) {
  .wishlist-grid {
    gap: 1rem;
  }
}

/* Tablet - 3 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
  }
}

