.ebw-wishlist-page {
    font-family: Arial, sans-serif;
    background: #fff;
    min-height: 60vh;
    padding-bottom: 40px;
}

.ebw-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #0c232c;
    background: #fff;
}

.ebw-back-btn {
    color: #0c232c;
    text-decoration: none;
    font-size: 16px;
}

.ebw-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 12px;
    color: #888;
}
.ebw-empty i { font-size: 48px; color: #ddd; }
.ebw-empty p { margin: 0; font-size: 15px; }

.ebw-shop-btn {
    background: #0c232c;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}
.ebw-shop-btn:hover { background: #77b32f; color: #fff; }

.ebw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    padding: 20px 16px;
  background: #fff;
}

.ebw-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 12px;
}

.ebw-card-top {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: flex-start;
    z-index: 5;
}

.ebw-tag {
    background: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ebw-img-link {
    display: block;
    margin-top: 26px;
}
.ebw-img-link img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.ebw-info { padding: 6px 4px 2px;  text-align: center; }
.ebw-name { font-size: 15px; font-weight: 700; color: #0c232c; margin-bottom: 4px; }
.ebw-price { font-size: 14px; color: #444; }

.ebw-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.ebw-buy-btn {
    flex: 1;
    text-align: center;
    background: #0c232c;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
}
.ebw-buy-btn:hover { background: #77b32f; color: #fff; }

.ebw-remove-btn {
    width: 40px;
    flex-shrink: 0;
    border: 1px solid #eee;
    background: #fff;
    color: #e53935;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}
.ebw-remove-btn:hover { background: #fdecea; color: #e53935;}