/* Wishlist Hero Section */
.wishlist-hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  overflow: hidden;
}

.wishlist-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(238,66,102,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(238,66,102,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.wishlist-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.7));
  z-index: 1;
}

.wishlist-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.wishlist-hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8c92a0;
  margin-bottom: 20px;
}

.wishlist-hero-title {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #25262a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.wishlist-hero-description {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #8c92a0;
  margin: 0;
}

@media (max-width: 768px) {
  .wishlist-hero-section {
    height: 45vh;
    min-height: 300px;
  }
  
  .wishlist-hero-title {
    font-size: 40px;
    letter-spacing: 4px;
  }
  
  .wishlist-hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .wishlist-hero-description {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .wishlist-hero-title {
    font-size: 32px;
    letter-spacing: 3px;
  }
}

/* Wishlist Section */
.wishlist-section {
  padding: 80px 0;
  background: #fff;
}

/* Wishlist Header */
.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf0f5;
}

.wishlist-count h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #25262a;
  margin: 0;
}

.wishlist-count span {
  color: #ee4266;
  font-weight: 600;
}

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

.btn-clear-wishlist {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #d4d7dc;
  color: #25262a;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-clear-wishlist:hover {
  background: #ee4266;
  border-color: #ee4266;
  color: #fff;
}

.btn-clear-wishlist .icon-trash {
  font-size: 14px;
}

/* Empty Wishlist State */
.empty-wishlist {
  text-align: center;
  padding: 80px 20px;
}

.empty-wishlist-icon {
  font-size: 80px;
  color: #edf0f5;
  margin-bottom: 30px;
}

.empty-wishlist-icon .icon-heart-o {
  font-size: 80px;
}

.empty-wishlist h3 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #25262a;
  margin-bottom: 15px;
}

.empty-wishlist p {
  font-size: 14px;
  color: #8c92a0;
  margin-bottom: 30px;
}

.btn-shop-now {
  display: inline-block;
  padding: 14px 40px;
  background: #ee4266;
  border: 1px solid #ee4266;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-shop-now:hover {
  background: #d63555;
  border-color: #d63555;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 66, 102, 0.3);
}

/* Wishlist Grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Wishlist Item */
.wishlist-item {
  position: relative;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.wishlist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #ee4266;
}

.wishlist-remove-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-remove-btn:hover {
  background: #ee4266;
  transform: rotate(90deg) scale(1.1);
}

.wishlist-remove-btn:hover .icon-close {
  color: #fff;
}

.wishlist-remove-btn .icon-close {
  font-size: 14px;
  color: #25262a;
  transition: color 0.3s ease;
}

.wishlist-item-image {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  height: 0;
  padding-bottom: 125%; /* Portrait aspect ratio */
}

.wishlist-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.wishlist-item-image a {
  display: block;
  height: 100%;
}

.wishlist-item-details {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wishlist-item-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
}

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

.wishlist-item-name a:hover {
  color: #ee4266;
}

.wishlist-item-category {
  font-size: 11px;
  color: #8c92a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.wishlist-item-price {
  font-size: 16px;
  color: #25262a;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.wishlist-item-price del {
  color: #8c92a0;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
}

.wishlist-item-price .sale-price {
  color: #ee4266;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.stock-status.in-stock {
  color: #27ae60;
}

.stock-status.out-of-stock {
  color: #e74c3c;
}

.stock-status .icon-check,
.stock-status .icon-close {
  font-size: 12px;
}

.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-view-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #d4d7dc;
  color: #25262a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-view-product:hover {
  background: #25262a;
  border-color: #25262a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-view-product .icon-eye {
  font-size: 14px;
}

.btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ee4266;
  border: 1px solid #ee4266;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-add-to-cart:hover:not(:disabled) {
  background: #d63555;
  border-color: #d63555;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-add-to-cart .icon-shopping-bag {
  font-size: 14px;
}

/* Wishlist Summary */
.wishlist-summary {
  background: #fafafa;
  border: 1px solid #edf0f5;
  padding: 40px;
  margin-top: 40px;
}

.summary-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.summary-info {
  flex: 1;
  min-width: 250px;
}

.summary-text {
  font-size: 14px;
  color: #8c92a0;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.summary-total {
  font-size: 24px;
  font-weight: 300;
  color: #25262a;
  letter-spacing: 1px;
  margin: 0;
}

.summary-total span {
  color: #ee4266;
  font-weight: 600;
}

.summary-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-continue-shopping {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  border: 1px solid #d4d7dc;
  color: #25262a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-continue-shopping:hover {
  background: #25262a;
  border-color: #25262a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-add-all-to-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #ee4266;
  border: 1px solid #ee4266;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-add-all-to-cart:hover {
  background: #d63555;
  border-color: #d63555;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(238, 66, 102, 0.3);
}

