/* ===============================
   WISHLIST SECTION
=============================== */
.wishlist-section {
  background: #000;
  padding: 80px 0;
  font-family: 'Bai Jamjuree', sans-serif;
}

  .wishlist-price del .woocommerce-Price-amount bdi{
  color:#FFD900 !important;
}

.wishlist-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.wishlist-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.wishlist-count {
  font-size: 14px;
  color: #cfcfcf;
}

/* Grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.wishlist-card {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wishlist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(215, 0, 4, 0.25);
}

/* Image */
.wishlist-image {
  position: relative;
  background: #000;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wishlist-image img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

/* Remove Button */
.remove-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.remove-btn:hover {
  background: #D70004;
}

/* Content */
.wishlist-content {
  padding: 20px;
}

.wishlist-category {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

.wishlist-content h3 {
  font-size: 18px;
  margin: 8px 0;
  color: #fff;
}

.wishlist-price {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Actions */
.wishlist-actions {
  display: flex;
  gap: 12px;
}

.btn-primary {
  flex: 1;
  background: #D70004;
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ff1a1a;
}

.btn-outline {
  flex: 1;
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 10px 0;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #D70004;
  color: #D70004;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 1024px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wishlist-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
  }

  .wishlist-section {
    padding: 50px 0;
  }
}

.wishlist-btn.active svg {
    fill: red;
    stroke: red;
}