/* ====================================
   WISHLIST PAGE - CUSTOM STYLES
   ==================================== */

/* ==========================================
   HERO SECTION
   ========================================== */
.wishlist-hero {
  background-image: url('../images/wishlisthero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.wishlist-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.312);
  z-index: 1;
}

.wishlist-hero .container {
  position: relative;
  z-index: 2;
}

.wishlist-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin: 0;
  max-width: 600px;
}

.hero-description {
  font-size: 1rem;
  color: whitesmoke;
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  font-weight: 400;
}

.btn-hero-primary {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-hero-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 189, 188, 0.3);
}

@media (max-width: 768px) {
  .wishlist-hero {
    height: 400px;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .btn-hero-primary {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .wishlist-hero {
    height: 350px;
  }

  .hero-label {
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .btn-hero-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
  }
}

/* ==========================================
   WISHLIST PRODUCTS SECTION
   ========================================== */
.wishlist-products-section {
  padding: 60px 0;
  background-color: var(--color-bg);
}

@media (max-width: 768px) {
  .wishlist-products-section {
    padding: 40px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==========================================
   EMPTY WISHLIST STATE
   ========================================== */
.empty-wishlist-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px 20px;
}

.empty-state-content {
  text-align: center;
  max-width: 500px;
}

.empty-state-icon {
  font-size: 5rem;
  color: var(--color-border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.empty-state-description {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn-primary-cta {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 189, 188, 0.3);
}

@media (max-width: 576px) {
  .empty-wishlist-state {
    min-height: 300px;
    padding: 30px 20px;
  }

  .empty-state-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
  }

  .empty-state-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .empty-state-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .btn-primary-cta {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: 100%;
  }
}
