.elementor-3060 .elementor-element.elementor-element-0717ec3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3060 .elementor-element.elementor-element-35c6f78{width:var( --container-widget-width, 99% );max-width:99%;--container-widget-width:99%;--container-widget-flex-grow:0;}.elementor-3060 .elementor-element.elementor-element-35c6f78.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for shortcode, class: .elementor-element-35c6f78 *//* Clean Card Layout for Wishlist */
table.wishlist_table {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  border: none;
}

table.wishlist_table thead {
  display: none;
}

table.wishlist_table tbody {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

table.wishlist_table tbody tr {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px 15px 25px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

table.wishlist_table tbody tr:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* 🟥 1. Move the "X" to top right */
.wishlist_table td.product-remove {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
}

/* 🟪 2. Make image bigger and center it */
.wishlist_table td.product-thumbnail {
  text-align: center;
  margin-top: 10px;
}
.wishlist_table td.product-thumbnail img {
  width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto 12px auto;
}
/* Center align product title */
.wishlist_table td.product-name {
  text-align: center !important;
}
.wishlist_table td.product-name a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin: 10px 0;
}

/* Center price and stock too */
.wishlist_table td.product-price,
.wishlist_table td.product-stock {
  text-align: center !important;
}

/* Ensure all td elements are clean */
.wishlist_table td {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Add to Cart button styled in brand pink */
.wishlist_table .add_to_cart {
  background-color: #FF779F; /* Brand dark pink */
  color: white !important;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.wishlist_table .add_to_cart:hover {
  background-color: #D4195F; /* Slightly darker on hover */
}/* End custom CSS */