.wishlist-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 119, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  min-height: 70vh;
}
.wishlist-page .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.wishlist-center-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* EMPTY STATE FULL WIDTH */
.wishlist-page .product-grid:has(.wishlist-empty) {
  grid-template-columns: 1fr;
}
.wishlist-empty-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wishlist-card {
  position: relative;
}
.wishlist-delete-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ffe0e6;
  border-radius: 14px;
  background: #fff7f9;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.28s ease;
}

.wishlist-delete-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ff3d57;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.28s ease;
}

.wishlist-delete-btn:hover {
  background: #ff3d57;
  border-color: #ff3d57;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 61, 87, 0.22);
}

.wishlist-delete-btn:hover svg {
  stroke: #ffffff;
}
.wishlist-empty {
  width: 100%;
  max-width: 760px;
  margin: 20px auto 0;
  padding: 90px 40px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(0, 119, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.wishlist-empty-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077ff, #005fe0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 50px rgba(0, 119, 255, 0.28);
}
.wishlist-empty-icon svg {
  width: 60px;
  height: 60px;
  fill: #ffffff;
}
.wishlist-empty h3 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 950;
  color: #071327;
}
.wishlist-empty p {
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 19px;
  line-height: 1.8;
  color: #6b7a90;
}
.continue-shopping-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 62px;
  padding: 0 36px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0077ff, #005fe0);
  color: #ffffff;
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 18px 35px rgba(0, 119, 255, 0.25);
}

.continue-shopping-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(0, 119, 255, 0.34);
}

.wishlist-delete-btn:hover svg {
  stroke: #ffffff;
}
@media (max-width: 1100px) {
  .wishlist-page .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .wishlist-page .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .wishlist-page {
    padding: 55px 0;
  }
  .wishlist-empty {
    padding: 70px 24px;
    border-radius: 26px;
  }
  .wishlist-empty-icon {
    width: 105px;
    height: 105px;
  }
  .wishlist-empty-icon svg {
    width: 50px;
    height: 50px;
  }
  .wishlist-empty h3 {
    font-size: 34px;
  }
  .wishlist-empty p {
    font-size: 16px;
  }
  .continue-shopping-btn {
    min-width: 220px;
    height: 56px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .wishlist-page .product-grid {
    gap: 14px;
  }
  .wishlist-page {
    padding: 42px 0;
  }
  .wishlist-delete-btn {
    width: 38px;
    height: 38px;
  }
  .wishlist-empty {
    padding: 55px 18px;
  }
  .wishlist-empty h3 {
    font-size: 28px;
  }
  .wishlist-empty p {
    font-size: 14px;
    line-height: 1.7;
  }
  .continue-shopping-btn {
    width: 100%;
    min-width: 100%;
  }
}
