/* Wishlist Grid */
.wishlist-products-gridwish {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 15px;
}

.wishlist-product-image img {
    display: block;
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-product-image a {
    display: block;
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-products-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 100px;
    margin-top: 0px;
    margin-bottom: 50px;
}

/* Individual Product Card */
.wishlist-product {
    overflow: hidden;
    transition: all 0.3s ease;
    width: 250px;
}

.wishlist-product:hover {
    transform: translateY(-5px);
}

.wishlist-product-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Product Image */
.wishlist-product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-product:hover .wishlist-product-image img {
    transform: scale(1.05);
}

/* Product Details */
.wishlist-product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wishlist-product-title {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: left;
}

.wishlist-product-title a {
    text-decoration: none;
    color: #333;
}

.wishlist-product-title a:hover {
    color: #007cba;
}

.wishlist-product-price {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: left;
}

/* Variant Styles */
.wishlist-variation-wrapper {
    margin: 10px 0;
}

.custom-overlay-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    padding: 8px;
    z-index: 2;
}


.custom-attribute-select {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    background: white;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}


/* Icons Selector */

.select-with-icon {
    position: relative;
    display: inline-block;
    width: 250px;
    margin-bottom: 10px;
}

.select-with-icon .material-symbols-outlined {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    color: #333;
    font-size: 36px;
}

.select-with-icon select {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}

/* Actions */
.wishlist-product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.wishlist-product-actions .button {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: left;
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.wishlist-product-actions .button:hover {
    background: #e0e0e0;
    color: #333;
}

div.wishlist-product-actions a.add_to_cart_button {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: left;
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.add_to_cart_button,
.view-details {
    background: #007cba;
    color: white;
}

.add_to_cart_button:hover,
.view-details:hover {
    background: #005a87;
    color: white;
}

.remove-from-wishlist {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: left;
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.remove-from-wishlist:focus {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: left;
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.remove-from-wishlist:hover {
    background: #e0e0e0;
    color: #333;
}

.out-of-stock {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.custom-variation-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
}

.wishlist-title {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    margin-top: 20px;
}

.wishlist-info-banner p {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.dropdown-label {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 28px;
    text-align: left;
}


/* Responsive */
@media (max-width: 768px) {
    .wishlist-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .wishlist-product-details {
        padding: 15px;
    }
}


/* Wishlist Empty Style */


/* ================================
 * EMPTY WISHLIST WRAPPER
 * ================================ */

.wishlist-empty-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ================================
 * MAIN EMPTY CONTENT
 * ================================ */

.wishlist-empty-content {
  max-width: 600px;
  margin: 0 auto 80px;
}

.wishlist-empty-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
  color: black;
}

.wishlist-empty-icon {
  font-size: 36px;
  margin-bottom: 24px;
}

.wishlist-empty-message {
  font-size: 16px;
  margin-bottom: 12px;
  color: black;
}

.wishlist-empty-instruction {
  font-size: 15px;
  color: black;
  margin-bottom: 32px;
  line-height: 1.6;
}

.wishlist-empty-button {
	background: #f9f8f6;
	color: black;
	padding: 10px 20px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	margin-right: 10px;
	font-size: 16px;
	transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
	font-weight: 400;
	border-radius: 0px;
	border: solid 1px #8080804f;
	margin: 5px;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wishlist-empty-button:hover {
	box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
    background: none;
    color: black;
}

/* ================================
 * BENEFITS GRID
 * ================================ */

.wishlist-empty-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.wishlist-empty-benefits .benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.wishlist-empty-benefits .benefit-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wishlist-empty-benefits .benefit-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ================================
 * RESPONSIVE
 * ================================ */

@media (max-width: 1024px) {
  .wishlist-empty-benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
}

@media (max-width: 600px) {
  .wishlist-empty-title {
    font-size: 28px;
  }

  .wishlist-empty-benefits {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}