.btn-add-all-to-cart .icon-shopping-bag {
  font-size: 14px;
}

/* Recommended Section */
.recommended-section {
  padding: 80px 0;
  background: #fff;
}

.recommended-product-item {
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.recommended-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #ee4266;
}

.recommended-product-image {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  height: 0;
  padding-bottom: 140%;
}

.recommended-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.recommended-product-item:hover .recommended-product-image img {
  transform: scale(1.08);
}

.recommended-product-image a {
  display: block;
  height: 100%;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #25262a;
  color: #fff;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  z-index: 2;
}

.product-badge.sale {
  background: #ee4266;
}

.product-badge.new {
  background: #3498db;
}

.btn-add-to-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  transform: translateX(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recommended-product-item:hover .btn-add-to-wishlist {
  opacity: 1;
  transform: translateX(0);
}

.btn-add-to-wishlist:hover {
  background: #ee4266;
  transform: scale(1.1);
}

.btn-add-to-wishlist:hover .icon-heart-o {
  color: #fff;
}

.btn-add-to-wishlist .icon-heart-o {
  font-size: 16px;
  color: #25262a;
  transition: color 0.3s ease;
}

.recommended-product-info {
  padding: 20px 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recommended-product-info h3 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #25262a;
  margin-bottom: 12px;
  line-height: 1.5;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommended-product-info h3 a {
  color: #25262a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recommended-product-item:hover .recommended-product-info h3 a {
  color: #ee4266;
}

.product-price {
  font-size: 14px;
  color: #25262a;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-price del {
  color: #8c92a0;
  margin-right: 8px;
  font-size: 12px;
  font-weight: 400;
}

.btn-quick-view {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #d4d7dc;
  color: #25262a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-quick-view:hover {
  background: #ee4266;
  border-color: #ee4266;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Notification */
.wishlist-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25262a;
  color: #fff;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .wishlist-section {
    padding: 60px 0;
  }
  
  .recommended-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .wishlist-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .wishlist-actions {
    width: 100%;
  }
  
  .btn-clear-wishlist {
    width: 100%;
    justify-content: center;
  }
  
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .wishlist-item-image {
    padding-bottom: 140%;
  }
  
  .wishlist-item-details {
    padding: 18px 15px;
  }
  
  .wishlist-item-name {
    font-size: 12px;
  }
  
  .wishlist-item-price {
    font-size: 14px;
  }
  
  .wishlist-summary {
    padding: 30px 20px;
  }
  
  .summary-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .summary-info {
    text-align: center;
    width: 100%;
  }
  
  .summary-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-continue-shopping,
  .btn-add-all-to-cart {
    width: 100%;
    justify-content: center;
  }
  
  .recommended-product-image {
    padding-bottom: 145%;
  }
  
  .btn-add-to-wishlist {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .wishlist-section {
    padding: 40px 0;
  }
  
  .wishlist-header {
    margin-bottom: 30px;
  }
  
  .wishlist-count h3 {
    font-size: 16px;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .wishlist-item-image {
    padding-bottom: 120%;
  }
  
  .wishlist-item-details {
    padding: 15px 12px;
  }
  
  .wishlist-item-name {
    font-size: 11px;
  }
  
  .wishlist-item-category {
    font-size: 10px;
  }
  
  .wishlist-item-price {
    font-size: 13px;
  }
  
  .btn-view-product,
  .btn-add-to-cart {
    padding: 10px 16px;
    font-size: 9px;
  }
  
  .wishlist-summary {
    padding: 25px 15px;
  }
  
  .summary-total {
    font-size: 20px;
  }
  
  .empty-wishlist {
    padding: 60px 20px;
  }
  
  .empty-wishlist-icon {
    font-size: 60px;
  }
  
  .empty-wishlist-icon .icon-heart-o {
    font-size: 60px;
  }
  
  .empty-wishlist h3 {
    font-size: 20px;
  }
  
  .recommended-section {
    padding: 40px 0;
  }
  
  .recommended-product-image {
    padding-bottom: 150%;
  }
  
  .wishlist-notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    text-align: center;
  }
}

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

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

.wishlist-item:nth-child(1) { animation-delay: 0.1s; }
.wishlist-item:nth-child(2) { animation-delay: 0.2s; }
.wishlist-item:nth-child(3) { animation-delay: 0.3s; }
.wishlist-item:nth-child(4) { animation-delay: 0.4s; }
.wishlist-item:nth-child(5) { animation-delay: 0.5s; }
.wishlist-item:nth-child(6) { animation-delay: 0.6s; }
